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: 2 additions & 1 deletion compose-vc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ services:
networks: [dvnode]
environment:
BEACON_NODE_ADDRESS: http://charon:3600
BUILDER_API_ENABLED: ${BUILDER_API_ENABLED:-true}
labels:
- "promtail-monitored=${VC_NIMBUS_PROMTAIL_MONITORED:-true}"
volumes:
Expand Down Expand Up @@ -93,7 +94,7 @@ services:
--validator-keys="/opt/charon/validator_keys:/opt/charon/validator_keys"
--validators-keystore-locking-enabled false
--validators-external-signer-slashing-protection-enabled true
--validators-builder-registration-default-enabled true
--validators-builder-registration-default-enabled ${BUILDER_API_ENABLED:-true}
--validators-proposer-default-fee-recipient "0x0000000000000000000000000000000000000000"
--Xobol-dvt-integration-enabled true
depends_on: [charon]
Expand Down
4 changes: 2 additions & 2 deletions nimbus/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ echo "Imported all keys"
# Now run nimbus VC
exec /home/user/nimbus_validator_client \
--data-dir=/home/user/data \
--beacon-node="http://charon:3600" \
--beacon-node="${BEACON_NODE_ADDRESS}" \
--doppelganger-detection=false \
--metrics \
--metrics-address=0.0.0.0 \
--payload-builder=true \
--payload-builder=${BUILDER_API_ENABLED} \
--distributed