Skip to content

Commit

Permalink
Adapt validator entrypoint to mainnet network (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
dappnodedev authored Mar 5, 2024
1 parent f4a8522 commit 4f1231d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions validator/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#!/bin/sh

WEB3SIGNER_API=http://web3signer.web3signer-${NETWORK}.dappnode:9000
WEB3SIGNER_API=http://web3signer.web3signer.dappnode:9000
DATA_DIR=/root/.eth2validators
WALLET_DIR=${DATA_DIR}/prysm-wallet-v2

# Copy auth-token in runtime to the prysm token dir
mkdir -p ${WALLET_DIR}
cp /auth-token ${WALLET_DIR}/auth-token

if [ -n "$_DAPPNODE_GLOBAL_MEVBOOST_PRATER" ] && [ "$_DAPPNODE_GLOBAL_MEVBOOST_PRATER" = "true" ]; then
if [ -n "$_DAPPNODE_GLOBAL_MEVBOOST_MAINNET" ] && [ "$_DAPPNODE_GLOBAL_MEVBOOST_MAINNET" = "true" ]; then
echo "MEVBOOST is enabled"
EXTRA_OPTS="--enable-builder ${EXTRA_OPTS}"
fi
Expand Down

0 comments on commit 4f1231d

Please sign in to comment.