From 6506fd03ab0c4b5bb24f8daf9da0f77dee9f645a Mon Sep 17 00:00:00 2001 From: kant Date: Mon, 11 Dec 2023 22:27:40 -0800 Subject: [PATCH 1/3] name change --- geth-poa/docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/geth-poa/docker-compose.yml b/geth-poa/docker-compose.yml index b851a7cbc4..666d7228b3 100644 --- a/geth-poa/docker-compose.yml +++ b/geth-poa/docker-compose.yml @@ -1,6 +1,6 @@ version: '3' services: - geth-bootnode: + sl-bootnode: build: context: .. dockerfile: geth-poa/Dockerfile @@ -40,7 +40,7 @@ services: } ] - node1: + sl-node1: build: context: .. dockerfile: geth-poa/Dockerfile @@ -78,7 +78,7 @@ services: ] - node2: + sl-node2: build: context: .. dockerfile: geth-poa/Dockerfile From 6d352b090aa2dd92813aada298adc8110b47a893 Mon Sep 17 00:00:00 2001 From: kant777 <61204489+kant777@users.noreply.github.com> Date: Tue, 12 Dec 2023 01:56:16 -0800 Subject: [PATCH 2/3] Update entrypoint.sh --- geth-poa/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/geth-poa/entrypoint.sh b/geth-poa/entrypoint.sh index a3a06edc31..4e4ff5918a 100644 --- a/geth-poa/entrypoint.sh +++ b/geth-poa/entrypoint.sh @@ -74,7 +74,7 @@ if [ "$GETH_NODE_TYPE" = "bootnode" ]; then --metrics.addr=0.0.0.0 \ --metrics.port=6060 \ --nodekey $GETH_DATA_DIR/boot.key \ - --netrestrict 172.13.0.0/24 \ + --netrestrict 172.29.0.0/16 \ --nat extip:$NODE_IP elif [ "$GETH_NODE_TYPE" = "signer" ]; then @@ -102,7 +102,7 @@ elif [ "$GETH_NODE_TYPE" = "signer" ]; then --miner.etherbase=$BLOCK_SIGNER_ADDRESS \ --allow-insecure-unlock \ --nousb \ - --netrestrict 172.13.0.0/24 \ + --netrestrict 172.29.0.0/16 \ --metrics \ --metrics.addr=0.0.0.0 \ --metrics.port=6060 \ From 9ae49cf5f920411cc28a6b6832156371ba0bb8d0 Mon Sep 17 00:00:00 2001 From: alok Date: Tue, 12 Dec 2023 16:06:11 +0530 Subject: [PATCH 3/3] 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"