Skip to content
Merged
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
209 changes: 121 additions & 88 deletions .env.sample.holesky
Original file line number Diff line number Diff line change
Expand Up @@ -4,58 +4,108 @@
# Overrides network for all the relevant services.
NETWORK=holesky

# Enables builder api for lodestar VC and charon services.
# Execution layer client to be used in a DV setup. Uncomment only the desired client.
EL=el-nethermind

# Consensus layer client to be used in a DV setup. Uncomment only the desired client.
CL=cl-lighthouse
#CL=cl-grandine

# Validator client to be used in a DV setup. Uncomment only the desired client.
VC=vc-lodestar
#VC=vc-nimbus
#VC=vc-prysm
#VC=vc-teku

# MEV client to be used in a DV setup. Uncomment only the desired client.
MEV=mev-mevboost
#MEV=mev-commitboost

# Do not edit. These profiles and files dictate Docker which client types and from where to start for execution, consensus, validator and MEV.
# The actual adjustable values are specified above
COMPOSE_PROFILES=${EL},${CL},${VC},${MEV}
COMPOSE_FILE=compose-el.yml:compose-cl.yml:compose-vc.yml:compose-mev.yml:docker-compose.yml

# Enables Builder API.
#BUILDER_API_ENABLED=
#BUILDER_API_RELAY_URL=http://mev-boost:18550
#BUILDER_SELECTION=

######### Nethermind Config #########
######### Execution Layer Config #########

# EL host exposed IPs and ports.
#EL_PORT_P2P=
#EL_IP_HTTP=
#EL_PORT_HTTP=
#EL_IP_ENGINE=
#EL_PORT_ENGINE=

# Nethermind docker container image version, e.g. `latest` or `1.25.3`.
# Nethermind docker container image version.
# See available tags https://hub.docker.com/r/nethermind/nethermind/tags
#NETHERMIND_VERSION=

# Nethermind host exposed ip and ports
#NETHERMIND_PORT_P2P=
#NETHERMIND_IP_HTTP=
#NETHERMIND_PORT_HTTP=
#NETHERMIND_IP_ENGINE=
#NETHERMIND_PORT_ENGINE=

######### Lighthouse Config #########

# Lighthouse beacon node docker container image version, e.g. `latest` or `v4.6.0`.
# See available tags https://hub.docker.com/r/sigp/lighthouse/tags.
#LIGHTHOUSE_VERSION=
######### Consensus Layer Config #########

# Lighthouse beacon node host exposed ports
#LIGHTHOUSE_PORT_P2P=
# CL beacon node host exposed ports.
#CL_PORT_P2P=

# Checkpoint sync url used by lighthouse to fast sync.
# Lighthouse becon node checkpoint sync URL used by consensus layer to fast sync.
LIGHTHOUSE_CHECKPOINT_SYNC_URL=https://checkpoint-sync.holesky.ethpandaops.io/

# In certain cases, beacon nodes produce blocks with unexpected fee recipients. Setting the Lido execution
# layer rewards vault as the suggested fee recipient reduces this risk
# In certain cases, beacon nodes produce blocks with unexpected fee recipients. Setting the Lido execution
# layer rewards vault as the suggested fee recipient reduces this risk.
LIDO_EXECUTION_LAYER_REWARDS_ADDRESS=0xE73a3602b99f1f913e72F8bdcBC235e206794Ac8

######### Lodestar Config #########
# Lighthouse beacon node docker container image version.
# See available tags https://hub.docker.com/r/sigp/lighthouse/tags.
#CL_LIGHTHOUSE_VERSION=

# Grandine beacon node docker container image version.
# See available tags https://hub.docker.com/r/sifrai/grandine/tags.
#CL_GRANDINE_VERSION=

######### Validator Client Config #########

# Lodestar validator client docker container image version, e.g. `latest` or `v1.19.0`.
# Override prometheus metrics port for validator client.
#VC_PORT_METRICS=

