Skip to content
Closed
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
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ services:
environment:
COINBASE: ""
VALIDATOR_PRIVATE_KEYS: ""
GOVERNANCE_PROPOSER_PAYLOAD_ADDRESS: ""
BLOB_SINK_URL: ""
LOG_LEVEL: info
restart: unless-stopped
Expand Down
1 change: 1 addition & 0 deletions package_variants/sepolia/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ services:
environment:
ETHEREUM_HOSTS: http://geth.sepolia-geth.dappnode:8545
L1_CONSENSUS_HOST_URLS: http://prysm-sepolia.dappnode:3500
GOVERNANCE_PROPOSER_PAYLOAD_ADDRESS: "0xDCd9DdeAbEF70108cE02576df1eB333c4244C666"
ports:
- 40400:40400/tcp
- 40400:40400/udp
1 change: 1 addition & 0 deletions sequencer/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ set -euo pipefail
: "${L1_CONSENSUS_HOST_URLS?Need to set L1_CONSENSUS_HOST_URLS}"
: "${VALIDATOR_PRIVATE_KEYS?Need to set VALIDATOR_PRIVATE_KEYS}"
: "${COINBASE?Need to set COINBASE}"
: "${GOVERNANCE_PROPOSER_PAYLOAD_ADDRESS?Need to set GOVERNANCE_PROPOSER_PAYLOAD_ADDRESS}"
: "${_DAPPNODE_GLOBAL_PUBLIC_IP?Need to set _DAPPNODE_GLOBAL_PUBLIC_IP (your public IP)}"
: "${NETWORK?Need to set NETWORK (build arg)}"
: "${LOG_LEVEL:=info}"
Expand Down