genesis for bob-sepolia

This commit is contained in:
goldsquid
2026-06-09 13:02:21 +07:00
parent e9024c5c17
commit 1f7dd60483
8 changed files with 334 additions and 40 deletions

View File

@@ -29,6 +29,22 @@ x-logging-defaults: &logging-defaults
# --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
services:
bob-sepolia-archive-init:
image: alpine:3.21
user: root
entrypoint: [/bin/sh, -c]
command:
- |
apk add --no-cache curl wget
mkdir -p /config
[ -f /config/genesis.json ] || curl -fsSL -o /config/genesis.json "https://api.conduit.xyz/file/v1/optimism/genesis/bob-sepolia-dm6uw0yhh3"
restart: no
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_GETH_ARCHIVE_LEVELDB_HASH_CONFIG:-bob-sepolia-op-geth-archive-leveldb-hash_config}:/config
logging: *logging-defaults
bob-sepolia-archive:
image: ${BOB_GETH_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-geth}:${BOB_SEPOLIA_GETH_VERSION:-v1.101702.2}
sysctls:
@@ -53,10 +69,9 @@ 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 'exec geth "$@"' --
entrypoint: /bin/sh -c '[ -f /config/genesis.json ] && geth --db.engine=leveldb --gcmode=archive --datadir /data init --state.scheme=hash /config/genesis.json; exec geth "$@"' --
command:
- --datadir=/data
- --db.engine=leveldb
@@ -66,6 +81,7 @@ services:
- --metrics.addr=0.0.0.0
- --metrics.port=6060
- --nat=extip:${IP}
- --networkid=808813
- --port=10225
- --rpc.gascap=600000000
- --rpc.txfeecap=0
@@ -86,9 +102,13 @@ services:
- --authrpc.vhosts=*
restart: unless-stopped
stop_grace_period: 5m
depends_on:
bob-sepolia-archive-init:
condition: service_completed_successfully
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_GETH_ARCHIVE_LEVELDB_HASH_CONFIG:-bob-sepolia-op-geth-archive-leveldb-hash_config}:/config
- ${BOB_SEPOLIA_OP_GETH_ARCHIVE_LEVELDB_HASH_DATA:-bob-sepolia-op-geth-archive-leveldb-hash}:/data
- .jwtsecret:/jwtsecret:ro
- /slowdisk:/slowdisk
@@ -106,6 +126,21 @@ services:
- ${NO_SSL:+traefik.http.routers.bob-sepolia-op-geth-archive-leveldb-hash.rule=Path(`/bob-sepolia-archive`) || Path(`/bob-sepolia-archive/`)}
- traefik.http.routers.bob-sepolia-op-geth-archive-leveldb-hash.middlewares=bob-sepolia-op-geth-archive-leveldb-hash-stripprefix, ipallowlist
bob-sepolia-archive-node-init:
image: alpine:3.20
entrypoint: [/bin/sh, -c]
command:
- |
apk add --no-cache ca-certificates curl
mkdir -p /config
[ -f /config/rollup.json ] || curl -fsSL -o /config/rollup.json "https://api.conduit.xyz/file/v1/optimism/rollup/bob-sepolia-dm6uw0yhh3"
restart: no
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_GETH_ARCHIVE_LEVELDB_HASH_NODE_CONFIG:-bob-sepolia-op-geth-archive-leveldb-hash_node_config}:/config
logging: *logging-defaults
bob-sepolia-archive-node:
image: ${BOB_NODE_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node}:${BOB_SEPOLIA_NODE_VERSION:-v1.19.0}
ports:
@@ -124,12 +159,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=15225
- OP_NODE_P2P_LISTEN_UDP_PORT=15225
- 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
@@ -139,10 +174,14 @@ services:
entrypoint: [op-node]
restart: unless-stopped
depends_on:
- bob-sepolia-archive
bob-sepolia-archive-node-init:
condition: service_completed_successfully
bob-sepolia-archive:
condition: service_started
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_GETH_ARCHIVE_LEVELDB_HASH_NODE_CONFIG:-bob-sepolia-op-geth-archive-leveldb-hash_node_config}:/config
- .jwtsecret:/jwtsecret:ro
logging: *logging-defaults
labels:
@@ -160,6 +199,11 @@ services:
volumes:
bob-sepolia-op-geth-archive-leveldb-hash:
bob-sepolia-op-geth-archive-leveldb-hash_config:
bob-sepolia-op-geth-archive-leveldb-hash_node_config:
x-ephemeral-volumes:
- bob-sepolia-op-geth-archive-leveldb-hash_config
x-upstreams:
- id: $${ID}

