Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .env.mainnet
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ STATSD_ADDRESS="172.17.0.1"
# FLASHBLOCKS (OPTIONAL - UNCOMMENT TO ENABLE)
# RETH_FB_WEBSOCKET_URL=wss://mainnet.flashblocks.base.org/ws

# HISTORICAL PROOFS (OPTIONAL - UNCOMMENT TO ENABLE)
# Enables historical proof generation. Initialization may take up to 6 hours on first run.
# RETH_HISTORICAL_PROOFS=true
# RETH_HISTORICAL_PROOFS_STORAGE_PATH=/data/proofs

# PRUNING (OPTIONAL - UNCOMMENT TO ENABLE)
# NOTE: Set to any number of blocks you want, but it should be >10064
# NOTE: The node type that was chosen when first running a node cannot be changed after the initial sync. Turning Archive into Pruned, or Pruned into Full is not supported [source](https://reth.rs/run/faq/pruning/).
Expand Down
5 changes: 5 additions & 0 deletions .env.sepolia
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ STATSD_ADDRESS="172.17.0.1"
# FLASHBLOCKS (OPTIONAL - UNCOMMENT TO ENABLE)
# RETH_FB_WEBSOCKET_URL=wss://sepolia.flashblocks.base.org/ws

# HISTORICAL PROOFS (OPTIONAL - UNCOMMENT TO ENABLE)
# Enables historical proof generation. Initialization may take up to 6 hours on first run.
# RETH_HISTORICAL_PROOFS=true
# RETH_HISTORICAL_PROOFS_STORAGE_PATH=/data/proofs

# PRUNING (OPTIONAL - UNCOMMENT TO ENABLE)
# NOTE: Set to any number of blocks you want, but it should be >10064
# NOTE: The node type that was chosen when first running a node cannot be changed after the initial sync. Turning Archive into Pruned, or Pruned into Full is not supported [source](https://reth.rs/run/faq/pruning/).
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ The following are the hardware specifications we use in production:
- Flashblocks: set `RETH_FB_WEBSOCKET_URL`. When set, the execution client runs in Flashblocks mode; otherwise it runs in vanilla mode.
- Follow mode: set `BASE_NODE_SOURCE_L2_RPC`
- Pruning: set `RETH_PRUNING_ARGS`
- Historical Proofs: set `RETH_HISTORICAL_PROOFS=true` and `RETH_HISTORICAL_PROOFS_STORAGE_PATH=<path>`. Enables historical proof generation. Note: initialization may take up to 6 hours on first run.

For full configuration options, see `.env.mainnet` or `.env.sepolia`.

Expand Down