From 6163377682c83317e16c28370918a15410d6d780 Mon Sep 17 00:00:00 2001 From: Sebastian <379651+czarly@users.noreply.github.com> Date: Thu, 17 Oct 2024 06:57:15 +0200 Subject: [PATCH] fix --- base-reth-fullnode.yml | 3 ++- base-reth.yml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) 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"