View File

@@ -29,6 +29,22 @@ x-logging-defaults: &logging-defaults
# --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
services:
bob-sepolia-archive-init:
image: alpine:3.21
user: root
entrypoint: [/bin/sh, -c]
command:
- |
apk add --no-cache curl wget
mkdir -p /config
[ -f /config/genesis.json ] || curl -fsSL -o /config/genesis.json "https://api.conduit.xyz/file/v1/optimism/genesis/bob-sepolia-dm6uw0yhh3"
restart: no
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_GETH_ARCHIVE_PEBBLE_HASH_CONFIG:-bob-sepolia-op-geth-archive-pebble-hash_config}:/config
logging: *logging-defaults
bob-sepolia-archive:
image: ${BOB_GETH_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-geth}:${BOB_SEPOLIA_GETH_VERSION:-v1.101702.2}
sysctls:
@@ -53,10 +69,9 @@ 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 'exec geth "$@"' --
entrypoint: /bin/sh -c '[ -f /config/genesis.json ] && geth --db.engine=pebble --gcmode=archive --datadir /data init --state.scheme=hash /config/genesis.json; exec geth "$@"' --
command:
- --datadir=/data
- --db.engine=pebble
@@ -66,6 +81,7 @@ services:
- --metrics.addr=0.0.0.0
- --metrics.port=6060
- --nat=extip:${IP}
- --networkid=808813
- --port=12678
- --rpc.gascap=600000000
- --rpc.txfeecap=0
@@ -86,9 +102,13 @@ services:
- --authrpc.vhosts=*
restart: unless-stopped
stop_grace_period: 5m
depends_on:
bob-sepolia-archive-init:
condition: service_completed_successfully
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_GETH_ARCHIVE_PEBBLE_HASH_CONFIG:-bob-sepolia-op-geth-archive-pebble-hash_config}:/config
- ${BOB_SEPOLIA_OP_GETH_ARCHIVE_PEBBLE_HASH_DATA:-bob-sepolia-op-geth-archive-pebble-hash}:/data
- .jwtsecret:/jwtsecret:ro
- /slowdisk:/slowdisk
@@ -106,6 +126,21 @@ services:
- ${NO_SSL:+traefik.http.routers.bob-sepolia-op-geth-archive-pebble-hash.rule=Path(`/bob-sepolia-archive`) || Path(`/bob-sepolia-archive/`)}
- traefik.http.routers.bob-sepolia-op-geth-archive-pebble-hash.middlewares=bob-sepolia-op-geth-archive-pebble-hash-stripprefix, ipallowlist
bob-sepolia-archive-node-init:
image: alpine:3.20
entrypoint: [/bin/sh, -c]
command:
- |
apk add --no-cache ca-certificates curl
mkdir -p /config
[ -f /config/rollup.json ] || curl -fsSL -o /config/rollup.json "https://api.conduit.xyz/file/v1/optimism/rollup/bob-sepolia-dm6uw0yhh3"
restart: no
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_GETH_ARCHIVE_PEBBLE_HASH_NODE_CONFIG:-bob-sepolia-op-geth-archive-pebble-hash_node_config}:/config
logging: *logging-defaults
bob-sepolia-archive-node:
image: ${BOB_NODE_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node}:${BOB_SEPOLIA_NODE_VERSION:-v1.19.0}
ports:
@@ -124,12 +159,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=17678
- OP_NODE_P2P_LISTEN_UDP_PORT=17678
- 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
@@ -139,10 +174,14 @@ services:
entrypoint: [op-node]
restart: unless-stopped
depends_on:
- bob-sepolia-archive
bob-sepolia-archive-node-init:
condition: service_completed_successfully
bob-sepolia-archive:
condition: service_started
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_GETH_ARCHIVE_PEBBLE_HASH_NODE_CONFIG:-bob-sepolia-op-geth-archive-pebble-hash_node_config}:/config
- .jwtsecret:/jwtsecret:ro
logging: *logging-defaults
labels:
@@ -160,6 +199,11 @@ services:
volumes:
bob-sepolia-op-geth-archive-pebble-hash:
bob-sepolia-op-geth-archive-pebble-hash_config:
bob-sepolia-op-geth-archive-pebble-hash_node_config:
x-ephemeral-volumes:
- bob-sepolia-op-geth-archive-pebble-hash_config
x-upstreams:
- id: $${ID}

