let bob pull its config from the suerpchain registry instead of local files

This commit is contained in:
goldsquid
2026-06-04 19:52:37 +07:00
parent 19c01590d9
commit e30ec1d62f
13 changed files with 22 additions and 50 deletions

View File

@@ -53,9 +53,10 @@ services:
- 6060
- 8551
environment:
- GETH_OP_NETWORK=bob-sepolia
- GETH_ROLLUP_DISABLETXPOOLGOSSIP=true
- GETH_ROLLUP_SEQUENCERHTTP=https://bob-sepolia.rpc.gobob.xyz
entrypoint: /bin/sh -c '[ -f /config/genesis.json ] && geth --db.engine=pebble --gcmode=full --datadir /data init --state.scheme=path /config/genesis.json; exec geth "$@"' --
entrypoint: /bin/sh -c 'exec geth "$@"' --
command:
- --datadir=/data
- --db.engine=pebble
@@ -65,7 +66,6 @@ services:
- --metrics.addr=0.0.0.0
- --metrics.port=6060
- --nat=extip:${IP}
- --networkid=808813
- --port=13979
- --rpc.gascap=600000000
- --rpc.txfeecap=0
@@ -90,7 +90,6 @@ services:
- chains
volumes:
- ${BOB_SEPOLIA_OP_GETH_PRUNED_PEBBLE_PATH_DATA:-bob-sepolia-op-geth-pruned-pebble-path}:/data
- ./op/bob/sepolia:/config
- .jwtsecret:/jwtsecret:ro
- /slowdisk:/slowdisk
logging: *logging-defaults
@@ -125,12 +124,12 @@ services:
- OP_NODE_METRICS_ADDR=0.0.0.0
- OP_NODE_METRICS_ENABLED=true
- OP_NODE_METRICS_PORT=7300
- OP_NODE_NETWORK=bob-sepolia
- OP_NODE_OVERRIDE_PECTRABLOBSCHEDULE=1742486400
- OP_NODE_P2P_ADVERTISE_IP=${IP}
- OP_NODE_P2P_LISTEN_IP=0.0.0.0
- OP_NODE_P2P_LISTEN_TCP_PORT=18979
- OP_NODE_P2P_LISTEN_UDP_PORT=18979
- OP_NODE_ROLLUP_CONFIG=/config/rollup.json
- OP_NODE_ROLLUP_LOAD_PROTOCOL_VERSIONS=true
- OP_NODE_RPC_ADDR=0.0.0.0
- OP_NODE_RPC_PORT=8545
@@ -144,7 +143,6 @@ services:
networks:
- chains
volumes:
- ./op/bob/sepolia:/config
- .jwtsecret:/jwtsecret:ro
logging: *logging-defaults
labels: