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
3 changes: 3 additions & 0 deletions .env.sample.hoodi
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,9 @@ LIGHTHOUSE_CHECKPOINT_SYNC_URL=https://checkpoint-sync.hoodi.ethpandaops.io/
# Override prometheus metrics port for validator client.
#VC_PORT_METRICS=

# Additional parameters for the validator client.
#VC_EXTRAS=

# Lodestar validator client docker container image version.
# See available tags https://hub.docker.com/r/chainsafe/lodestar/tags
#VC_LODESTAR_VERSION=
Expand Down
3 changes: 3 additions & 0 deletions .env.sample.mainnet
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,9 @@ LIGHTHOUSE_CHECKPOINT_SYNC_URL=https://mainnet.checkpoint.sigp.io/
# Override prometheus metrics port for validator client.
#VC_PORT_METRICS=

# Additional parameters for the validator client.
#VC_EXTRAS=

# Lodestar validator client docker container image version.
# See available tags https://hub.docker.com/r/chainsafe/lodestar/tags
#VC_LODESTAR_VERSION=
Expand Down
4 changes: 4 additions & 0 deletions compose-vc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ services:
NETWORK: ${NETWORK}
BUILDER_API_ENABLED: ${BUILDER_API_ENABLED:-true}
BUILDER_SELECTION: ${VC_LODESTAR_BUILDER_SELECTION:-builderalways}
VC_EXTRAS: ${VC_EXTRAS:-}
labels:
- "alloy-monitored=${VC_LODESTAR_ALLOY_MONITORED:-true}"
volumes:
Expand All @@ -46,6 +47,7 @@ services:
environment:
BEACON_NODE_ADDRESS: http://charon:3600
BUILDER_API_ENABLED: ${BUILDER_API_ENABLED:-true}
VC_EXTRAS: ${VC_EXTRAS:-}
labels:
- "alloy-monitored=${VC_NIMBUS_ALLOY_MONITORED:-true}"
volumes:
Expand All @@ -70,6 +72,7 @@ services:
environment:
BEACON_NODE_ADDRESS: http://charon:3600
NETWORK: ${NETWORK}
VC_EXTRAS: ${VC_EXTRAS:-}
labels:
- "alloy-monitored=${VC_PRYSM_ALLOY_MONITORED:-true}"
volumes:
Expand Down Expand Up @@ -98,6 +101,7 @@ services:
--validators-builder-registration-default-enabled ${BUILDER_API_ENABLED:-true}
--validators-proposer-default-fee-recipient "0x0000000000000000000000000000000000000000"
--Xobol-dvt-integration-enabled true
${VC_EXTRAS:-}
depends_on: [charon]
networks: [dvnode]
labels:
Expand Down
3 changes: 2 additions & 1 deletion lodestar/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,5 @@ exec node /usr/app/packages/cli/bin/lodestar validator \
--beaconNodes="$BEACON_NODE_ADDRESS" \
--builder="$BUILDER_API_ENABLED" \
--builder.selection="$BUILDER_SELECTION" \
--distributed
--distributed \
${VC_EXTRAS:+$VC_EXTRAS}
3 changes: 2 additions & 1 deletion nimbus/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,5 @@ exec /home/user/nimbus_validator_client \
--metrics \
--metrics-address=0.0.0.0 \
--payload-builder=${BUILDER_API_ENABLED} \
--distributed
--distributed \
${VC_EXTRAS:+$VC_EXTRAS}
3 changes: 2 additions & 1 deletion prysm/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,5 @@ echo "Imported all keys"
--beacon-rest-api-provider="${BEACON_NODE_ADDRESS}" \
--beacon-rpc-provider="${BEACON_NODE_ADDRESS}" \
--"${NETWORK}" \
--distributed
--distributed \
${VC_EXTRAS:+$VC_EXTRAS}