View File

@@ -29,6 +29,22 @@ x-logging-defaults: &logging-defaults
# --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
services:
bob-sepolia-init:
image: alpine:3.21
user: root
entrypoint: [/bin/sh, -c]
command:
- |
apk add --no-cache curl wget
mkdir -p /config
[ -f /config/genesis.json ] || curl -fsSL -o /config/genesis.json "https://api.conduit.xyz/file/v1/optimism/genesis/bob-sepolia-dm6uw0yhh3"
restart: no
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_GETH_PRUNED_PEBBLE_HASH_CONFIG:-bob-sepolia-op-geth-pruned-pebble-hash_config}:/config
logging: *logging-defaults
bob-sepolia:
image: ${BOB_GETH_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-geth}:${BOB_SEPOLIA_GETH_VERSION:-v1.101702.2}
sysctls:
@@ -53,10 +69,9 @@ 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 'exec geth "$@"' --
entrypoint: /bin/sh -c '[ -f /config/genesis.json ] && geth --db.engine=pebble --gcmode=full --datadir /data init --state.scheme=hash /config/genesis.json; exec geth "$@"' --
command:
- --datadir=/data
- --db.engine=pebble
@@ -66,6 +81,7 @@ services:
- --metrics.addr=0.0.0.0
- --metrics.port=6060
- --nat=extip:${IP}
- --networkid=808813
- --port=12885
- --rpc.gascap=600000000
- --rpc.txfeecap=0
@@ -86,9 +102,13 @@ services:
- --authrpc.vhosts=*
restart: unless-stopped
stop_grace_period: 5m
depends_on:
bob-sepolia-init:
condition: service_completed_successfully
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_GETH_PRUNED_PEBBLE_HASH_CONFIG:-bob-sepolia-op-geth-pruned-pebble-hash_config}:/config
- ${BOB_SEPOLIA_OP_GETH_PRUNED_PEBBLE_HASH_DATA:-bob-sepolia-op-geth-pruned-pebble-hash}:/data
- .jwtsecret:/jwtsecret:ro
- /slowdisk:/slowdisk
@@ -106,6 +126,21 @@ services:
- ${NO_SSL:+traefik.http.routers.bob-sepolia-op-geth-pruned-pebble-hash.rule=Path(`/bob-sepolia`) || Path(`/bob-sepolia/`)}
- traefik.http.routers.bob-sepolia-op-geth-pruned-pebble-hash.middlewares=bob-sepolia-op-geth-pruned-pebble-hash-stripprefix, ipallowlist
bob-sepolia-node-init:
image: alpine:3.20
entrypoint: [/bin/sh, -c]
command:
- |
apk add --no-cache ca-certificates curl
mkdir -p /config
[ -f /config/rollup.json ] || curl -fsSL -o /config/rollup.json "https://api.conduit.xyz/file/v1/optimism/rollup/bob-sepolia-dm6uw0yhh3"
restart: no
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_GETH_PRUNED_PEBBLE_HASH_NODE_CONFIG:-bob-sepolia-op-geth-pruned-pebble-hash_node_config}:/config
logging: *logging-defaults
bob-sepolia-node:
image: ${BOB_NODE_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node}:${BOB_SEPOLIA_NODE_VERSION:-v1.19.0}
ports:
@@ -124,12 +159,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=17885
- OP_NODE_P2P_LISTEN_UDP_PORT=17885
- 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
@@ -139,10 +174,14 @@ services:
entrypoint: [op-node]
restart: unless-stopped
depends_on:
- bob-sepolia
bob-sepolia-node-init:
condition: service_completed_successfully
bob-sepolia:
condition: service_started
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_GETH_PRUNED_PEBBLE_HASH_NODE_CONFIG:-bob-sepolia-op-geth-pruned-pebble-hash_node_config}:/config
- .jwtsecret:/jwtsecret:ro
logging: *logging-defaults
labels:
@@ -160,6 +199,11 @@ services:
volumes:
bob-sepolia-op-geth-pruned-pebble-hash:
bob-sepolia-op-geth-pruned-pebble-hash_config:
bob-sepolia-op-geth-pruned-pebble-hash_node_config:
x-ephemeral-volumes:
- bob-sepolia-op-geth-pruned-pebble-hash_config
x-upstreams:
- id: $${ID}

