diff --git a/geth-poa/docker-compose.yml b/geth-poa/docker-compose.yml index 1a41b5fda3..e284ba9244 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 @@ -41,7 +41,7 @@ services: } ] - node1: + sl-node1: build: context: .. dockerfile: geth-poa/Dockerfile @@ -80,7 +80,8 @@ services: } ] - node2: + + sl-node2: build: context: .. dockerfile: geth-poa/Dockerfile 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"