From 9ae49cf5f920411cc28a6b6832156371ba0bb8d0 Mon Sep 17 00:00:00 2001 From: alok Date: Tue, 12 Dec 2023 16:06:11 +0530 Subject: [PATCH] chore: fix bootnode address in scripts --- geth-poa/entrypoint.sh | 2 +- geth-poa/hyperlane-deployer/chain-config.yml | 2 +- geth-poa/hyperlane-relayer/Dockerfile | 2 +- geth-poa/hyperlane-validator/Dockerfile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/geth-poa/entrypoint.sh b/geth-poa/entrypoint.sh index 4e4ff5918a..33f3bdb8a1 100644 --- a/geth-poa/entrypoint.sh +++ b/geth-poa/entrypoint.sh @@ -94,7 +94,7 @@ elif [ "$GETH_NODE_TYPE" = "signer" ]; then --http.addr=0.0.0.0 \ --http.port="$RPC_PORT" \ --http.api=web3,debug,eth,txpool,net,engine \ - --bootnodes enode://34a2a388ad31ca37f127bb9ffe93758ee711c5c2277dff6aff2e359bcf2c9509ea55034196788dbd59ed70861f523c1c03d54f1eabb2b4a5c1c129d966fe1e65@172.13.0.100:30301 \ + --bootnodes enode://34a2a388ad31ca37f127bb9ffe93758ee711c5c2277dff6aff2e359bcf2c9509ea55034196788dbd59ed70861f523c1c03d54f1eabb2b4a5c1c129d966fe1e65@172.29.0.98:30301 \ --networkid=$CHAIN_ID \ --unlock=$BLOCK_SIGNER_ADDRESS \ --password="$GETH_DATA_DIR"/password \ diff --git a/geth-poa/hyperlane-deployer/chain-config.yml b/geth-poa/hyperlane-deployer/chain-config.yml index 49e5b414cf..ea3ca0db67 100644 --- a/geth-poa/hyperlane-deployer/chain-config.yml +++ b/geth-poa/hyperlane-deployer/chain-config.yml @@ -6,7 +6,7 @@ mevcommitsettlement: protocol: ethereum rpcUrls: # Only http field is required - - http: http://172.13.0.100:8545 + - http: http://172.29.0.98:8545 pagination: maxBlockRange: 1000 maxBlockAge: 1000 diff --git a/geth-poa/hyperlane-relayer/Dockerfile b/geth-poa/hyperlane-relayer/Dockerfile index 390696351e..5a57f98bc9 100644 --- a/geth-poa/hyperlane-relayer/Dockerfile +++ b/geth-poa/hyperlane-relayer/Dockerfile @@ -11,7 +11,7 @@ ENV CONFIG_FILES="/deploy-artifacts/agent-config.json" CMD ./relayer \ --relayChains mevcommitsettlement,sepolia \ - --chains.mevcommitsettlement.connection.url "http://172.13.0.100:8545" \ + --chains.mevcommitsettlement.connection.url "http://172.29.0.98:8545" \ --chains.sepolia.connection.url "https://eth-sepolia.g.alchemy.com/v2/a0wg_g1X-Wz4IeVA-0SS3PsQhbyQNjc_" \ --db /relayer-db \ --defaultSigner.key $RELAYER_PRIVATE_KEY \ diff --git a/geth-poa/hyperlane-validator/Dockerfile b/geth-poa/hyperlane-validator/Dockerfile index e5c48571d4..217fc82905 100644 --- a/geth-poa/hyperlane-validator/Dockerfile +++ b/geth-poa/hyperlane-validator/Dockerfile @@ -9,7 +9,7 @@ ENV CONFIG_FILES="/deploy-artifacts/agent-config.json" ENV HYP_BASE_REORGPERIOD=20 ENV HYP_BASE_ORIGINCHAINNAME="mevcommitsettlement" -ENV HYP_BASE_CHAINS_MEVCOMMITSETTLEMENT_CONNECTION_URL="http://172.13.0.100:8545" +ENV HYP_BASE_CHAINS_MEVCOMMITSETTLEMENT_CONNECTION_URL="http://172.29.0.98:8545" ENV HYP_BASE_DB="/val-db" ENV HYP_CHECKPOINTSYNCER_TYPE="localStorage" ENV HYP_ORIGINCHAINNAME="mevcommitsettlement"