View File

@@ -29,6 +29,22 @@ x-logging-defaults: &logging-defaults
# --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
services:
bob-sepolia-init:
image: alpine:3.21
user: root
entrypoint: [/bin/sh, -c]
command:
- |
apk add --no-cache curl wget
mkdir -p /config
[ -f /config/genesis.json ] || curl -fsSL -o /config/genesis.json "https://api.conduit.xyz/file/v1/optimism/genesis/bob-sepolia-dm6uw0yhh3"
restart: no
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_GETH_PRUNED_PEBBLE_PATH_CONFIG:-bob-sepolia-op-geth-pruned-pebble-path_config}:/config
logging: *logging-defaults
bob-sepolia:
image: ${BOB_GETH_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-geth}:${BOB_SEPOLIA_GETH_VERSION:-v1.101702.2}
sysctls:
@@ -53,10 +69,9 @@ 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 'exec geth "$@"' --
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 "$@"' --
command:
- --datadir=/data
- --db.engine=pebble
@@ -66,6 +81,7 @@ services:
- --metrics.addr=0.0.0.0
- --metrics.port=6060
- --nat=extip:${IP}
- --networkid=808813
- --port=13979
- --rpc.gascap=600000000
- --rpc.txfeecap=0
@@ -86,9 +102,13 @@ services:
- --authrpc.vhosts=*
restart: unless-stopped
stop_grace_period: 5m
depends_on:
bob-sepolia-init:
condition: service_completed_successfully
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_GETH_PRUNED_PEBBLE_PATH_CONFIG:-bob-sepolia-op-geth-pruned-pebble-path_config}:/config
- ${BOB_SEPOLIA_OP_GETH_PRUNED_PEBBLE_PATH_DATA:-bob-sepolia-op-geth-pruned-pebble-path}:/data
- .jwtsecret:/jwtsecret:ro
- /slowdisk:/slowdisk
@@ -106,6 +126,21 @@ services:
- ${NO_SSL:+traefik.http.routers.bob-sepolia-op-geth-pruned-pebble-path.rule=Path(`/bob-sepolia`) || Path(`/bob-sepolia/`)}
- traefik.http.routers.bob-sepolia-op-geth-pruned-pebble-path.middlewares=bob-sepolia-op-geth-pruned-pebble-path-stripprefix, ipallowlist
bob-sepolia-node-init:
image: alpine:3.20
entrypoint: [/bin/sh, -c]
command:
- |
apk add --no-cache ca-certificates curl
mkdir -p /config
[ -f /config/rollup.json ] || curl -fsSL -o /config/rollup.json "https://api.conduit.xyz/file/v1/optimism/rollup/bob-sepolia-dm6uw0yhh3"
restart: no
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_GETH_PRUNED_PEBBLE_PATH_NODE_CONFIG:-bob-sepolia-op-geth-pruned-pebble-path_node_config}:/config
logging: *logging-defaults
bob-sepolia-node:
image: ${BOB_NODE_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node}:${BOB_SEPOLIA_NODE_VERSION:-v1.19.0}
ports:
@@ -124,12 +159,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
@@ -139,10 +174,14 @@ services:
entrypoint: [op-node]
restart: unless-stopped
depends_on:
- bob-sepolia
bob-sepolia-node-init:
condition: service_completed_successfully
bob-sepolia:
condition: service_started
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_GETH_PRUNED_PEBBLE_PATH_NODE_CONFIG:-bob-sepolia-op-geth-pruned-pebble-path_node_config}:/config
- .jwtsecret:/jwtsecret:ro
logging: *logging-defaults
labels:
@@ -160,6 +199,11 @@ services:
volumes:
bob-sepolia-op-geth-pruned-pebble-path:
bob-sepolia-op-geth-pruned-pebble-path_config:
bob-sepolia-op-geth-pruned-pebble-path_node_config:
x-ephemeral-volumes:
- bob-sepolia-op-geth-pruned-pebble-path_config
x-upstreams:
- id: $${ID}

