forked from inkonchain/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request inkonchain#2 from eitjuh/feat/new-node-setup
feat: new node setup
- Loading branch information
Showing
37 changed files
with
1,818 additions
and
573 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
############################################################################### | ||
# ↓ REQUIRED ↓ # | ||
############################################################################### | ||
|
||
# Network to run the node on ("ink-mainnet", "ink-sepolia", etc.) | ||
NETWORK_NAME=ink-mainnet | ||
|
||
# Type of node to run ("full" or "archive"), note that "archive" is 10x bigger | ||
NODE_TYPE=archive | ||
|
||
# L1 node that the op-node (Bedrock) will get chain data from | ||
OP_NODE__RPC_ENDPOINT= | ||
|
||
# L1 beacon endpoint, you can setup your own or use Quicknode | ||
OP_NODE__L1_BEACON= | ||
|
||
# Type of RPC that op-node is connected to, see README | ||
OP_NODE__RPC_TYPE=quicknode | ||
|
||
# L2 RPC to compare your local node against (https://rpc-gel-sepolia.inkonchain.com for ink-sepolia or https://rpc-gel.inkonchain.com for ink-mainnet) | ||
HEALTHCHECK__REFERENCE_RPC_PROVIDER=https://rpc-gel.inkonchain.com | ||
|
||
|
||
############################################################################### | ||
# ↓ OPTIONAL ↓ # | ||
############################################################################### | ||
|
||
# Set to "full" to force op-geth to use --syncmode=full | ||
OP_GETH__SYNCMODE= | ||
|
||
# Feel free to customize your image tag if you want, uses "latest" by default | ||
# See here for all available images: https://hub.docker.com/u/ethereumoptimism | ||
IMAGE_TAG__DTL= | ||
IMAGE_TAG__HEALTCHECK= | ||
IMAGE_TAG__PROMETHEUS= | ||
IMAGE_TAG__GRAFANA= | ||
IMAGE_TAG__INFLUXDB= | ||
IMAGE_TAG__OP_GETH= | ||
IMAGE_TAG__OP_NODE= | ||
|
||
# Exposed server ports (must be unique) | ||
# See docker-compose.yml for default values | ||
PORT__DTL= | ||
PORT__HEALTHCHECK_METRICS= | ||
PORT__PROMETHEUS= | ||
PORT__GRAFANA= | ||
PORT__INFLUXDB= | ||
PORT__TORRENT_UI= | ||
PORT__TORRENT= | ||
PORT__OP_GETH_HTTP= | ||
PORT__OP_GETH_WS= | ||
PORT__OP_GETH_P2P= | ||
PORT__OP_NODE_P2P= | ||
PORT__OP_NODE_HTTP= |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
jwt.txt | ||
secrets | ||
geth | ||
**/.DS_Store | ||
.env | ||
var/snapshot.log | ||
.env.sepolia | ||
.env.mainnet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
(The MIT License) | ||
|
||
Copyright 2020-2022 Optimism | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining | ||
a copy of this software and associated documentation files (the | ||
"Software"), to deal in the Software without restriction, including | ||
without limitation the rights to use, copy, modify, merge, publish, | ||
distribute, sublicense, and/or sell copies of the Software, and to | ||
permit persons to whom the Software is furnished to do so, subject to | ||
the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be | ||
included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | ||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY | ||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, | ||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE | ||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
Oops, something went wrong.