# Lodestar validator client docker container image version.
# See available tags https://hub.docker.com/r/chainsafe/lodestar/tags
#LODESTAR_VERSION=
#VC_LODESTAR_VERSION=

#VC_LODESTAR_BUILDER_SELECTION=

# Override prometheus metrics port for lodestar validator client.
#LODESTAR_PORT_METRICS=
# Nimbus validator client docker container image version.
# See available tags https://hub.docker.com/r/statusim/nimbus-validator-client/tags
#VC_NIMBUS_VERSION=

######### Teku Config #########
# Prysm validator client docker container image version.
# See available tags https://hub.docker.com/r/offchainlabs/prysm-validator/tags
#VC_PRYSM_VERSION=

# Teku validator client docker container image version, e.g. `latest` or `24.1.1`.
# Teku validator client docker container image version.
# See available tags https://hub.docker.com/r/consensys/teku/tags
#TEKU_VERSION=
#VC_TEKU_VERSION=

######### MEV Config #########

# MEV timeouts.
# N.B.: Commit-boost uses TOML configuration instead of env variables. Configure those at commit-boost/.
#MEV_TIMEOUT_GETHEADER=
#MEV_TIMEOUT_GETPAYLOAD=
#MEV_TIMEOUT_REGVAL=

# Comma separated list of MEV relays. You can choose public relays from https://enchanted-direction-844.notion.site/6d369eb33f664487800b0dedfe32171e?v=d255247c822c409f99c498aeb6a4e51d.
# N.B.: Commit-boost uses TOML configuration instead of env variables. Configure those at commit-boost/.
MEV_RELAYS=https://0xafa4c6985aa049fb79dd37010438cfebeb0f2bd42b115b89dd678dab0670c1de38da0c4e9138c9290a398ecd9a0b3110@boost-relay-holesky.flashbots.net,https://0xaa58208899c6105603b74396734a6263cc7d947f444f396a90f7b7d3e65d102aec7e5e5291b27e08d02c50a050825c2f@holesky.titanrelay.xyz,https://0xb1559beef7b5ba3127485bbbb090362d9f497ba64e177ee2c8e7db74746306efad687f2cf8574e38d70067d40ef136dc@relay-stag.ultrasound.money,https://0xab78bf8c781c58078c3beb5710c57940874dd96aef2835e7742c866b4c7c0406754376c2c8285a36c630346aa5c5f833@holesky.aestus.live

# MEV-Boost docker container image version.
#MEV_MEVBOOST_VERSION=

# Commit-Boost docker container image version.
#MEV_COMMITBOOST_VERSION=

######### Charon Config #########

# Charon docker container image version, e.g. `latest` or `v1.0.0`.
# Charon docker container image version.
# See available tags https://hub.docker.com/r/obolnetwork/charon/tags.
#CHARON_VERSION=

Expand All @@ -72,10 +122,10 @@ CHARON_P2P_RELAYS=https://0.relay.obol.tech,https://1.relay.obol.tech/,https://c
# Use fallback beacon nodes sparingly, particularly if latency is high, which can impact DV cluster performance.
#CHARON_FALLBACK_BEACON_NODE_ENDPOINTS=

# Increase the duration charon will wait for requests to the beacon node
# Increase the duration charon will wait for requests to the beacon node.
#CHARON_BEACON_NODE_TIMEOUT=

# Increase the duration charon will wait while publishing data to the beacon node
# Increase the duration charon will wait while publishing data to the beacon node.
#CHARON_BEACON_NODE_SUBMIT_TIMEOUT=

# The address of the execution engine JSON-RPC API.
Expand All @@ -93,67 +143,53 @@ CHARON_P2P_RELAYS=https://0.relay.obol.tech,https://1.relay.obol.tech/,https://c
# Loki log aggregation server addresses. Disable loki log aggregation by setting an empty address.
#CHARON_LOKI_ADDRESSES=

# Charon Cluster Name. Mandatory to send logs with Promtail
# Charon Cluster Name. Mandatory to send logs with Promtail.
#CLUSTER_NAME=