View File

@@ -29,6 +29,22 @@ x-logging-defaults: &logging-defaults
# --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
services:
bob-sepolia-op-reth-init:
image: alpine:3.21
user: root
entrypoint: [/bin/sh, -c]
command:
- |
apk add --no-cache curl wget
mkdir -p /config
[ -f /config/genesis.json ] || curl -fsSL -o /config/genesis.json "https://api.conduit.xyz/file/v1/optimism/genesis/bob-sepolia-dm6uw0yhh3"
restart: no
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_RETH_ARCHIVE_TRACE_CONFIG:-bob-sepolia-op-reth-archive-trace_config}:/config
logging: *logging-defaults
bob-sepolia-op-reth:
image: ${BOB_RETH_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-reth}:${BOB_SEPOLIA_RETH_VERSION:-v2.3.0}
sysctls:
@@ -55,7 +71,7 @@ services:
- 8551
entrypoint: [op-reth, node]
command:
- --chain=bob-sepolia
- --chain=/config/genesis.json
- --datadir=/root/.local/share/reth
- --engine.cross-block-cache-size=${BOB_SEPOLIA_RETH_STATE_CACHE:-4096}
- --max-inbound-peers=50
@@ -85,9 +101,13 @@ services:
- --authrpc.jwtsecret=/jwtsecret
restart: unless-stopped
stop_grace_period: 5m
depends_on:
bob-sepolia-op-reth-init:
condition: service_completed_successfully
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_RETH_ARCHIVE_TRACE_CONFIG:-bob-sepolia-op-reth-archive-trace_config}:/config
- ${BOB_SEPOLIA_OP_RETH_ARCHIVE_TRACE_DATA:-bob-sepolia-op-reth-archive-trace}:/root/.local/share/reth
- .jwtsecret:/jwtsecret:ro
- /slowdisk:/slowdisk
@@ -106,6 +126,21 @@ services:
- traefik.http.routers.bob-sepolia-op-reth-archive-trace.middlewares=bob-sepolia-op-reth-archive-trace-stripprefix, ipallowlist
shm_size: 2gb
bob-sepolia-op-reth-node-init:
image: alpine:3.20
entrypoint: [/bin/sh, -c]
command:
- |
apk add --no-cache ca-certificates curl
mkdir -p /config
[ -f /config/rollup.json ] || curl -fsSL -o /config/rollup.json "https://api.conduit.xyz/file/v1/optimism/rollup/bob-sepolia-dm6uw0yhh3"
restart: no
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_RETH_ARCHIVE_TRACE_NODE_CONFIG:-bob-sepolia-op-reth-archive-trace_node_config}:/config
logging: *logging-defaults
bob-sepolia-op-reth-node:
image: ${BOB_NODE_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node}:${BOB_SEPOLIA_NODE_VERSION:-v1.19.0}
ports:
@@ -125,12 +160,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=17060
- OP_NODE_P2P_LISTEN_UDP_PORT=17060
- 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
@@ -140,10 +175,14 @@ services:
entrypoint: [op-node]
restart: unless-stopped
depends_on:
- bob-sepolia-op-reth
bob-sepolia-op-reth-node-init:
condition: service_completed_successfully
bob-sepolia-op-reth:
condition: service_started
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_RETH_ARCHIVE_TRACE_NODE_CONFIG:-bob-sepolia-op-reth-archive-trace_node_config}:/config
- .jwtsecret:/jwtsecret:ro
logging: *logging-defaults
labels:
@@ -161,6 +200,11 @@ services:
volumes:
bob-sepolia-op-reth-archive-trace:
bob-sepolia-op-reth-archive-trace_config:
bob-sepolia-op-reth-archive-trace_node_config:
x-ephemeral-volumes:
- bob-sepolia-op-reth-archive-trace_config
x-upstreams:
- id: $${ID}

View File

