diff --git a/base-reth-fullnode.yml b/base-reth-fullnode.yml index 9be16215..894dd587 100644 --- a/base-reth-fullnode.yml +++ b/base-reth-fullnode.yml @@ -4,6 +4,7 @@ services: base-fullnode: # this is Optimism's geth client image: ghcr.io/paradigmxyz/op-reth:v1.1.0 expose: + - 9551 - 8545 # RPC / Websocket - 27532 # P2P TCP (currently unused) - 27532/udp # P2P UDP (currently unused) @@ -62,7 +63,7 @@ services: - "OP_NODE_L1_ETH_RPC=${BASE_ETHEREUM_ENDPOINT}" - "OP_NODE_L2_ENGINE_AUTH_RAW=${JWTSECRET}" - "OP_NODE_L2_ENGINE_AUTH=/jwtsecret" - - "OP_NODE_L2_ENGINE_RPC=http://base-fullnode:8551" + - "OP_NODE_L2_ENGINE_RPC=http://base-fullnode:9551" - "OP_NODE_LOG_LEVEL=info" - "OP_NODE_METRICS_ADDR=0.0.0.0" - "OP_NODE_METRICS_ENABLED=true" diff --git a/base-reth.yml b/base-reth.yml index e7e844ef..0927807f 100644 --- a/base-reth.yml +++ b/base-reth.yml @@ -4,6 +4,7 @@ services: base-archive: # this is Optimism's geth client image: ghcr.io/paradigmxyz/op-reth:v1.1.0 expose: + - 9551 - 8545 # RPC / Websocket - 23238 # P2P TCP (currently unused) - 23238/udp # P2P UDP (currently unused) @@ -62,7 +63,7 @@ services: - "OP_NODE_L1_ETH_RPC=${BASE_ETHEREUM_ENDPOINT}" - "OP_NODE_L2_ENGINE_AUTH_RAW=${JWTSECRET}" - "OP_NODE_L2_ENGINE_AUTH=/jwtsecret" - - "OP_NODE_L2_ENGINE_RPC=http://base-archive:8551" + - "OP_NODE_L2_ENGINE_RPC=http://base-archive:9551" - "OP_NODE_LOG_LEVEL=info" - "OP_NODE_METRICS_ADDR=0.0.0.0" - "OP_NODE_METRICS_ENABLED=true"