# Charon Cluster Peer. Mandatory to send logs with Promtail
# Charon Cluster Peer. Mandatory to send logs with Promtail.
#CLUSTER_PEER=

# Nickname to identify this charon node on monitoring (max 32 characters)
# Nickname to identify this charon node on monitoring (max 32 characters).
#CHARON_NICKNAME=

# Docker network of running charon node. See `docker network ls`.
#CHARON_DOCKER_NETWORK=

# Charon host exposed ports
# Charon host exposed ports.
#CHARON_PORT_P2P_TCP=

######### MEV-Boost Config #########

# MEV-Boost docker container image version, e.g. `latest` or `1.6`.
#MEVBOOST_VERSION=
#MEVBOOST_TIMEOUT_GETHEADER=
#MEVBOOST_TIMEOUT_GETPAYLOAD=
#MEVBOOST_TIMEOUT_REGVAL=
######### Lido validator-ejector Config #########

# MEV-Boost docker container image name, e.g. flashbots/mev-boost.
#MEVBOOST_IMAGE=

# Comma separated list of MEV-Boost relays. You can choose public relays from https://enchanted-direction-844.notion.site/6d369eb33f664487800b0dedfe32171e?v=d255247c822c409f99c498aeb6a4e51d.
MEVBOOST_RELAYS=https://0xafa4c6985aa049fb79dd37010438cfebeb0f2bd42b115b89dd678dab0670c1de38da0c4e9138c9290a398ecd9a0b3110@boost-relay-holesky.flashbots.net,https://0xaa58208899c6105603b74396734a6263cc7d947f444f396a90f7b7d3e65d102aec7e5e5291b27e08d02c50a050825c2f@holesky.titanrelay.xyz,https://0xb1559beef7b5ba3127485bbbb090362d9f497ba64e177ee2c8e7db74746306efad687f2cf8574e38d70067d40ef136dc@relay-stag.ultrasound.money,https://0xab78bf8c781c58078c3beb5710c57940874dd96aef2835e7742c866b4c7c0406754376c2c8285a36c630346aa5c5f833@holesky.aestus.live

##### validator-ejector Config #####

# validator-ejector container image version, e.g. `stable` or `1.2.0`
# validator-ejector container image version`
#VALIDATOR_EJECTOR_VERSION=

# Disable oracle transaction verification, don't toggle unless explicitly told to do so.
#DISABLE_EJECTOR_SECURITY=

# Lido locator address
# Lido locator address.
VE_LOCATOR_ADDRESS=0x28FAB2059C713A7F9D8c86Db49f9bb0e96Af1ef8

# validator-ejector oracles
# validator-ejector oracles list.
VE_ORACLE_ADDRESSES_ALLOWLIST=["0x12A1D74F8697b9f4F1eEBb0a9d0FB6a751366399","0xD892c09b556b547c80B7d8c8cB8d75bf541B2284","0xf7aE520e99ed3C41180B5E12681d31Aa7302E4e5","0x31fa51343297FFce0CC1E67a50B2D3428057D1b1","0x81E411f1BFDa43493D7994F82fb61A415F6b8Fd4","0x4c75FA734a39f3a21C57e583c1c29942F021C6B7","0xD3b1e36A372Ca250eefF61f90E833Ca070559970","0xF0F23944EfC5A63c53632C571E7377b85d5E6B6f","0xb29dD2f6672C0DFF2d2f173087739A42877A5172","0x3799bDA7B884D33F79CEC926af21160dc47fbe05"]

# Lido staking module ID
# Lido staking module ID.
#VE_STAKING_MODULE_ID=

# Lido operator ID
# Lido operator ID.
#VE_OPERATOR_ID=

# Beacon node URL
# Beacon node URL.
#VE_BEACON_NODE_URL=

# Execution node URL
# Execution node URL.
#VE_EXECUTION_NODE_URL=

######## lido-dv-exit config ########
######### Lido lido-dv-exit Config #########

# lido-dv-exit container image version, e.g. `stable`
# lido-dv-exit container image version.
#LIDO_DV_EXIT_VERSION=

