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-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}