@@ -29,6 +29,22 @@ x-logging-defaults: &logging-defaults
# --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
services:
bob-sepolia-op-reth-minimal-init:
image: alpine:3.21
user: root
entrypoint: [/bin/sh, -c]
command:
- |
apk add --no-cache curl wget
mkdir -p /config
[ -f /config/genesis.json ] || curl -fsSL -o /config/genesis.json "https://api.conduit.xyz/file/v1/optimism/genesis/bob-sepolia-dm6uw0yhh3"
restart: no
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_RETH_MINIMAL_TRACE_CONFIG:-bob-sepolia-op-reth-minimal-trace_config}:/config
logging: *logging-defaults
bob-sepolia-op-reth-minimal:
image: ${BOB_RETH_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-reth}:${BOB_SEPOLIA_RETH_VERSION:-v2.3.0}
sysctls:
@@ -55,7 +71,7 @@ services:
- 8551
entrypoint: [op-reth, node]
command:
- --chain=bob-sepolia
- --chain=/config/genesis.json
- --datadir=/root/.local/share/reth
- --engine.cross-block-cache-size=${BOB_SEPOLIA_RETH_STATE_CACHE:-4096}
- --max-inbound-peers=50
@@ -85,9 +101,13 @@ services:
- --authrpc.jwtsecret=/jwtsecret
restart: unless-stopped
stop_grace_period: 5m
depends_on:
bob-sepolia-op-reth-minimal-init:
condition: service_completed_successfully
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_RETH_MINIMAL_TRACE_CONFIG:-bob-sepolia-op-reth-minimal-trace_config}:/config
- ${BOB_SEPOLIA_OP_RETH_MINIMAL_TRACE_DATA:-bob-sepolia-op-reth-minimal-trace}:/root/.local/share/reth
- .jwtsecret:/jwtsecret:ro
- /slowdisk:/slowdisk
@@ -106,6 +126,21 @@ services:
- traefik.http.routers.bob-sepolia-op-reth-minimal-trace.middlewares=bob-sepolia-op-reth-minimal-trace-stripprefix, ipallowlist
shm_size: 2gb
bob-sepolia-op-reth-minimal-node-init:
image: alpine:3.20
entrypoint: [/bin/sh, -c]
command:
- |
apk add --no-cache ca-certificates curl
mkdir -p /config
[ -f /config/rollup.json ] || curl -fsSL -o /config/rollup.json "https://api.conduit.xyz/file/v1/optimism/rollup/bob-sepolia-dm6uw0yhh3"
restart: no
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_RETH_MINIMAL_TRACE_NODE_CONFIG:-bob-sepolia-op-reth-minimal-trace_node_config}:/config
logging: *logging-defaults
bob-sepolia-op-reth-minimal-node:
image: ${BOB_NODE_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node}:${BOB_SEPOLIA_NODE_VERSION:-v1.19.0}
ports:
@@ -125,12 +160,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=15448
- OP_NODE_P2P_LISTEN_UDP_PORT=15448
- 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
@@ -140,10 +175,14 @@ services:
entrypoint: [op-node]
restart: unless-stopped
depends_on:
- bob-sepolia-op-reth-minimal
bob-sepolia-op-reth-minimal-node-init:
condition: service_completed_successfully
bob-sepolia-op-reth-minimal:
condition: service_started
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_RETH_MINIMAL_TRACE_NODE_CONFIG:-bob-sepolia-op-reth-minimal-trace_node_config}:/config
- .jwtsecret:/jwtsecret:ro
logging: *logging-defaults
labels:
@@ -161,6 +200,11 @@ services:
volumes:
bob-sepolia-op-reth-minimal-trace:
bob-sepolia-op-reth-minimal-trace_config:
bob-sepolia-op-reth-minimal-trace_node_config:
x-ephemeral-volumes:
- bob-sepolia-op-reth-minimal-trace_config
x-upstreams:
- id: $${ID}

View File