# lido-dv-exit beacon node endpoint
# lido-dv-exit beacon node endpoint.
#LIDO_DV_EXIT_BEACON_NODE_URL=

# Override the lido-dv-exit logging level; debug, info, warning, error.
Expand All @@ -164,57 +200,54 @@ VE_ORACLE_ADDRESSES_ALLOWLIST=["0x12A1D74F8697b9f4F1eEBb0a9d0FB6a751366399","0xD
# Defaults to 5.
#LIDO_DV_EXIT_VALIDATOR_QUERY_CHUNK_SIZE=

# lido-dv-exit exit epoch
# lido-dv-exit exit epoch.
LIDODVEXIT_EXIT_EPOCH=256

######### Monitoring Config #########

# Grafana docker container image version, e.g. `latest` or `10.3.1`.
# Grafana docker container image version.
# See available tags https://github.com/grafana/grafana/releases.
#GRAFANA_VERSION=

# Grafana host exposed ip and port
# Grafana host exposed IP and port.
#MONITORING_IP_GRAFANA=
#MONITORING_PORT_GRAFANA=

# Prometheus docker container image version, e.g. `latest` or `v2.42.0`.
# Prometheus docker container image version.
# See available tags https://github.com/prometheus/prometheus/releases.
#PROMETHEUS_VERSION=

######### Voluntary Exit Config #########

# This applies to compose-voluntary-exit.yml only

# Cluster wide consistent exit epoch. Set to latest for fork version, see `curl $BEACON_NODE/eth/v1/config/fork_schedule`
#EXIT_EPOCH=
# Uncomment these if you have log exporting with Promtail
# and want to disable log export on a particular container.
#EL_NETHERMIND_PROMTAIL_MONITORED=false
#CL_LIGHTHOUSE_PROMTAIL_MONITORED=false
#CL_GRANDINE_PROMTAIL_MONITORED=false
#CHARON_PROMTAIL_MONITORED=false
#VC_LODESTAR_PROMTAIL_MONITORED=false
#VC_NIMBUS_PROMTAIL_MONITORED=false
#VC_PRYSM_PROMTAIL_MONITORED=false
#VC_TEKU_PROMTAIL_MONITORED=false
#MEV_MEV_BOOST_PROMTAIL_MONITORED=false
#MEV_COMMIT_BOOST_PROMTAIL_MONITORED=false
#EJECTOR_PROMTAIL_MONITORED=false
#DV_EXIT_PROMTAIL_MONITORED=false

######### Debug Config #########

# This applies to compose-debug.yml only
# This applies to compose-debug.yml only.

# Prometheus Node exporter docker container image version, e.g. `latest` or `1.5.0`.
# Prometheus Node exporter docker container image version.
# See available tags https://hub.docker.com/r/bitnami/node-exporter/tags.
#NODE_EXPORTER_VERSION=

# Grafana Tempo docker container image version, e.g. `latest` or `2.7.1`.
# Grafana Tempo docker container image version.
# Use Grafana Explore to access Tempo data.
# See available tags https://hub.docker.com/r/grafana/tempo/tags.
#TEMPO_VERSION=

# Grafana Loki docker container image version, e.g. `latest` or `2.8.2`.
# Grafana Loki docker container image version.
# See available tags https://hub.docker.com/r/grafana/loki/tags.
#LOKI_VERSION=

# Loki host exposed port
# Loki host exposed port.
#MONITORING_PORT_LOKI=

# Uncomment these if you have log exporting with Promtail
# and want to disable log export on a particular container.

# NETHERMIND_PROMTAIL_MONITORED=false
# LIGHTHOUSE_PROMTAIL_MONITORED=false
# CHARON_PROMTAIL_MONITORED=false
# LODESTAR_PROMTAIL_MONITORED=false
# MEV_BOOST_PROMTAIL_MONITORED=false
# EJECTOR_PROMTAIL_MONITORED=false
# DV_EXIT_PROMTAIL_MONITORED=false
Loading