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
6 changes: 6 additions & 0 deletions .env.mainnet
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ BASE_NODE_L2_ENGINE_RPC=ws://execution:8551
BASE_NODE_L2_ENGINE_AUTH=/tmp/engine-auth-jwt
BASE_NODE_L2_ENGINE_AUTH_RAW=688f5d737bad920bdfb2fc2f488d6b6209eebda1dae949a8de91398d932c517a

# RPC CONFIGURATION
# -----------------
# Must match the container-side port in the docker-compose.yml port mapping (7545:8545).
# base-consensus defaults to 9545 if unset, which breaks the existing port mapping.
BASE_NODE_RPC_PORT=8545

# P2P CONFIGURATION
# -----------------
BASE_NODE_P2P_LISTEN_IP=0.0.0.0
Expand Down
6 changes: 6 additions & 0 deletions .env.sepolia
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ BASE_NODE_L2_ENGINE_RPC=http://execution:8551
BASE_NODE_L2_ENGINE_AUTH=/tmp/engine-auth-jwt
BASE_NODE_L2_ENGINE_AUTH_RAW=688f5d737bad920bdfb2fc2f488d6b6209eebda1dae949a8de91398d932c517a

# RPC CONFIGURATION
# -----------------
# Must match the container-side port in the docker-compose.yml port mapping (7545:8545).
# base-consensus defaults to 9545 if unset, which breaks the existing port mapping.
BASE_NODE_RPC_PORT=8545

# P2P CONFIGURATION
# -----------------
BASE_NODE_P2P_LISTEN_IP=0.0.0.0
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ The following are the hardware specifications we use in production:
- `BASE_NODE_L1_BEACON`: your L1 beacon node endpoint
- `BASE_NODE_NETWORK`: `base` or `base-sepolia`
- `RETH_CHAIN`: `base` or `base-sepolia`
- `BASE_NODE_RPC_PORT`: consensus RPC listen port — must be `8545` to match the `docker-compose.yml` port mapping (`7545:8545`); defaults to `9545` if unset, which makes the consensus RPC unreachable from the host

### Network Settings

Expand Down