@@ -29,6 +29,22 @@ x-logging-defaults: &logging-defaults
# --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
services:
bob-sepolia-op-reth-pruned-init:
image: alpine:3.21
user: root
entrypoint: [/bin/sh, -c]
command:
- |
apk add --no-cache curl wget
mkdir -p /config
[ -f /config/genesis.json ] || curl -fsSL -o /config/genesis.json "https://api.conduit.xyz/file/v1/optimism/genesis/bob-sepolia-dm6uw0yhh3"
restart: no
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_RETH_PRUNED_TRACE_CONFIG:-bob-sepolia-op-reth-pruned-trace_config}:/config
logging: *logging-defaults
bob-sepolia-op-reth-pruned:
image: ${BOB_RETH_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-reth}:${BOB_SEPOLIA_RETH_VERSION:-v2.3.0}
sysctls:
@@ -55,7 +71,7 @@ services:
- 8551
entrypoint: [op-reth, node]
command:
- --chain=bob-sepolia
- --chain=/config/genesis.json
- --datadir=/root/.local/share/reth
- --engine.cross-block-cache-size=${BOB_SEPOLIA_RETH_STATE_CACHE:-4096}
- --full
@@ -86,9 +102,13 @@ services:
- --authrpc.jwtsecret=/jwtsecret
restart: unless-stopped
stop_grace_period: 5m
depends_on:
bob-sepolia-op-reth-pruned-init:
condition: service_completed_successfully
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_RETH_PRUNED_TRACE_CONFIG:-bob-sepolia-op-reth-pruned-trace_config}:/config
- ${BOB_SEPOLIA_OP_RETH_PRUNED_TRACE_DATA:-bob-sepolia-op-reth-pruned-trace}:/root/.local/share/reth
- .jwtsecret:/jwtsecret:ro
- /slowdisk:/slowdisk
@@ -107,6 +127,21 @@ services:
- traefik.http.routers.bob-sepolia-op-reth-pruned-trace.middlewares=bob-sepolia-op-reth-pruned-trace-stripprefix, ipallowlist
shm_size: 2gb
bob-sepolia-op-reth-pruned-node-init:
image: alpine:3.20
entrypoint: [/bin/sh, -c]
command:
- |
apk add --no-cache ca-certificates curl
mkdir -p /config
[ -f /config/rollup.json ] || curl -fsSL -o /config/rollup.json "https://api.conduit.xyz/file/v1/optimism/rollup/bob-sepolia-dm6uw0yhh3"
restart: no
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_RETH_PRUNED_TRACE_NODE_CONFIG:-bob-sepolia-op-reth-pruned-trace_node_config}:/config
logging: *logging-defaults
bob-sepolia-op-reth-pruned-node:
image: ${BOB_NODE_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node}:${BOB_SEPOLIA_NODE_VERSION:-v1.19.0}
ports:
@@ -126,12 +161,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=16923
- OP_NODE_P2P_LISTEN_UDP_PORT=16923
- 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
@@ -141,10 +176,14 @@ services:
entrypoint: [op-node]
restart: unless-stopped
depends_on:
- bob-sepolia-op-reth-pruned
bob-sepolia-op-reth-pruned-node-init:
condition: service_completed_successfully
bob-sepolia-op-reth-pruned:
condition: service_started
networks:
- chains
volumes:
- ${BOB_SEPOLIA_OP_RETH_PRUNED_TRACE_NODE_CONFIG:-bob-sepolia-op-reth-pruned-trace_node_config}:/config
- .jwtsecret:/jwtsecret:ro
logging: *logging-defaults
labels:
@@ -162,6 +201,11 @@ services:
volumes:
bob-sepolia-op-reth-pruned-trace:
bob-sepolia-op-reth-pruned-trace_config:
bob-sepolia-op-reth-pruned-trace_node_config:
x-ephemeral-volumes:
- bob-sepolia-op-reth-pruned-trace_config
x-upstreams:
- id: $${ID}

View File

@@ -934,8 +934,7 @@
"https://developer-access-mainnet.base.org/",
"https://base.gateway.tenderly.co",
"https://base-rpc.publicnode.com",
"https://rpcfree.com/base-rpc",
"https://rpc.baseazul.dev"
"https://rpcfree.com/base-rpc"
]
},
"evmos-testnet": {
@@ -1557,19 +1556,6 @@
"https://api.zan.top/node/v1/jovay/mainnet/${ZAN_API_KEY}"
]
},
"humanity": {
"id": 6985385,
"urls": [
"https://humanity-mainnet.g.alchemy.com/public"
]
},
"humanity-testnet": {
"id": 7080969,
"urls": [
"https://rpc.testnet.humanity.org",
"https://humanity-testnet.g.alchemy.com/public"
]
},
"zora": {
"id": 7777777,
"urls": [