Skip to content

Commit cc0a507

Browse files
authoredApr 2, 2024··
Change GCMODE to full + update docs (#233)
* docs(README): Drop Goerli mention * docs(env): Mark L1 RPC has required * refactor(geth): Set gcmode to full
1 parent 880f57a commit cc0a507

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed
 

‎.env.mainnet

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ OP_GETH_SEQUENCER_HTTP=https://mainnet-sequencer.base.org
44
# [optional] used to enable geth stats:
55
# OP_GETH_ETH_STATS=nodename:secret@host:port
66

7-
# [recommended] replace with your preferred L1 (Ethereum, not Base) node RPC URL:
7+
# [required] replace with your preferred L1 (Ethereum, not Base) node RPC URL:
88
OP_NODE_L1_ETH_RPC=https://1rpc.io/eth
99

1010
# [required] replace with your preferred L1 CL beacon endpoint:

‎.env.sepolia

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ OP_GETH_SEQUENCER_HTTP=https://sepolia-sequencer.base.org
44
# [optional] used to enable geth stats:
55
# OP_GETH_ETH_STATS=nodename:secret@host:port
66

7-
# [recommended] replace with your preferred L1 (Ethereum, not Base) node RPC URL:
7+
# [required] replace with your preferred L1 (Ethereum, not Base) node RPC URL:
88
OP_NODE_L1_ETH_RPC=https://rpc.sepolia.org
99

1010
# [required] replace with your preferred L1 CL beacon endpoint:

‎README.md

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ If you encounter problems with your node, please open a [GitHub issue](https://g
4646

4747
| Ethereum Network | Status |
4848
|------------------| ------ |
49-
| Goerli testnet ||
5049
| Sepolia testnet ||
5150
| Mainnet ||
5251

‎geth-entrypoint

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ METRICS_PORT="${METRICS_PORT:-6060}"
1010
HOST_IP="0.0.0.0"
1111
P2P_PORT="${P2P_PORT:-30303}"
1212
ADDITIONAL_ARGS=""
13-
OP_GETH_GCMODE="${OP_GETH_GCMODE:-archive}"
13+
OP_GETH_GCMODE="${OP_GETH_GCMODE:-full}"
1414
OP_GETH_SYNCMODE="${OP_GETH_SYNCMODE:-full}"
1515

1616
if [[ -z "$OP_NODE_NETWORK" ]]; then

0 commit comments

Comments
 (0)
Please sign in to comment.