soneium
This commit is contained in:
@@ -20,17 +20,17 @@ x-logging-defaults: &logging-defaults
|
|||||||
# ...
|
# ...
|
||||||
# IP=$(curl ipinfo.io/ip)
|
# IP=$(curl ipinfo.io/ip)
|
||||||
# DOMAIN=${IP}.traefik.me
|
# DOMAIN=${IP}.traefik.me
|
||||||
# COMPOSE_FILE=base.yml:rpc.yml:op/erigon/soneium-minato-op-erigon-archive-trace.yml
|
# COMPOSE_FILE=base.yml:rpc.yml:op/erigon/soneium-mainnet-op-erigon-archive-trace.yml
|
||||||
#
|
#
|
||||||
# docker compose up -d
|
# docker compose up -d
|
||||||
#
|
#
|
||||||
# curl -X POST https://${IP}.traefik.me/soneium-minato-op-erigon \
|
# curl -X POST https://${IP}.traefik.me/soneium-mainnet-op-erigon \
|
||||||
# -H "Content-Type: application/json" \
|
# -H "Content-Type: application/json" \
|
||||||
# --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
|
# --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
soneium-minato-op-erigon:
|
soneium-mainnet-op-erigon:
|
||||||
image: ${SONEIUM_ERIGON_IMAGE:-testinprod/op-erigon}:${SONEIUM_MINATO_ERIGON_VERSION:-v2.61.3-0.9.5}
|
image: ${SONEIUM_ERIGON_IMAGE:-testinprod/op-erigon}:${SONEIUM_MAINNET_ERIGON_VERSION:-v2.61.3-0.9.5}
|
||||||
sysctls:
|
sysctls:
|
||||||
# TCP Performance
|
# TCP Performance
|
||||||
net.ipv4.tcp_slow_start_after_idle: 0 # Disable slow start after idle
|
net.ipv4.tcp_slow_start_after_idle: 0 # Disable slow start after idle
|
||||||
@@ -47,29 +47,29 @@ services:
|
|||||||
memlock: -1 # Disable memory locking limits (for in-memory DBs like MDBX)
|
memlock: -1 # Disable memory locking limits (for in-memory DBs like MDBX)
|
||||||
user: root
|
user: root
|
||||||
ports:
|
ports:
|
||||||
- 13314:13314
|
- 13689:13689
|
||||||
- 13314:13314/udp
|
- 13689:13689/udp
|
||||||
- 33314:33314
|
- 33689:33689
|
||||||
- 33314:33314/udp
|
- 33689:33689/udp
|
||||||
- 38314:38314
|
- 38689:38689
|
||||||
- 38314:38314/udp
|
- 38689:38689/udp
|
||||||
expose:
|
expose:
|
||||||
- 8545
|
- 8545
|
||||||
- 6060
|
- 6060
|
||||||
- 8551
|
- 8551
|
||||||
entrypoint: [erigon]
|
entrypoint: [erigon]
|
||||||
command:
|
command:
|
||||||
- --chain=soneium-minato
|
- --chain=soneium-mainnet
|
||||||
- --datadir=/root/.local/share/erigon
|
- --datadir=/root/.local/share/erigon
|
||||||
- --maxpeers=50
|
- --maxpeers=50
|
||||||
- --metrics
|
- --metrics
|
||||||
- --metrics.addr=0.0.0.0
|
- --metrics.addr=0.0.0.0
|
||||||
- --metrics.port=6060
|
- --metrics.port=6060
|
||||||
- --nat=extip:${IP}
|
- --nat=extip:${IP}
|
||||||
- --p2p.allowed-ports=33314
|
- --p2p.allowed-ports=33689
|
||||||
- --p2p.allowed-ports=38314
|
- --p2p.allowed-ports=38689
|
||||||
- --port=13314
|
- --port=13689
|
||||||
- --rollup.sequencerhttp=https://rpc.minato.soneium.org
|
- --rollup.sequencerhttp=https://rpc.soneium.org
|
||||||
- --rpc.gascap=6000000000
|
- --rpc.gascap=6000000000
|
||||||
- --rpc.returndata.limit=1500000
|
- --rpc.returndata.limit=1500000
|
||||||
- --http
|
- --http
|
||||||
@@ -87,7 +87,7 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- chains
|
- chains
|
||||||
volumes:
|
volumes:
|
||||||
- ${SONEIUM_MINATO_OP_ERIGON_ARCHIVE_TRACE_DATA:-soneium-minato-op-erigon-archive-trace}:/root/.local/share/erigon
|
- ${SONEIUM_MAINNET_OP_ERIGON_ARCHIVE_TRACE_DATA:-soneium-mainnet-op-erigon-archive-trace}:/root/.local/share/erigon
|
||||||
- .jwtsecret:/jwtsecret:ro
|
- .jwtsecret:/jwtsecret:ro
|
||||||
- /slowdisk:/slowdisk
|
- /slowdisk:/slowdisk
|
||||||
logging: *logging-defaults
|
logging: *logging-defaults
|
||||||
@@ -96,41 +96,40 @@ services:
|
|||||||
- prometheus-scrape.port=6060
|
- prometheus-scrape.port=6060
|
||||||
- prometheus-scrape.path=/debug/metrics/prometheus
|
- prometheus-scrape.path=/debug/metrics/prometheus
|
||||||
- traefik.enable=true
|
- traefik.enable=true
|
||||||
- traefik.http.middlewares.soneium-minato-op-erigon-archive-trace-stripprefix.stripprefix.prefixes=/soneium-minato-op-erigon
|
- traefik.http.middlewares.soneium-mainnet-op-erigon-archive-trace-stripprefix.stripprefix.prefixes=/soneium-mainnet-op-erigon
|
||||||
- traefik.http.services.soneium-minato-op-erigon-archive-trace.loadbalancer.server.port=8545
|
- traefik.http.services.soneium-mainnet-op-erigon-archive-trace.loadbalancer.server.port=8545
|
||||||
- ${NO_SSL:-traefik.http.routers.soneium-minato-op-erigon-archive-trace.entrypoints=websecure}
|
- ${NO_SSL:-traefik.http.routers.soneium-mainnet-op-erigon-archive-trace.entrypoints=websecure}
|
||||||
- ${NO_SSL:-traefik.http.routers.soneium-minato-op-erigon-archive-trace.tls.certresolver=myresolver}
|
- ${NO_SSL:-traefik.http.routers.soneium-mainnet-op-erigon-archive-trace.tls.certresolver=myresolver}
|
||||||
- ${NO_SSL:-traefik.http.routers.soneium-minato-op-erigon-archive-trace.rule=Host(`$DOMAIN`) && (Path(`/soneium-minato-op-erigon`) || Path(`/soneium-minato-op-erigon/`))}
|
- ${NO_SSL:-traefik.http.routers.soneium-mainnet-op-erigon-archive-trace.rule=Host(`$DOMAIN`) && (Path(`/soneium-mainnet-op-erigon`) || Path(`/soneium-mainnet-op-erigon/`))}
|
||||||
- ${NO_SSL:+traefik.http.routers.soneium-minato-op-erigon-archive-trace.rule=Path(`/soneium-minato-op-erigon`) || Path(`/soneium-minato-op-erigon/`)}
|
- ${NO_SSL:+traefik.http.routers.soneium-mainnet-op-erigon-archive-trace.rule=Path(`/soneium-mainnet-op-erigon`) || Path(`/soneium-mainnet-op-erigon/`)}
|
||||||
- traefik.http.routers.soneium-minato-op-erigon-archive-trace.middlewares=soneium-minato-op-erigon-archive-trace-stripprefix, ipallowlist
|
- traefik.http.routers.soneium-mainnet-op-erigon-archive-trace.middlewares=soneium-mainnet-op-erigon-archive-trace-stripprefix, ipallowlist
|
||||||
shm_size: 2gb
|
shm_size: 2gb
|
||||||
|
|
||||||
soneium-minato-op-erigon-node:
|
soneium-mainnet-op-erigon-node:
|
||||||
image: ${SONEIUM_NODE_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node}:${SONEIUM_MINATO_NODE_VERSION:-v1.13.7}
|
image: ${SONEIUM_NODE_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node}:${SONEIUM_MAINNET_NODE_VERSION:-v1.13.7}
|
||||||
ports:
|
ports:
|
||||||
- 18314:18314
|
- 18689:18689
|
||||||
- 18314:18314/udp
|
- 18689:18689/udp
|
||||||
environment:
|
environment:
|
||||||
- OP_NODE_L1_BEACON=${ETHEREUM_SEPOLIA_BEACON_REST}
|
- OP_NODE_L1_BEACON=${ETHEREUM_MAINNET_BEACON_REST}
|
||||||
- OP_NODE_L1_BEACON_ARCHIVER=${ETHEREUM_SEPOLIA_BEACON_ARCHIVER}
|
- OP_NODE_L1_BEACON_ARCHIVER=${ETHEREUM_MAINNET_BEACON_ARCHIVER}
|
||||||
- OP_NODE_L1_ETH_RPC=${ETHEREUM_SEPOLIA_EXECUTION_RPC}
|
- OP_NODE_L1_ETH_RPC=${ETHEREUM_MAINNET_EXECUTION_RPC}
|
||||||
- OP_NODE_L1_RPC_KIND=${ETHEREUM_SEPOLIA_EXECUTION_KIND:-basic}
|
- OP_NODE_L1_RPC_KIND=${ETHEREUM_MAINNET_EXECUTION_KIND:-basic}
|
||||||
- OP_NODE_L1_TRUST_RPC=${ETHEREUM_SEPOLIA_EXECUTION_TRUST:-false}
|
- OP_NODE_L1_TRUST_RPC=${ETHEREUM_MAINNET_EXECUTION_TRUST:-false}
|
||||||
- OP_NODE_L2_ENGINE_AUTH=/jwtsecret
|
- OP_NODE_L2_ENGINE_AUTH=/jwtsecret
|
||||||
- OP_NODE_L2_ENGINE_KIND=erigon
|
- OP_NODE_L2_ENGINE_KIND=erigon
|
||||||
- OP_NODE_L2_ENGINE_RPC=http://soneium-minato-op-erigon:8551
|
- OP_NODE_L2_ENGINE_RPC=http://soneium-mainnet-op-erigon:8551
|
||||||
- OP_NODE_L2_SKIP_SYNC_START_CHECK=true
|
- OP_NODE_L2_SKIP_SYNC_START_CHECK=true
|
||||||
- OP_NODE_LOG_LEVEL=info
|
- OP_NODE_LOG_LEVEL=info
|
||||||
- OP_NODE_METRICS_ADDR=0.0.0.0
|
- OP_NODE_METRICS_ADDR=0.0.0.0
|
||||||
- OP_NODE_METRICS_ENABLED=true
|
- OP_NODE_METRICS_ENABLED=true
|
||||||
- OP_NODE_METRICS_PORT=7300
|
- OP_NODE_METRICS_PORT=7300
|
||||||
- OP_NODE_METRIC_ENABLED=true
|
- OP_NODE_METRIC_ENABLED=true
|
||||||
- OP_NODE_NETWORK=soneium-minato
|
- OP_NODE_NETWORK=soneium-mainnet
|
||||||
- OP_NODE_OVERRIDE_PECTRABLOBSCHEDULE=1742486400
|
|
||||||
- OP_NODE_P2P_ADVERTISE_IP=${IP}
|
- OP_NODE_P2P_ADVERTISE_IP=${IP}
|
||||||
- OP_NODE_P2P_LISTEN_IP=0.0.0.0
|
- OP_NODE_P2P_LISTEN_IP=0.0.0.0
|
||||||
- OP_NODE_P2P_LISTEN_TCP_PORT=18314
|
- OP_NODE_P2P_LISTEN_TCP_PORT=18689
|
||||||
- OP_NODE_P2P_LISTEN_UDP_PORT=18314
|
- OP_NODE_P2P_LISTEN_UDP_PORT=18689
|
||||||
- OP_NODE_ROLLUP_LOAD_PROTOCOL_VERSIONS=true
|
- OP_NODE_ROLLUP_LOAD_PROTOCOL_VERSIONS=true
|
||||||
- OP_NODE_RPC_ADDR=0.0.0.0
|
- OP_NODE_RPC_ADDR=0.0.0.0
|
||||||
- OP_NODE_RPC_PORT=8545
|
- OP_NODE_RPC_PORT=8545
|
||||||
@@ -140,7 +139,7 @@ services:
|
|||||||
entrypoint: [op-node]
|
entrypoint: [op-node]
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
depends_on:
|
depends_on:
|
||||||
- soneium-minato-op-erigon
|
- soneium-mainnet-op-erigon
|
||||||
networks:
|
networks:
|
||||||
- chains
|
- chains
|
||||||
volumes:
|
volumes:
|
||||||
@@ -151,16 +150,16 @@ services:
|
|||||||
- prometheus-scrape.port=7300
|
- prometheus-scrape.port=7300
|
||||||
- prometheus-scrape.path=/metrics
|
- prometheus-scrape.path=/metrics
|
||||||
- traefik.enable=true
|
- traefik.enable=true
|
||||||
- traefik.http.middlewares.soneium-minato-op-erigon-archive-trace-node-stripprefix.stripprefix.prefixes=/soneium-minato-op-erigon/node
|
- traefik.http.middlewares.soneium-mainnet-op-erigon-archive-trace-node-stripprefix.stripprefix.prefixes=/soneium-mainnet-op-erigon/node
|
||||||
- traefik.http.services.soneium-minato-op-erigon-archive-trace-node.loadbalancer.server.port=8547
|
- traefik.http.services.soneium-mainnet-op-erigon-archive-trace-node.loadbalancer.server.port=8547
|
||||||
- ${NO_SSL:-traefik.http.routers.soneium-minato-op-erigon-archive-trace-node.entrypoints=websecure}
|
- ${NO_SSL:-traefik.http.routers.soneium-mainnet-op-erigon-archive-trace-node.entrypoints=websecure}
|
||||||
- ${NO_SSL:-traefik.http.routers.soneium-minato-op-erigon-archive-trace-node.tls.certresolver=myresolver}
|
- ${NO_SSL:-traefik.http.routers.soneium-mainnet-op-erigon-archive-trace-node.tls.certresolver=myresolver}
|
||||||
- ${NO_SSL:-traefik.http.routers.soneium-minato-op-erigon-archive-trace-node.rule=Host(`$DOMAIN`) && PathPrefix(`soneium-minato-op-erigon/node`)}
|
- ${NO_SSL:-traefik.http.routers.soneium-mainnet-op-erigon-archive-trace-node.rule=Host(`$DOMAIN`) && PathPrefix(`soneium-mainnet-op-erigon/node`)}
|
||||||
- ${NO_SSL:+traefik.http.routers.soneium-minato-op-erigon-archive-trace-node.rule=PathPrefix(`soneium-minato-op-erigon/node`)}
|
- ${NO_SSL:+traefik.http.routers.soneium-mainnet-op-erigon-archive-trace-node.rule=PathPrefix(`soneium-mainnet-op-erigon/node`)}
|
||||||
- traefik.http.routers.soneium-minato-op-erigon-archive-trace-node.middlewares=soneium-minato-op-erigon-archive-trace-node-stripprefix, ipallowlist
|
- traefik.http.routers.soneium-mainnet-op-erigon-archive-trace-node.middlewares=soneium-mainnet-op-erigon-archive-trace-node-stripprefix, ipallowlist
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
soneium-minato-op-erigon-archive-trace:
|
soneium-mainnet-op-erigon-archive-trace:
|
||||||
|
|
||||||
x-upstreams:
|
x-upstreams:
|
||||||
- id: $${ID}
|
- id: $${ID}
|
||||||
@@ -174,7 +173,7 @@ x-upstreams:
|
|||||||
frameSize: 20Mb
|
frameSize: 20Mb
|
||||||
msgSize: 50Mb
|
msgSize: 50Mb
|
||||||
url: $${WS_URL}
|
url: $${WS_URL}
|
||||||
chain: soneium-minato
|
chain: soneium
|
||||||
method-groups:
|
method-groups:
|
||||||
enabled:
|
enabled:
|
||||||
- debug
|
- debug
|
||||||
208
op/erigon/soneium-minato-sepolia-op-erigon-archive-trace.yml
Normal file
208
op/erigon/soneium-minato-sepolia-op-erigon-archive-trace.yml
Normal file
@@ -0,0 +1,208 @@
|
|||||||
|
---
|
||||||
|
x-logging-defaults: &logging-defaults
|
||||||
|
driver: json-file
|
||||||
|
options:
|
||||||
|
max-size: "10m"
|
||||||
|
max-file: "3"
|
||||||
|
|
||||||
|
# Usage:
|
||||||
|
#
|
||||||
|
# mkdir rpc && cd rpc
|
||||||
|
#
|
||||||
|
# git init
|
||||||
|
# git remote add origin https://github.com/StakeSquid/ethereum-rpc-docker.git
|
||||||
|
# git fetch origin vibe
|
||||||
|
# git checkout origin/vibe
|
||||||
|
#
|
||||||
|
# docker run --rm alpine sh -c "printf '0x'; head -c32 /dev/urandom | xxd -p -c 64" > .jwtsecret
|
||||||
|
#
|
||||||
|
# env
|
||||||
|
# ...
|
||||||
|
# IP=$(curl ipinfo.io/ip)
|
||||||
|
# DOMAIN=${IP}.traefik.me
|
||||||
|
# COMPOSE_FILE=base.yml:rpc.yml:op/erigon/soneium-minato-sepolia-op-erigon-archive-trace.yml
|
||||||
|
#
|
||||||
|
# docker compose up -d
|
||||||
|
#
|
||||||
|
# curl -X POST https://${IP}.traefik.me/soneium-minato-sepolia-op-erigon \
|
||||||
|
# -H "Content-Type: application/json" \
|
||||||
|
# --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
|
||||||
|
|
||||||
|
services:
|
||||||
|
soneium-minato-sepolia-op-erigon:
|
||||||
|
image: ${SONEIUM_ERIGON_IMAGE:-testinprod/op-erigon}:${SONEIUM_MINATO_SEPOLIA_ERIGON_VERSION:-v2.61.3-0.9.5}
|
||||||
|
sysctls:
|
||||||
|
# TCP Performance
|
||||||
|
net.ipv4.tcp_slow_start_after_idle: 0 # Disable slow start after idle
|
||||||
|
net.ipv4.tcp_no_metrics_save: 1 # Disable metrics cache
|
||||||
|
net.ipv4.tcp_rmem: 4096 87380 16777216 # Increase TCP read buffers
|
||||||
|
net.ipv4.tcp_wmem: 4096 87380 16777216 # Increase TCP write buffers
|
||||||
|
net.core.somaxconn: 32768 # Higher connection queue
|
||||||
|
# Memory/Connection Management
|
||||||
|
# net.core.netdev_max_backlog: 50000 # Increase network buffer
|
||||||
|
net.ipv4.tcp_max_syn_backlog: 30000 # More SYN requests
|
||||||
|
net.ipv4.tcp_max_tw_buckets: 2000000 # Allow more TIME_WAIT sockets
|
||||||
|
ulimits:
|
||||||
|
nofile: 1048576 # Max open files (for RPC/WS connections)
|
||||||
|
memlock: -1 # Disable memory locking limits (for in-memory DBs like MDBX)
|
||||||
|
user: root
|
||||||
|
ports:
|
||||||
|
- 12283:12283
|
||||||
|
- 12283:12283/udp
|
||||||
|
- 32283:32283
|
||||||
|
- 32283:32283/udp
|
||||||
|
- 37283:37283
|
||||||
|
- 37283:37283/udp
|
||||||
|
expose:
|
||||||
|
- 8545
|
||||||
|
- 6060
|
||||||
|
- 8551
|
||||||
|
entrypoint: [erigon]
|
||||||
|
command:
|
||||||
|
- --chain=soneium-minato-sepolia
|
||||||
|
- --datadir=/root/.local/share/erigon
|
||||||
|
- --maxpeers=50
|
||||||
|
- --metrics
|
||||||
|
- --metrics.addr=0.0.0.0
|
||||||
|
- --metrics.port=6060
|
||||||
|
- --nat=extip:${IP}
|
||||||
|
- --p2p.allowed-ports=32283
|
||||||
|
- --p2p.allowed-ports=37283
|
||||||
|
- --port=12283
|
||||||
|
- --rollup.sequencerhttp=https://rpc.soneium.org
|
||||||
|
- --rpc.gascap=6000000000
|
||||||
|
- --rpc.returndata.limit=1500000
|
||||||
|
- --http
|
||||||
|
- --http.addr=0.0.0.0
|
||||||
|
- --http.api=eth,erigon,web3,net,debug,trace,txpool,admin,engine
|
||||||
|
- --http.port=8545
|
||||||
|
- --http.vhosts=*
|
||||||
|
- --ws
|
||||||
|
- --ws.port=8545
|
||||||
|
- --authrpc.addr=0.0.0.0
|
||||||
|
- --authrpc.jwtsecret=/jwtsecret
|
||||||
|
- --authrpc.vhosts=*
|
||||||
|
restart: unless-stopped
|
||||||
|
stop_grace_period: 5m
|
||||||
|
networks:
|
||||||
|
- chains
|
||||||
|
volumes:
|
||||||
|
- ${SONEIUM_MINATO_SEPOLIA_OP_ERIGON_ARCHIVE_TRACE_DATA:-soneium-minato-sepolia-op-erigon-archive-trace}:/root/.local/share/erigon
|
||||||
|
- .jwtsecret:/jwtsecret:ro
|
||||||
|
- /slowdisk:/slowdisk
|
||||||
|
logging: *logging-defaults
|
||||||
|
labels:
|
||||||
|
- prometheus-scrape.enabled=true
|
||||||
|
- prometheus-scrape.port=6060
|
||||||
|
- prometheus-scrape.path=/debug/metrics/prometheus
|
||||||
|
- traefik.enable=true
|
||||||
|
- traefik.http.middlewares.soneium-minato-sepolia-op-erigon-archive-trace-stripprefix.stripprefix.prefixes=/soneium-minato-sepolia-op-erigon
|
||||||
|
- traefik.http.services.soneium-minato-sepolia-op-erigon-archive-trace.loadbalancer.server.port=8545
|
||||||
|
- ${NO_SSL:-traefik.http.routers.soneium-minato-sepolia-op-erigon-archive-trace.entrypoints=websecure}
|
||||||
|
- ${NO_SSL:-traefik.http.routers.soneium-minato-sepolia-op-erigon-archive-trace.tls.certresolver=myresolver}
|
||||||
|
- ${NO_SSL:-traefik.http.routers.soneium-minato-sepolia-op-erigon-archive-trace.rule=Host(`$DOMAIN`) && (Path(`/soneium-minato-sepolia-op-erigon`) || Path(`/soneium-minato-sepolia-op-erigon/`))}
|
||||||
|
- ${NO_SSL:+traefik.http.routers.soneium-minato-sepolia-op-erigon-archive-trace.rule=Path(`/soneium-minato-sepolia-op-erigon`) || Path(`/soneium-minato-sepolia-op-erigon/`)}
|
||||||
|
- traefik.http.routers.soneium-minato-sepolia-op-erigon-archive-trace.middlewares=soneium-minato-sepolia-op-erigon-archive-trace-stripprefix, ipallowlist
|
||||||
|
shm_size: 2gb
|
||||||
|
|
||||||
|
soneium-minato-sepolia-op-erigon-node:
|
||||||
|
image: ${SONEIUM_NODE_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node}:${SONEIUM_MINATO_SEPOLIA_NODE_VERSION:-v1.13.7}
|
||||||
|
ports:
|
||||||
|
- 17283:17283
|
||||||
|
- 17283:17283/udp
|
||||||
|
environment:
|
||||||
|
- OP_NODE_L1_BEACON=${ETHEREUM_MINATO-SEPOLIA_BEACON_REST}
|
||||||
|
- OP_NODE_L1_BEACON_ARCHIVER=${ETHEREUM_MINATO-SEPOLIA_BEACON_ARCHIVER}
|
||||||
|
- OP_NODE_L1_ETH_RPC=${ETHEREUM_MINATO-SEPOLIA_EXECUTION_RPC}
|
||||||
|
- OP_NODE_L1_RPC_KIND=${ETHEREUM_MINATO-SEPOLIA_EXECUTION_KIND:-basic}
|
||||||
|
- OP_NODE_L1_TRUST_RPC=${ETHEREUM_MINATO-SEPOLIA_EXECUTION_TRUST:-false}
|
||||||
|
- OP_NODE_L2_ENGINE_AUTH=/jwtsecret
|
||||||
|
- OP_NODE_L2_ENGINE_KIND=erigon
|
||||||
|
- OP_NODE_L2_ENGINE_RPC=http://soneium-minato-sepolia-op-erigon:8551
|
||||||
|
- OP_NODE_L2_SKIP_SYNC_START_CHECK=true
|
||||||
|
- OP_NODE_LOG_LEVEL=info
|
||||||
|
- OP_NODE_METRICS_ADDR=0.0.0.0
|
||||||
|
- OP_NODE_METRICS_ENABLED=true
|
||||||
|
- OP_NODE_METRICS_PORT=7300
|
||||||
|
- OP_NODE_METRIC_ENABLED=true
|
||||||
|
- OP_NODE_NETWORK=soneium-minato-sepolia
|
||||||
|
- OP_NODE_P2P_ADVERTISE_IP=${IP}
|
||||||
|
- OP_NODE_P2P_LISTEN_IP=0.0.0.0
|
||||||
|
- OP_NODE_P2P_LISTEN_TCP_PORT=17283
|
||||||
|
- OP_NODE_P2P_LISTEN_UDP_PORT=17283
|
||||||
|
- OP_NODE_ROLLUP_LOAD_PROTOCOL_VERSIONS=true
|
||||||
|
- OP_NODE_RPC_ADDR=0.0.0.0
|
||||||
|
- OP_NODE_RPC_PORT=8545
|
||||||
|
- OP_NODE_SNAPSHOT_LOG=/tmp/op-node-snapshot-log
|
||||||
|
- OP_NODE_SYNCMODE=execution-layer
|
||||||
|
- OP_NODE_VERIFIER_L1_CONFS=0
|
||||||
|
entrypoint: [op-node]
|
||||||
|
restart: unless-stopped
|
||||||
|
depends_on:
|
||||||
|
- soneium-minato-sepolia-op-erigon
|
||||||
|
networks:
|
||||||
|
- chains
|
||||||
|
volumes:
|
||||||
|
- .jwtsecret:/jwtsecret:ro
|
||||||
|
logging: *logging-defaults
|
||||||
|
labels:
|
||||||
|
- prometheus-scrape.enabled=true
|
||||||
|
- prometheus-scrape.port=7300
|
||||||
|
- prometheus-scrape.path=/metrics
|
||||||
|
- traefik.enable=true
|
||||||
|
- traefik.http.middlewares.soneium-minato-sepolia-op-erigon-archive-trace-node-stripprefix.stripprefix.prefixes=/soneium-minato-sepolia-op-erigon/node
|
||||||
|
- traefik.http.services.soneium-minato-sepolia-op-erigon-archive-trace-node.loadbalancer.server.port=8547
|
||||||
|
- ${NO_SSL:-traefik.http.routers.soneium-minato-sepolia-op-erigon-archive-trace-node.entrypoints=websecure}
|
||||||
|
- ${NO_SSL:-traefik.http.routers.soneium-minato-sepolia-op-erigon-archive-trace-node.tls.certresolver=myresolver}
|
||||||
|
- ${NO_SSL:-traefik.http.routers.soneium-minato-sepolia-op-erigon-archive-trace-node.rule=Host(`$DOMAIN`) && PathPrefix(`soneium-minato-sepolia-op-erigon/node`)}
|
||||||
|
- ${NO_SSL:+traefik.http.routers.soneium-minato-sepolia-op-erigon-archive-trace-node.rule=PathPrefix(`soneium-minato-sepolia-op-erigon/node`)}
|
||||||
|
- traefik.http.routers.soneium-minato-sepolia-op-erigon-archive-trace-node.middlewares=soneium-minato-sepolia-op-erigon-archive-trace-node-stripprefix, ipallowlist
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
soneium-minato-sepolia-op-erigon-archive-trace:
|
||||||
|
|
||||||
|
x-upstreams:
|
||||||
|
- id: $${ID}
|
||||||
|
labels:
|
||||||
|
provider: $${PROVIDER}
|
||||||
|
connection:
|
||||||
|
generic:
|
||||||
|
rpc:
|
||||||
|
url: $${RPC_URL}
|
||||||
|
ws:
|
||||||
|
frameSize: 20Mb
|
||||||
|
msgSize: 50Mb
|
||||||
|
url: $${WS_URL}
|
||||||
|
chain: soneium
|
||||||
|
method-groups:
|
||||||
|
enabled:
|
||||||
|
- debug
|
||||||
|
- filter
|
||||||
|
- trace
|
||||||
|
methods:
|
||||||
|
disabled:
|
||||||
|
enabled:
|
||||||
|
- name: txpool_content # TODO: should be disabled for rollup nodes
|
||||||
|
# standard geth and erigon
|
||||||
|
- name: debug_accountRange
|
||||||
|
- name: debug_getModifiedAccountsByNumber
|
||||||
|
- name: debug_getModifiedAccountsByHash
|
||||||
|
# non standard geth and erigon
|
||||||
|
- name: eth_getRawTransactionByHash
|
||||||
|
- name: eth_getRawTransactionByBlockHashAndIndex
|
||||||
|
# non standard erigon only
|
||||||
|
- name: eth_getBlockReceipts
|
||||||
|
- name: eth_protocolVersion
|
||||||
|
- name: eth_callMany
|
||||||
|
- name: eth_callBundle
|
||||||
|
- name: debug_accountAt
|
||||||
|
- name: debug_traceCallMany
|
||||||
|
- name: erigon_getHeaderByHash
|
||||||
|
- name: erigon_getBlockReceiptsByBlockHash
|
||||||
|
- name: erigon_getHeaderByNumber
|
||||||
|
- name: erigon_getLogsByHash
|
||||||
|
- name: erigon_forks
|
||||||
|
- name: erigon_getBlockByTimestamp
|
||||||
|
- name: erigon_BlockNumber
|
||||||
|
- name: erigon_getLatestLogs
|
||||||
|
...
|
||||||
@@ -20,17 +20,17 @@ x-logging-defaults: &logging-defaults
|
|||||||
# ...
|
# ...
|
||||||
# IP=$(curl ipinfo.io/ip)
|
# IP=$(curl ipinfo.io/ip)
|
||||||
# DOMAIN=${IP}.traefik.me
|
# DOMAIN=${IP}.traefik.me
|
||||||
# COMPOSE_FILE=base.yml:rpc.yml:op/geth/soneium-minato-op-geth-archive-leveldb-hash.yml
|
# COMPOSE_FILE=base.yml:rpc.yml:op/geth/soneium-mainnet-op-geth-archive-leveldb-hash.yml
|
||||||
#
|
#
|
||||||
# docker compose up -d
|
# docker compose up -d
|
||||||
#
|
#
|
||||||
# curl -X POST https://${IP}.traefik.me/soneium-minato-archive \
|
# curl -X POST https://${IP}.traefik.me/soneium-mainnet-archive \
|
||||||
# -H "Content-Type: application/json" \
|
# -H "Content-Type: application/json" \
|
||||||
# --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
|
# --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
soneium-minato-archive:
|
soneium-mainnet-archive:
|
||||||
image: ${SONEIUM_GETH_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-geth}:${SONEIUM_MINATO_GETH_VERSION:-v1.101602.3}
|
image: ${SONEIUM_GETH_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-geth}:${SONEIUM_MAINNET_GETH_VERSION:-v1.101602.3}
|
||||||
sysctls:
|
sysctls:
|
||||||
# TCP Performance
|
# TCP Performance
|
||||||
net.ipv4.tcp_slow_start_after_idle: 0 # Disable slow start after idle
|
net.ipv4.tcp_slow_start_after_idle: 0 # Disable slow start after idle
|
||||||
@@ -46,16 +46,16 @@ services:
|
|||||||
nofile: 1048576 # Max open files (for RPC/WS connections)
|
nofile: 1048576 # Max open files (for RPC/WS connections)
|
||||||
user: root
|
user: root
|
||||||
ports:
|
ports:
|
||||||
- 11589:11589
|
- 10889:10889
|
||||||
- 11589:11589/udp
|
- 10889:10889/udp
|
||||||
expose:
|
expose:
|
||||||
- 8545
|
- 8545
|
||||||
- 6060
|
- 6060
|
||||||
- 8551
|
- 8551
|
||||||
environment:
|
environment:
|
||||||
- GETH_OP_NETWORK=soneium-minato
|
- GETH_OP_NETWORK=soneium-mainnet
|
||||||
- GETH_ROLLUP_DISABLETXPOOLGOSSIP=true
|
- GETH_ROLLUP_DISABLETXPOOLGOSSIP=true
|
||||||
- GETH_ROLLUP_SEQUENCERHTTP=https://rpc.minato.soneium.org
|
- GETH_ROLLUP_SEQUENCERHTTP=https://rpc.soneium.org
|
||||||
entrypoint: /bin/sh -c 'exec geth "$@"' --
|
entrypoint: /bin/sh -c 'exec geth "$@"' --
|
||||||
command:
|
command:
|
||||||
- --datadir=/data
|
- --datadir=/data
|
||||||
@@ -66,7 +66,7 @@ services:
|
|||||||
- --metrics.addr=0.0.0.0
|
- --metrics.addr=0.0.0.0
|
||||||
- --metrics.port=6060
|
- --metrics.port=6060
|
||||||
- --nat=extip:${IP}
|
- --nat=extip:${IP}
|
||||||
- --port=11589
|
- --port=10889
|
||||||
- --rpc.gascap=600000000
|
- --rpc.gascap=600000000
|
||||||
- --rpc.txfeecap=0
|
- --rpc.txfeecap=0
|
||||||
- --state.scheme=hash
|
- --state.scheme=hash
|
||||||
@@ -89,7 +89,7 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- chains
|
- chains
|
||||||
volumes:
|
volumes:
|
||||||
- ${SONEIUM_MINATO_OP_GETH_ARCHIVE_LEVELDB_HASH_DATA:-soneium-minato-op-geth-archive-leveldb-hash}:/data
|
- ${SONEIUM_MAINNET_OP_GETH_ARCHIVE_LEVELDB_HASH_DATA:-soneium-mainnet-op-geth-archive-leveldb-hash}:/data
|
||||||
- .jwtsecret:/jwtsecret:ro
|
- .jwtsecret:/jwtsecret:ro
|
||||||
- /slowdisk:/slowdisk
|
- /slowdisk:/slowdisk
|
||||||
logging: *logging-defaults
|
logging: *logging-defaults
|
||||||
@@ -98,39 +98,38 @@ services:
|
|||||||
- prometheus-scrape.port=6060
|
- prometheus-scrape.port=6060
|
||||||
- prometheus-scrape.path=/debug/metrics/prometheus
|
- prometheus-scrape.path=/debug/metrics/prometheus
|
||||||
- traefik.enable=true
|
- traefik.enable=true
|
||||||
- traefik.http.middlewares.soneium-minato-op-geth-archive-leveldb-hash-stripprefix.stripprefix.prefixes=/soneium-minato-archive
|
- traefik.http.middlewares.soneium-mainnet-op-geth-archive-leveldb-hash-stripprefix.stripprefix.prefixes=/soneium-mainnet-archive
|
||||||
- traefik.http.services.soneium-minato-op-geth-archive-leveldb-hash.loadbalancer.server.port=8545
|
- traefik.http.services.soneium-mainnet-op-geth-archive-leveldb-hash.loadbalancer.server.port=8545
|
||||||
- ${NO_SSL:-traefik.http.routers.soneium-minato-op-geth-archive-leveldb-hash.entrypoints=websecure}
|
- ${NO_SSL:-traefik.http.routers.soneium-mainnet-op-geth-archive-leveldb-hash.entrypoints=websecure}
|
||||||
- ${NO_SSL:-traefik.http.routers.soneium-minato-op-geth-archive-leveldb-hash.tls.certresolver=myresolver}
|
- ${NO_SSL:-traefik.http.routers.soneium-mainnet-op-geth-archive-leveldb-hash.tls.certresolver=myresolver}
|
||||||
- ${NO_SSL:-traefik.http.routers.soneium-minato-op-geth-archive-leveldb-hash.rule=Host(`$DOMAIN`) && (Path(`/soneium-minato-archive`) || Path(`/soneium-minato-archive/`))}
|
- ${NO_SSL:-traefik.http.routers.soneium-mainnet-op-geth-archive-leveldb-hash.rule=Host(`$DOMAIN`) && (Path(`/soneium-mainnet-archive`) || Path(`/soneium-mainnet-archive/`))}
|
||||||
- ${NO_SSL:+traefik.http.routers.soneium-minato-op-geth-archive-leveldb-hash.rule=Path(`/soneium-minato-archive`) || Path(`/soneium-minato-archive/`)}
|
- ${NO_SSL:+traefik.http.routers.soneium-mainnet-op-geth-archive-leveldb-hash.rule=Path(`/soneium-mainnet-archive`) || Path(`/soneium-mainnet-archive/`)}
|
||||||
- traefik.http.routers.soneium-minato-op-geth-archive-leveldb-hash.middlewares=soneium-minato-op-geth-archive-leveldb-hash-stripprefix, ipallowlist
|
- traefik.http.routers.soneium-mainnet-op-geth-archive-leveldb-hash.middlewares=soneium-mainnet-op-geth-archive-leveldb-hash-stripprefix, ipallowlist
|
||||||
|
|
||||||
soneium-minato-archive-node:
|
soneium-mainnet-archive-node:
|
||||||
image: ${SONEIUM_NODE_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node}:${SONEIUM_MINATO_NODE_VERSION:-v1.13.7}
|
image: ${SONEIUM_NODE_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node}:${SONEIUM_MAINNET_NODE_VERSION:-v1.13.7}
|
||||||
ports:
|
ports:
|
||||||
- 16589:16589
|
- 15889:15889
|
||||||
- 16589:16589/udp
|
- 15889:15889/udp
|
||||||
environment:
|
environment:
|
||||||
- OP_NODE_L1_BEACON=${ETHEREUM_SEPOLIA_BEACON_REST}
|
- OP_NODE_L1_BEACON=${ETHEREUM_MAINNET_BEACON_REST}
|
||||||
- OP_NODE_L1_BEACON_ARCHIVER=${ETHEREUM_SEPOLIA_BEACON_ARCHIVER}
|
- OP_NODE_L1_BEACON_ARCHIVER=${ETHEREUM_MAINNET_BEACON_ARCHIVER}
|
||||||
- OP_NODE_L1_ETH_RPC=${ETHEREUM_SEPOLIA_EXECUTION_RPC}
|
- OP_NODE_L1_ETH_RPC=${ETHEREUM_MAINNET_EXECUTION_RPC}
|
||||||
- OP_NODE_L1_RPC_KIND=${ETHEREUM_SEPOLIA_EXECUTION_KIND:-basic}
|
- OP_NODE_L1_RPC_KIND=${ETHEREUM_MAINNET_EXECUTION_KIND:-basic}
|
||||||
- OP_NODE_L1_TRUST_RPC=${ETHEREUM_SEPOLIA_EXECUTION_TRUST:-false}
|
- OP_NODE_L1_TRUST_RPC=${ETHEREUM_MAINNET_EXECUTION_TRUST:-false}
|
||||||
- OP_NODE_L2_ENGINE_AUTH=/jwtsecret
|
- OP_NODE_L2_ENGINE_AUTH=/jwtsecret
|
||||||
- OP_NODE_L2_ENGINE_RPC=http://soneium-minato-archive:8551
|
- OP_NODE_L2_ENGINE_RPC=http://soneium-mainnet-archive:8551
|
||||||
- OP_NODE_L2_SKIP_SYNC_START_CHECK=true
|
- OP_NODE_L2_SKIP_SYNC_START_CHECK=true
|
||||||
- OP_NODE_LOG_LEVEL=info
|
- OP_NODE_LOG_LEVEL=info
|
||||||
- OP_NODE_METRICS_ADDR=0.0.0.0
|
- OP_NODE_METRICS_ADDR=0.0.0.0
|
||||||
- OP_NODE_METRICS_ENABLED=true
|
- OP_NODE_METRICS_ENABLED=true
|
||||||
- OP_NODE_METRICS_PORT=7300
|
- OP_NODE_METRICS_PORT=7300
|
||||||
- OP_NODE_METRIC_ENABLED=true
|
- OP_NODE_METRIC_ENABLED=true
|
||||||
- OP_NODE_NETWORK=soneium-minato
|
- OP_NODE_NETWORK=soneium-mainnet
|
||||||
- OP_NODE_OVERRIDE_PECTRABLOBSCHEDULE=1742486400
|
|
||||||
- OP_NODE_P2P_ADVERTISE_IP=${IP}
|
- OP_NODE_P2P_ADVERTISE_IP=${IP}
|
||||||
- OP_NODE_P2P_LISTEN_IP=0.0.0.0
|
- OP_NODE_P2P_LISTEN_IP=0.0.0.0
|
||||||
- OP_NODE_P2P_LISTEN_TCP_PORT=16589
|
- OP_NODE_P2P_LISTEN_TCP_PORT=15889
|
||||||
- OP_NODE_P2P_LISTEN_UDP_PORT=16589
|
- OP_NODE_P2P_LISTEN_UDP_PORT=15889
|
||||||
- OP_NODE_ROLLUP_LOAD_PROTOCOL_VERSIONS=true
|
- OP_NODE_ROLLUP_LOAD_PROTOCOL_VERSIONS=true
|
||||||
- OP_NODE_RPC_ADDR=0.0.0.0
|
- OP_NODE_RPC_ADDR=0.0.0.0
|
||||||
- OP_NODE_RPC_PORT=8545
|
- OP_NODE_RPC_PORT=8545
|
||||||
@@ -140,7 +139,7 @@ services:
|
|||||||
entrypoint: [op-node]
|
entrypoint: [op-node]
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
depends_on:
|
depends_on:
|
||||||
- soneium-minato-archive
|
- soneium-mainnet-archive
|
||||||
networks:
|
networks:
|
||||||
- chains
|
- chains
|
||||||
volumes:
|
volumes:
|
||||||
@@ -151,16 +150,16 @@ services:
|
|||||||
- prometheus-scrape.port=7300
|
- prometheus-scrape.port=7300
|
||||||
- prometheus-scrape.path=/metrics
|
- prometheus-scrape.path=/metrics
|
||||||
- traefik.enable=true
|
- traefik.enable=true
|
||||||
- traefik.http.middlewares.soneium-minato-op-geth-archive-leveldb-hash-node-stripprefix.stripprefix.prefixes=/soneium-minato-archive/node
|
- traefik.http.middlewares.soneium-mainnet-op-geth-archive-leveldb-hash-node-stripprefix.stripprefix.prefixes=/soneium-mainnet-archive/node
|
||||||
- traefik.http.services.soneium-minato-op-geth-archive-leveldb-hash-node.loadbalancer.server.port=8547
|
- traefik.http.services.soneium-mainnet-op-geth-archive-leveldb-hash-node.loadbalancer.server.port=8547
|
||||||
- ${NO_SSL:-traefik.http.routers.soneium-minato-op-geth-archive-leveldb-hash-node.entrypoints=websecure}
|
- ${NO_SSL:-traefik.http.routers.soneium-mainnet-op-geth-archive-leveldb-hash-node.entrypoints=websecure}
|
||||||
- ${NO_SSL:-traefik.http.routers.soneium-minato-op-geth-archive-leveldb-hash-node.tls.certresolver=myresolver}
|
- ${NO_SSL:-traefik.http.routers.soneium-mainnet-op-geth-archive-leveldb-hash-node.tls.certresolver=myresolver}
|
||||||
- ${NO_SSL:-traefik.http.routers.soneium-minato-op-geth-archive-leveldb-hash-node.rule=Host(`$DOMAIN`) && PathPrefix(`soneium-minato-archive/node`)}
|
- ${NO_SSL:-traefik.http.routers.soneium-mainnet-op-geth-archive-leveldb-hash-node.rule=Host(`$DOMAIN`) && PathPrefix(`soneium-mainnet-archive/node`)}
|
||||||
- ${NO_SSL:+traefik.http.routers.soneium-minato-op-geth-archive-leveldb-hash-node.rule=PathPrefix(`soneium-minato-archive/node`)}
|
- ${NO_SSL:+traefik.http.routers.soneium-mainnet-op-geth-archive-leveldb-hash-node.rule=PathPrefix(`soneium-mainnet-archive/node`)}
|
||||||
- traefik.http.routers.soneium-minato-op-geth-archive-leveldb-hash-node.middlewares=soneium-minato-op-geth-archive-leveldb-hash-node-stripprefix, ipallowlist
|
- traefik.http.routers.soneium-mainnet-op-geth-archive-leveldb-hash-node.middlewares=soneium-mainnet-op-geth-archive-leveldb-hash-node-stripprefix, ipallowlist
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
soneium-minato-op-geth-archive-leveldb-hash:
|
soneium-mainnet-op-geth-archive-leveldb-hash:
|
||||||
|
|
||||||
x-upstreams:
|
x-upstreams:
|
||||||
- id: $${ID}
|
- id: $${ID}
|
||||||
@@ -174,7 +173,7 @@ x-upstreams:
|
|||||||
frameSize: 20Mb
|
frameSize: 20Mb
|
||||||
msgSize: 50Mb
|
msgSize: 50Mb
|
||||||
url: $${WS_URL}
|
url: $${WS_URL}
|
||||||
chain: soneium-minato
|
chain: soneium
|
||||||
method-groups:
|
method-groups:
|
||||||
enabled:
|
enabled:
|
||||||
- debug
|
- debug
|
||||||
@@ -20,17 +20,17 @@ x-logging-defaults: &logging-defaults
|
|||||||
# ...
|
# ...
|
||||||
# IP=$(curl ipinfo.io/ip)
|
# IP=$(curl ipinfo.io/ip)
|
||||||
# DOMAIN=${IP}.traefik.me
|
# DOMAIN=${IP}.traefik.me
|
||||||
# COMPOSE_FILE=base.yml:rpc.yml:op/geth/soneium-minato-op-geth-pruned-pebble-path.yml
|
# COMPOSE_FILE=base.yml:rpc.yml:op/geth/soneium-mainnet-op-geth-pruned-pebble-path.yml
|
||||||
#
|
#
|
||||||
# docker compose up -d
|
# docker compose up -d
|
||||||
#
|
#
|
||||||
# curl -X POST https://${IP}.traefik.me/soneium-minato \
|
# curl -X POST https://${IP}.traefik.me/soneium-mainnet \
|
||||||
# -H "Content-Type: application/json" \
|
# -H "Content-Type: application/json" \
|
||||||
# --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
|
# --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
soneium-minato:
|
soneium-mainnet:
|
||||||
image: ${SONEIUM_GETH_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-geth}:${SONEIUM_MINATO_GETH_VERSION:-v1.101602.3}
|
image: ${SONEIUM_GETH_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-geth}:${SONEIUM_MAINNET_GETH_VERSION:-v1.101602.3}
|
||||||
sysctls:
|
sysctls:
|
||||||
# TCP Performance
|
# TCP Performance
|
||||||
net.ipv4.tcp_slow_start_after_idle: 0 # Disable slow start after idle
|
net.ipv4.tcp_slow_start_after_idle: 0 # Disable slow start after idle
|
||||||
@@ -46,16 +46,16 @@ services:
|
|||||||
nofile: 1048576 # Max open files (for RPC/WS connections)
|
nofile: 1048576 # Max open files (for RPC/WS connections)
|
||||||
user: root
|
user: root
|
||||||
ports:
|
ports:
|
||||||
- 10702:10702
|
- 14145:14145
|
||||||
- 10702:10702/udp
|
- 14145:14145/udp
|
||||||
expose:
|
expose:
|
||||||
- 8545
|
- 8545
|
||||||
- 6060
|
- 6060
|
||||||
- 8551
|
- 8551
|
||||||
environment:
|
environment:
|
||||||
- GETH_OP_NETWORK=soneium-minato
|
- GETH_OP_NETWORK=soneium-mainnet
|
||||||
- GETH_ROLLUP_DISABLETXPOOLGOSSIP=true
|
- GETH_ROLLUP_DISABLETXPOOLGOSSIP=true
|
||||||
- GETH_ROLLUP_SEQUENCERHTTP=https://rpc.minato.soneium.org
|
- GETH_ROLLUP_SEQUENCERHTTP=https://rpc.soneium.org
|
||||||
entrypoint: /bin/sh -c 'exec geth "$@"' --
|
entrypoint: /bin/sh -c 'exec geth "$@"' --
|
||||||
command:
|
command:
|
||||||
- --datadir=/data
|
- --datadir=/data
|
||||||
@@ -66,7 +66,7 @@ services:
|
|||||||
- --metrics.addr=0.0.0.0
|
- --metrics.addr=0.0.0.0
|
||||||
- --metrics.port=6060
|
- --metrics.port=6060
|
||||||
- --nat=extip:${IP}
|
- --nat=extip:${IP}
|
||||||
- --port=10702
|
- --port=14145
|
||||||
- --rpc.gascap=600000000
|
- --rpc.gascap=600000000
|
||||||
- --rpc.txfeecap=0
|
- --rpc.txfeecap=0
|
||||||
- --state.scheme=path
|
- --state.scheme=path
|
||||||
@@ -89,7 +89,7 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- chains
|
- chains
|
||||||
volumes:
|
volumes:
|
||||||
- ${SONEIUM_MINATO_OP_GETH_PRUNED_PEBBLE_PATH_DATA:-soneium-minato-op-geth-pruned-pebble-path}:/data
|
- ${SONEIUM_MAINNET_OP_GETH_PRUNED_PEBBLE_PATH_DATA:-soneium-mainnet-op-geth-pruned-pebble-path}:/data
|
||||||
- .jwtsecret:/jwtsecret:ro
|
- .jwtsecret:/jwtsecret:ro
|
||||||
- /slowdisk:/slowdisk
|
- /slowdisk:/slowdisk
|
||||||
logging: *logging-defaults
|
logging: *logging-defaults
|
||||||
@@ -98,39 +98,38 @@ services:
|
|||||||
- prometheus-scrape.port=6060
|
- prometheus-scrape.port=6060
|
||||||
- prometheus-scrape.path=/debug/metrics/prometheus
|
- prometheus-scrape.path=/debug/metrics/prometheus
|
||||||
- traefik.enable=true
|
- traefik.enable=true
|
||||||
- traefik.http.middlewares.soneium-minato-op-geth-pruned-pebble-path-stripprefix.stripprefix.prefixes=/soneium-minato
|
- traefik.http.middlewares.soneium-mainnet-op-geth-pruned-pebble-path-stripprefix.stripprefix.prefixes=/soneium-mainnet
|
||||||
- traefik.http.services.soneium-minato-op-geth-pruned-pebble-path.loadbalancer.server.port=8545
|
- traefik.http.services.soneium-mainnet-op-geth-pruned-pebble-path.loadbalancer.server.port=8545
|
||||||
- ${NO_SSL:-traefik.http.routers.soneium-minato-op-geth-pruned-pebble-path.entrypoints=websecure}
|
- ${NO_SSL:-traefik.http.routers.soneium-mainnet-op-geth-pruned-pebble-path.entrypoints=websecure}
|
||||||
- ${NO_SSL:-traefik.http.routers.soneium-minato-op-geth-pruned-pebble-path.tls.certresolver=myresolver}
|
- ${NO_SSL:-traefik.http.routers.soneium-mainnet-op-geth-pruned-pebble-path.tls.certresolver=myresolver}
|
||||||
- ${NO_SSL:-traefik.http.routers.soneium-minato-op-geth-pruned-pebble-path.rule=Host(`$DOMAIN`) && (Path(`/soneium-minato`) || Path(`/soneium-minato/`))}
|
- ${NO_SSL:-traefik.http.routers.soneium-mainnet-op-geth-pruned-pebble-path.rule=Host(`$DOMAIN`) && (Path(`/soneium-mainnet`) || Path(`/soneium-mainnet/`))}
|
||||||
- ${NO_SSL:+traefik.http.routers.soneium-minato-op-geth-pruned-pebble-path.rule=Path(`/soneium-minato`) || Path(`/soneium-minato/`)}
|
- ${NO_SSL:+traefik.http.routers.soneium-mainnet-op-geth-pruned-pebble-path.rule=Path(`/soneium-mainnet`) || Path(`/soneium-mainnet/`)}
|
||||||
- traefik.http.routers.soneium-minato-op-geth-pruned-pebble-path.middlewares=soneium-minato-op-geth-pruned-pebble-path-stripprefix, ipallowlist
|
- traefik.http.routers.soneium-mainnet-op-geth-pruned-pebble-path.middlewares=soneium-mainnet-op-geth-pruned-pebble-path-stripprefix, ipallowlist
|
||||||
|
|
||||||
soneium-minato-node:
|
soneium-mainnet-node:
|
||||||
image: ${SONEIUM_NODE_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node}:${SONEIUM_MINATO_NODE_VERSION:-v1.13.7}
|
image: ${SONEIUM_NODE_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node}:${SONEIUM_MAINNET_NODE_VERSION:-v1.13.7}
|
||||||
ports:
|
ports:
|
||||||
- 15702:15702
|
- 19145:19145
|
||||||
- 15702:15702/udp
|
- 19145:19145/udp
|
||||||
environment:
|
environment:
|
||||||
- OP_NODE_L1_BEACON=${ETHEREUM_SEPOLIA_BEACON_REST}
|
- OP_NODE_L1_BEACON=${ETHEREUM_MAINNET_BEACON_REST}
|
||||||
- OP_NODE_L1_BEACON_ARCHIVER=${ETHEREUM_SEPOLIA_BEACON_ARCHIVER}
|
- OP_NODE_L1_BEACON_ARCHIVER=${ETHEREUM_MAINNET_BEACON_ARCHIVER}
|
||||||
- OP_NODE_L1_ETH_RPC=${ETHEREUM_SEPOLIA_EXECUTION_RPC}
|
- OP_NODE_L1_ETH_RPC=${ETHEREUM_MAINNET_EXECUTION_RPC}
|
||||||
- OP_NODE_L1_RPC_KIND=${ETHEREUM_SEPOLIA_EXECUTION_KIND:-basic}
|
- OP_NODE_L1_RPC_KIND=${ETHEREUM_MAINNET_EXECUTION_KIND:-basic}
|
||||||
- OP_NODE_L1_TRUST_RPC=${ETHEREUM_SEPOLIA_EXECUTION_TRUST:-false}
|
- OP_NODE_L1_TRUST_RPC=${ETHEREUM_MAINNET_EXECUTION_TRUST:-false}
|
||||||
- OP_NODE_L2_ENGINE_AUTH=/jwtsecret
|
- OP_NODE_L2_ENGINE_AUTH=/jwtsecret
|
||||||
- OP_NODE_L2_ENGINE_RPC=http://soneium-minato:8551
|
- OP_NODE_L2_ENGINE_RPC=http://soneium-mainnet:8551
|
||||||
- OP_NODE_L2_SKIP_SYNC_START_CHECK=true
|
- OP_NODE_L2_SKIP_SYNC_START_CHECK=true
|
||||||
- OP_NODE_LOG_LEVEL=info
|
- OP_NODE_LOG_LEVEL=info
|
||||||
- OP_NODE_METRICS_ADDR=0.0.0.0
|
- OP_NODE_METRICS_ADDR=0.0.0.0
|
||||||
- OP_NODE_METRICS_ENABLED=true
|
- OP_NODE_METRICS_ENABLED=true
|
||||||
- OP_NODE_METRICS_PORT=7300
|
- OP_NODE_METRICS_PORT=7300
|
||||||
- OP_NODE_METRIC_ENABLED=true
|
- OP_NODE_METRIC_ENABLED=true
|
||||||
- OP_NODE_NETWORK=soneium-minato
|
- OP_NODE_NETWORK=soneium-mainnet
|
||||||
- OP_NODE_OVERRIDE_PECTRABLOBSCHEDULE=1742486400
|
|
||||||
- OP_NODE_P2P_ADVERTISE_IP=${IP}
|
- OP_NODE_P2P_ADVERTISE_IP=${IP}
|
||||||
- OP_NODE_P2P_LISTEN_IP=0.0.0.0
|
- OP_NODE_P2P_LISTEN_IP=0.0.0.0
|
||||||
- OP_NODE_P2P_LISTEN_TCP_PORT=15702
|
- OP_NODE_P2P_LISTEN_TCP_PORT=19145
|
||||||
- OP_NODE_P2P_LISTEN_UDP_PORT=15702
|
- OP_NODE_P2P_LISTEN_UDP_PORT=19145
|
||||||
- OP_NODE_ROLLUP_LOAD_PROTOCOL_VERSIONS=true
|
- OP_NODE_ROLLUP_LOAD_PROTOCOL_VERSIONS=true
|
||||||
- OP_NODE_RPC_ADDR=0.0.0.0
|
- OP_NODE_RPC_ADDR=0.0.0.0
|
||||||
- OP_NODE_RPC_PORT=8545
|
- OP_NODE_RPC_PORT=8545
|
||||||
@@ -140,7 +139,7 @@ services:
|
|||||||
entrypoint: [op-node]
|
entrypoint: [op-node]
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
depends_on:
|
depends_on:
|
||||||
- soneium-minato
|
- soneium-mainnet
|
||||||
networks:
|
networks:
|
||||||
- chains
|
- chains
|
||||||
volumes:
|
volumes:
|
||||||
@@ -151,16 +150,16 @@ services:
|
|||||||
- prometheus-scrape.port=7300
|
- prometheus-scrape.port=7300
|
||||||
- prometheus-scrape.path=/metrics
|
- prometheus-scrape.path=/metrics
|
||||||
- traefik.enable=true
|
- traefik.enable=true
|
||||||
- traefik.http.middlewares.soneium-minato-op-geth-pruned-pebble-path-node-stripprefix.stripprefix.prefixes=/soneium-minato/node
|
- traefik.http.middlewares.soneium-mainnet-op-geth-pruned-pebble-path-node-stripprefix.stripprefix.prefixes=/soneium-mainnet/node
|
||||||
- traefik.http.services.soneium-minato-op-geth-pruned-pebble-path-node.loadbalancer.server.port=8547
|
- traefik.http.services.soneium-mainnet-op-geth-pruned-pebble-path-node.loadbalancer.server.port=8547
|
||||||
- ${NO_SSL:-traefik.http.routers.soneium-minato-op-geth-pruned-pebble-path-node.entrypoints=websecure}
|
- ${NO_SSL:-traefik.http.routers.soneium-mainnet-op-geth-pruned-pebble-path-node.entrypoints=websecure}
|
||||||
- ${NO_SSL:-traefik.http.routers.soneium-minato-op-geth-pruned-pebble-path-node.tls.certresolver=myresolver}
|
- ${NO_SSL:-traefik.http.routers.soneium-mainnet-op-geth-pruned-pebble-path-node.tls.certresolver=myresolver}
|
||||||
- ${NO_SSL:-traefik.http.routers.soneium-minato-op-geth-pruned-pebble-path-node.rule=Host(`$DOMAIN`) && PathPrefix(`soneium-minato/node`)}
|
- ${NO_SSL:-traefik.http.routers.soneium-mainnet-op-geth-pruned-pebble-path-node.rule=Host(`$DOMAIN`) && PathPrefix(`soneium-mainnet/node`)}
|
||||||
- ${NO_SSL:+traefik.http.routers.soneium-minato-op-geth-pruned-pebble-path-node.rule=PathPrefix(`soneium-minato/node`)}
|
- ${NO_SSL:+traefik.http.routers.soneium-mainnet-op-geth-pruned-pebble-path-node.rule=PathPrefix(`soneium-mainnet/node`)}
|
||||||
- traefik.http.routers.soneium-minato-op-geth-pruned-pebble-path-node.middlewares=soneium-minato-op-geth-pruned-pebble-path-node-stripprefix, ipallowlist
|
- traefik.http.routers.soneium-mainnet-op-geth-pruned-pebble-path-node.middlewares=soneium-mainnet-op-geth-pruned-pebble-path-node-stripprefix, ipallowlist
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
soneium-minato-op-geth-pruned-pebble-path:
|
soneium-mainnet-op-geth-pruned-pebble-path:
|
||||||
|
|
||||||
x-upstreams:
|
x-upstreams:
|
||||||
- id: $${ID}
|
- id: $${ID}
|
||||||
@@ -174,7 +173,7 @@ x-upstreams:
|
|||||||
frameSize: 20Mb
|
frameSize: 20Mb
|
||||||
msgSize: 50Mb
|
msgSize: 50Mb
|
||||||
url: $${WS_URL}
|
url: $${WS_URL}
|
||||||
chain: soneium-minato
|
chain: soneium
|
||||||
method-groups:
|
method-groups:
|
||||||
enabled:
|
enabled:
|
||||||
- debug
|
- debug
|
||||||
201
op/geth/soneium-minato-sepolia-op-geth-archive-leveldb-hash.yml
Normal file
201
op/geth/soneium-minato-sepolia-op-geth-archive-leveldb-hash.yml
Normal file
@@ -0,0 +1,201 @@
|
|||||||
|
---
|
||||||
|
x-logging-defaults: &logging-defaults
|
||||||
|
driver: json-file
|
||||||
|
options:
|
||||||
|
max-size: "10m"
|
||||||
|
max-file: "3"
|
||||||
|
|
||||||
|
# Usage:
|
||||||
|
#
|
||||||
|
# mkdir rpc && cd rpc
|
||||||
|
#
|
||||||
|
# git init
|
||||||
|
# git remote add origin https://github.com/StakeSquid/ethereum-rpc-docker.git
|
||||||
|
# git fetch origin vibe
|
||||||
|
# git checkout origin/vibe
|
||||||
|
#
|
||||||
|
# docker run --rm alpine sh -c "printf '0x'; head -c32 /dev/urandom | xxd -p -c 64" > .jwtsecret
|
||||||
|
#
|
||||||
|
# env
|
||||||
|
# ...
|
||||||
|
# IP=$(curl ipinfo.io/ip)
|
||||||
|
# DOMAIN=${IP}.traefik.me
|
||||||
|
# COMPOSE_FILE=base.yml:rpc.yml:op/geth/soneium-minato-sepolia-op-geth-archive-leveldb-hash.yml
|
||||||
|
#
|
||||||
|
# docker compose up -d
|
||||||
|
#
|
||||||
|
# curl -X POST https://${IP}.traefik.me/soneium-minato-sepolia-archive \
|
||||||
|
# -H "Content-Type: application/json" \
|
||||||
|
# --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
|
||||||
|
|
||||||
|
services:
|
||||||
|
soneium-minato-sepolia-archive:
|
||||||
|
image: ${SONEIUM_GETH_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-geth}:${SONEIUM_MINATO_SEPOLIA_GETH_VERSION:-v1.101602.3}
|
||||||
|
sysctls:
|
||||||
|
# TCP Performance
|
||||||
|
net.ipv4.tcp_slow_start_after_idle: 0 # Disable slow start after idle
|
||||||
|
net.ipv4.tcp_no_metrics_save: 1 # Disable metrics cache
|
||||||
|
net.ipv4.tcp_rmem: 4096 87380 16777216 # Increase TCP read buffers
|
||||||
|
net.ipv4.tcp_wmem: 4096 87380 16777216 # Increase TCP write buffers
|
||||||
|
net.core.somaxconn: 32768 # Higher connection queue
|
||||||
|
# Memory/Connection Management
|
||||||
|
# net.core.netdev_max_backlog: 50000 # Increase network buffer
|
||||||
|
net.ipv4.tcp_max_syn_backlog: 30000 # More SYN requests
|
||||||
|
net.ipv4.tcp_max_tw_buckets: 2000000 # Allow more TIME_WAIT sockets
|
||||||
|
ulimits:
|
||||||
|
nofile: 1048576 # Max open files (for RPC/WS connections)
|
||||||
|
user: root
|
||||||
|
ports:
|
||||||
|
- 11279:11279
|
||||||
|
- 11279:11279/udp
|
||||||
|
expose:
|
||||||
|
- 8545
|
||||||
|
- 6060
|
||||||
|
- 8551
|
||||||
|
environment:
|
||||||
|
- GETH_OP_NETWORK=soneium-minato-sepolia
|
||||||
|
- GETH_ROLLUP_DISABLETXPOOLGOSSIP=true
|
||||||
|
- GETH_ROLLUP_SEQUENCERHTTP=https://rpc.soneium.org
|
||||||
|
entrypoint: /bin/sh -c 'exec geth "$@"' --
|
||||||
|
command:
|
||||||
|
- --datadir=/data
|
||||||
|
- --db.engine=leveldb
|
||||||
|
- --gcmode=archive
|
||||||
|
- --maxpeers=50
|
||||||
|
- --metrics
|
||||||
|
- --metrics.addr=0.0.0.0
|
||||||
|
- --metrics.port=6060
|
||||||
|
- --nat=extip:${IP}
|
||||||
|
- --port=11279
|
||||||
|
- --rpc.gascap=600000000
|
||||||
|
- --rpc.txfeecap=0
|
||||||
|
- --state.scheme=hash
|
||||||
|
- --syncmode=full
|
||||||
|
- --http
|
||||||
|
- --http.addr=0.0.0.0
|
||||||
|
- --http.api=eth,net,web3,debug,admin,txpool,engine
|
||||||
|
- --http.port=8545
|
||||||
|
- --http.vhosts=*
|
||||||
|
- --ws
|
||||||
|
- --ws.addr=0.0.0.0
|
||||||
|
- --ws.api=eth,net,web3,debug,admin,txpool,engine
|
||||||
|
- --ws.origins=*
|
||||||
|
- --ws.port=8545
|
||||||
|
- --authrpc.addr=0.0.0.0
|
||||||
|
- --authrpc.jwtsecret=/jwtsecret
|
||||||
|
- --authrpc.vhosts=*
|
||||||
|
restart: unless-stopped
|
||||||
|
stop_grace_period: 5m
|
||||||
|
networks:
|
||||||
|
- chains
|
||||||
|
volumes:
|
||||||
|
- ${SONEIUM_MINATO_SEPOLIA_OP_GETH_ARCHIVE_LEVELDB_HASH_DATA:-soneium-minato-sepolia-op-geth-archive-leveldb-hash}:/data
|
||||||
|
- .jwtsecret:/jwtsecret:ro
|
||||||
|
- /slowdisk:/slowdisk
|
||||||
|
logging: *logging-defaults
|
||||||
|
labels:
|
||||||
|
- prometheus-scrape.enabled=true
|
||||||
|
- prometheus-scrape.port=6060
|
||||||
|
- prometheus-scrape.path=/debug/metrics/prometheus
|
||||||
|
- traefik.enable=true
|
||||||
|
- traefik.http.middlewares.soneium-minato-sepolia-op-geth-archive-leveldb-hash-stripprefix.stripprefix.prefixes=/soneium-minato-sepolia-archive
|
||||||
|
- traefik.http.services.soneium-minato-sepolia-op-geth-archive-leveldb-hash.loadbalancer.server.port=8545
|
||||||
|
- ${NO_SSL:-traefik.http.routers.soneium-minato-sepolia-op-geth-archive-leveldb-hash.entrypoints=websecure}
|
||||||
|
- ${NO_SSL:-traefik.http.routers.soneium-minato-sepolia-op-geth-archive-leveldb-hash.tls.certresolver=myresolver}
|
||||||
|
- ${NO_SSL:-traefik.http.routers.soneium-minato-sepolia-op-geth-archive-leveldb-hash.rule=Host(`$DOMAIN`) && (Path(`/soneium-minato-sepolia-archive`) || Path(`/soneium-minato-sepolia-archive/`))}
|
||||||
|
- ${NO_SSL:+traefik.http.routers.soneium-minato-sepolia-op-geth-archive-leveldb-hash.rule=Path(`/soneium-minato-sepolia-archive`) || Path(`/soneium-minato-sepolia-archive/`)}
|
||||||
|
- traefik.http.routers.soneium-minato-sepolia-op-geth-archive-leveldb-hash.middlewares=soneium-minato-sepolia-op-geth-archive-leveldb-hash-stripprefix, ipallowlist
|
||||||
|
|
||||||
|
soneium-minato-sepolia-archive-node:
|
||||||
|
image: ${SONEIUM_NODE_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node}:${SONEIUM_MINATO_SEPOLIA_NODE_VERSION:-v1.13.7}
|
||||||
|
ports:
|
||||||
|
- 16279:16279
|
||||||
|
- 16279:16279/udp
|
||||||
|
environment:
|
||||||
|
- OP_NODE_L1_BEACON=${ETHEREUM_MINATO-SEPOLIA_BEACON_REST}
|
||||||
|
- OP_NODE_L1_BEACON_ARCHIVER=${ETHEREUM_MINATO-SEPOLIA_BEACON_ARCHIVER}
|
||||||
|
- OP_NODE_L1_ETH_RPC=${ETHEREUM_MINATO-SEPOLIA_EXECUTION_RPC}
|
||||||
|
- OP_NODE_L1_RPC_KIND=${ETHEREUM_MINATO-SEPOLIA_EXECUTION_KIND:-basic}
|
||||||
|
- OP_NODE_L1_TRUST_RPC=${ETHEREUM_MINATO-SEPOLIA_EXECUTION_TRUST:-false}
|
||||||
|
- OP_NODE_L2_ENGINE_AUTH=/jwtsecret
|
||||||
|
- OP_NODE_L2_ENGINE_RPC=http://soneium-minato-sepolia-archive:8551
|
||||||
|
- OP_NODE_L2_SKIP_SYNC_START_CHECK=true
|
||||||
|
- OP_NODE_LOG_LEVEL=info
|
||||||
|
- OP_NODE_METRICS_ADDR=0.0.0.0
|
||||||
|
- OP_NODE_METRICS_ENABLED=true
|
||||||
|
- OP_NODE_METRICS_PORT=7300
|
||||||
|
- OP_NODE_METRIC_ENABLED=true
|
||||||
|
- OP_NODE_NETWORK=soneium-minato-sepolia
|
||||||
|
- OP_NODE_P2P_ADVERTISE_IP=${IP}
|
||||||
|
- OP_NODE_P2P_LISTEN_IP=0.0.0.0
|
||||||
|
- OP_NODE_P2P_LISTEN_TCP_PORT=16279
|
||||||
|
- OP_NODE_P2P_LISTEN_UDP_PORT=16279
|
||||||
|
- OP_NODE_ROLLUP_LOAD_PROTOCOL_VERSIONS=true
|
||||||
|
- OP_NODE_RPC_ADDR=0.0.0.0
|
||||||
|
- OP_NODE_RPC_PORT=8545
|
||||||
|
- OP_NODE_SNAPSHOT_LOG=/tmp/op-node-snapshot-log
|
||||||
|
- OP_NODE_SYNCMODE=execution-layer
|
||||||
|
- OP_NODE_VERIFIER_L1_CONFS=0
|
||||||
|
entrypoint: [op-node]
|
||||||
|
restart: unless-stopped
|
||||||
|
depends_on:
|
||||||
|
- soneium-minato-sepolia-archive
|
||||||
|
networks:
|
||||||
|
- chains
|
||||||
|
volumes:
|
||||||
|
- .jwtsecret:/jwtsecret:ro
|
||||||
|
logging: *logging-defaults
|
||||||
|
labels:
|
||||||
|
- prometheus-scrape.enabled=true
|
||||||
|
- prometheus-scrape.port=7300
|
||||||
|
- prometheus-scrape.path=/metrics
|
||||||
|
- traefik.enable=true
|
||||||
|
- traefik.http.middlewares.soneium-minato-sepolia-op-geth-archive-leveldb-hash-node-stripprefix.stripprefix.prefixes=/soneium-minato-sepolia-archive/node
|
||||||
|
- traefik.http.services.soneium-minato-sepolia-op-geth-archive-leveldb-hash-node.loadbalancer.server.port=8547
|
||||||
|
- ${NO_SSL:-traefik.http.routers.soneium-minato-sepolia-op-geth-archive-leveldb-hash-node.entrypoints=websecure}
|
||||||
|
- ${NO_SSL:-traefik.http.routers.soneium-minato-sepolia-op-geth-archive-leveldb-hash-node.tls.certresolver=myresolver}
|
||||||
|
- ${NO_SSL:-traefik.http.routers.soneium-minato-sepolia-op-geth-archive-leveldb-hash-node.rule=Host(`$DOMAIN`) && PathPrefix(`soneium-minato-sepolia-archive/node`)}
|
||||||
|
- ${NO_SSL:+traefik.http.routers.soneium-minato-sepolia-op-geth-archive-leveldb-hash-node.rule=PathPrefix(`soneium-minato-sepolia-archive/node`)}
|
||||||
|
- traefik.http.routers.soneium-minato-sepolia-op-geth-archive-leveldb-hash-node.middlewares=soneium-minato-sepolia-op-geth-archive-leveldb-hash-node-stripprefix, ipallowlist
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
soneium-minato-sepolia-op-geth-archive-leveldb-hash:
|
||||||
|
|
||||||
|
x-upstreams:
|
||||||
|
- id: $${ID}
|
||||||
|
labels:
|
||||||
|
provider: $${PROVIDER}
|
||||||
|
connection:
|
||||||
|
generic:
|
||||||
|
rpc:
|
||||||
|
url: $${RPC_URL}
|
||||||
|
ws:
|
||||||
|
frameSize: 20Mb
|
||||||
|
msgSize: 50Mb
|
||||||
|
url: $${WS_URL}
|
||||||
|
chain: soneium
|
||||||
|
method-groups:
|
||||||
|
enabled:
|
||||||
|
- debug
|
||||||
|
- filter
|
||||||
|
methods:
|
||||||
|
disabled:
|
||||||
|
enabled:
|
||||||
|
- name: txpool_content # TODO: should be disabled for rollup nodes
|
||||||
|
# standard geth only
|
||||||
|
- name: debug_getRawBlock
|
||||||
|
- name: debug_getRawTransaction
|
||||||
|
- name: debug_getRawReceipts
|
||||||
|
- name: debug_getRawHeader
|
||||||
|
- name: debug_getBadBlocks
|
||||||
|
# non standard geth only slightly dangerous
|
||||||
|
- name: debug_intermediateRoots
|
||||||
|
- name: debug_dumpBlock
|
||||||
|
# standard geth and erigon
|
||||||
|
- name: debug_accountRange
|
||||||
|
- name: debug_getModifiedAccountsByNumber
|
||||||
|
- name: debug_getModifiedAccountsByHash
|
||||||
|
# non standard geth and erigon
|
||||||
|
- name: eth_getRawTransactionByHash
|
||||||
|
- name: eth_getRawTransactionByBlockHashAndIndex
|
||||||
|
...
|
||||||
203
op/geth/soneium-minato-sepolia-op-geth-pruned-pebble-path.yml
Normal file
203
op/geth/soneium-minato-sepolia-op-geth-pruned-pebble-path.yml
Normal file
@@ -0,0 +1,203 @@
|
|||||||
|
---
|
||||||
|
x-logging-defaults: &logging-defaults
|
||||||
|
driver: json-file
|
||||||
|
options:
|
||||||
|
max-size: "10m"
|
||||||
|
max-file: "3"
|
||||||
|
|
||||||
|
# Usage:
|
||||||
|
#
|
||||||
|
# mkdir rpc && cd rpc
|
||||||
|
#
|
||||||
|
# git init
|
||||||
|
# git remote add origin https://github.com/StakeSquid/ethereum-rpc-docker.git
|
||||||
|
# git fetch origin vibe
|
||||||
|
# git checkout origin/vibe
|
||||||
|
#
|
||||||
|
# docker run --rm alpine sh -c "printf '0x'; head -c32 /dev/urandom | xxd -p -c 64" > .jwtsecret
|
||||||
|
#
|
||||||
|
# env
|
||||||
|
# ...
|
||||||
|
# IP=$(curl ipinfo.io/ip)
|
||||||
|
# DOMAIN=${IP}.traefik.me
|
||||||
|
# COMPOSE_FILE=base.yml:rpc.yml:op/geth/soneium-minato-sepolia-op-geth-pruned-pebble-path.yml
|
||||||
|
#
|
||||||
|
# docker compose up -d
|
||||||
|
#
|
||||||
|
# curl -X POST https://${IP}.traefik.me/soneium-minato-sepolia \
|
||||||
|
# -H "Content-Type: application/json" \
|
||||||
|
# --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
|
||||||
|
|
||||||
|
services:
|
||||||
|
soneium-minato-sepolia:
|
||||||
|
image: ${SONEIUM_GETH_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-geth}:${SONEIUM_MINATO_SEPOLIA_GETH_VERSION:-v1.101602.3}
|
||||||
|
sysctls:
|
||||||
|
# TCP Performance
|
||||||
|
net.ipv4.tcp_slow_start_after_idle: 0 # Disable slow start after idle
|
||||||
|
net.ipv4.tcp_no_metrics_save: 1 # Disable metrics cache
|
||||||
|
net.ipv4.tcp_rmem: 4096 87380 16777216 # Increase TCP read buffers
|
||||||
|
net.ipv4.tcp_wmem: 4096 87380 16777216 # Increase TCP write buffers
|
||||||
|
net.core.somaxconn: 32768 # Higher connection queue
|
||||||
|
# Memory/Connection Management
|
||||||
|
# net.core.netdev_max_backlog: 50000 # Increase network buffer
|
||||||
|
net.ipv4.tcp_max_syn_backlog: 30000 # More SYN requests
|
||||||
|
net.ipv4.tcp_max_tw_buckets: 2000000 # Allow more TIME_WAIT sockets
|
||||||
|
ulimits:
|
||||||
|
nofile: 1048576 # Max open files (for RPC/WS connections)
|
||||||
|
user: root
|
||||||
|
ports:
|
||||||
|
- 12166:12166
|
||||||
|
- 12166:12166/udp
|
||||||
|
expose:
|
||||||
|
- 8545
|
||||||
|
- 6060
|
||||||
|
- 8551
|
||||||
|
environment:
|
||||||
|
- GETH_OP_NETWORK=soneium-minato-sepolia
|
||||||
|
- GETH_ROLLUP_DISABLETXPOOLGOSSIP=true
|
||||||
|
- GETH_ROLLUP_SEQUENCERHTTP=https://rpc.soneium.org
|
||||||
|
entrypoint: /bin/sh -c 'exec geth "$@"' --
|
||||||
|
command:
|
||||||
|
- --datadir=/data
|
||||||
|
- --db.engine=pebble
|
||||||
|
- --gcmode=full
|
||||||
|
- --maxpeers=50
|
||||||
|
- --metrics
|
||||||
|
- --metrics.addr=0.0.0.0
|
||||||
|
- --metrics.port=6060
|
||||||
|
- --nat=extip:${IP}
|
||||||
|
- --port=12166
|
||||||
|
- --rpc.gascap=600000000
|
||||||
|
- --rpc.txfeecap=0
|
||||||
|
- --state.scheme=path
|
||||||
|
- --syncmode=snap
|
||||||
|
- --http
|
||||||
|
- --http.addr=0.0.0.0
|
||||||
|
- --http.api=eth,net,web3,debug,admin,txpool,engine
|
||||||
|
- --http.port=8545
|
||||||
|
- --http.vhosts=*
|
||||||
|
- --ws
|
||||||
|
- --ws.addr=0.0.0.0
|
||||||
|
- --ws.api=eth,net,web3,debug,admin,txpool,engine
|
||||||
|
- --ws.origins=*
|
||||||
|
- --ws.port=8545
|
||||||
|
- --authrpc.addr=0.0.0.0
|
||||||
|
- --authrpc.jwtsecret=/jwtsecret
|
||||||
|
- --authrpc.vhosts=*
|
||||||
|
restart: unless-stopped
|
||||||
|
stop_grace_period: 5m
|
||||||
|
networks:
|
||||||
|
- chains
|
||||||
|
volumes:
|
||||||
|
- ${SONEIUM_MINATO_SEPOLIA_OP_GETH_PRUNED_PEBBLE_PATH_DATA:-soneium-minato-sepolia-op-geth-pruned-pebble-path}:/data
|
||||||
|
- .jwtsecret:/jwtsecret:ro
|
||||||
|
- /slowdisk:/slowdisk
|
||||||
|
logging: *logging-defaults
|
||||||
|
labels:
|
||||||
|
- prometheus-scrape.enabled=true
|
||||||
|
- prometheus-scrape.port=6060
|
||||||
|
- prometheus-scrape.path=/debug/metrics/prometheus
|
||||||
|
- traefik.enable=true
|
||||||
|
- traefik.http.middlewares.soneium-minato-sepolia-op-geth-pruned-pebble-path-stripprefix.stripprefix.prefixes=/soneium-minato-sepolia
|
||||||
|
- traefik.http.services.soneium-minato-sepolia-op-geth-pruned-pebble-path.loadbalancer.server.port=8545
|
||||||
|
- ${NO_SSL:-traefik.http.routers.soneium-minato-sepolia-op-geth-pruned-pebble-path.entrypoints=websecure}
|
||||||
|
- ${NO_SSL:-traefik.http.routers.soneium-minato-sepolia-op-geth-pruned-pebble-path.tls.certresolver=myresolver}
|
||||||
|
- ${NO_SSL:-traefik.http.routers.soneium-minato-sepolia-op-geth-pruned-pebble-path.rule=Host(`$DOMAIN`) && (Path(`/soneium-minato-sepolia`) || Path(`/soneium-minato-sepolia/`))}
|
||||||
|
- ${NO_SSL:+traefik.http.routers.soneium-minato-sepolia-op-geth-pruned-pebble-path.rule=Path(`/soneium-minato-sepolia`) || Path(`/soneium-minato-sepolia/`)}
|
||||||
|
- traefik.http.routers.soneium-minato-sepolia-op-geth-pruned-pebble-path.middlewares=soneium-minato-sepolia-op-geth-pruned-pebble-path-stripprefix, ipallowlist
|
||||||
|
|
||||||
|
soneium-minato-sepolia-node:
|
||||||
|
image: ${SONEIUM_NODE_IMAGE:-us-docker.pkg.dev/oplabs-tools-artifacts/images/op-node}:${SONEIUM_MINATO_SEPOLIA_NODE_VERSION:-v1.13.7}
|
||||||
|
ports:
|
||||||
|
- 17166:17166
|
||||||
|
- 17166:17166/udp
|
||||||
|
environment:
|
||||||
|
- OP_NODE_L1_BEACON=${ETHEREUM_MINATO-SEPOLIA_BEACON_REST}
|
||||||
|
- OP_NODE_L1_BEACON_ARCHIVER=${ETHEREUM_MINATO-SEPOLIA_BEACON_ARCHIVER}
|
||||||
|
- OP_NODE_L1_ETH_RPC=${ETHEREUM_MINATO-SEPOLIA_EXECUTION_RPC}
|
||||||
|
- OP_NODE_L1_RPC_KIND=${ETHEREUM_MINATO-SEPOLIA_EXECUTION_KIND:-basic}
|
||||||
|
- OP_NODE_L1_TRUST_RPC=${ETHEREUM_MINATO-SEPOLIA_EXECUTION_TRUST:-false}
|
||||||
|
- OP_NODE_L2_ENGINE_AUTH=/jwtsecret
|
||||||
|
- OP_NODE_L2_ENGINE_RPC=http://soneium-minato-sepolia:8551
|
||||||
|
- OP_NODE_L2_SKIP_SYNC_START_CHECK=true
|
||||||
|
- OP_NODE_LOG_LEVEL=info
|
||||||
|
- OP_NODE_METRICS_ADDR=0.0.0.0
|
||||||
|
- OP_NODE_METRICS_ENABLED=true
|
||||||
|
- OP_NODE_METRICS_PORT=7300
|
||||||
|
- OP_NODE_METRIC_ENABLED=true
|
||||||
|
- OP_NODE_NETWORK=soneium-minato-sepolia
|
||||||
|
- OP_NODE_P2P_ADVERTISE_IP=${IP}
|
||||||
|
- OP_NODE_P2P_LISTEN_IP=0.0.0.0
|
||||||
|
- OP_NODE_P2P_LISTEN_TCP_PORT=17166
|
||||||
|
- OP_NODE_P2P_LISTEN_UDP_PORT=17166
|
||||||
|
- OP_NODE_ROLLUP_LOAD_PROTOCOL_VERSIONS=true
|
||||||
|
- OP_NODE_RPC_ADDR=0.0.0.0
|
||||||
|
- OP_NODE_RPC_PORT=8545
|
||||||
|
- OP_NODE_SNAPSHOT_LOG=/tmp/op-node-snapshot-log
|
||||||
|
- OP_NODE_SYNCMODE=execution-layer
|
||||||
|
- OP_NODE_VERIFIER_L1_CONFS=0
|
||||||
|
entrypoint: [op-node]
|
||||||
|
restart: unless-stopped
|
||||||
|
depends_on:
|
||||||
|
- soneium-minato-sepolia
|
||||||
|
networks:
|
||||||
|
- chains
|
||||||
|
volumes:
|
||||||
|
- .jwtsecret:/jwtsecret:ro
|
||||||
|
logging: *logging-defaults
|
||||||
|
labels:
|
||||||
|
- prometheus-scrape.enabled=true
|
||||||
|
- prometheus-scrape.port=7300
|
||||||
|
- prometheus-scrape.path=/metrics
|
||||||
|
- traefik.enable=true
|
||||||
|
- traefik.http.middlewares.soneium-minato-sepolia-op-geth-pruned-pebble-path-node-stripprefix.stripprefix.prefixes=/soneium-minato-sepolia/node
|
||||||
|
- traefik.http.services.soneium-minato-sepolia-op-geth-pruned-pebble-path-node.loadbalancer.server.port=8547
|
||||||
|
- ${NO_SSL:-traefik.http.routers.soneium-minato-sepolia-op-geth-pruned-pebble-path-node.entrypoints=websecure}
|
||||||
|
- ${NO_SSL:-traefik.http.routers.soneium-minato-sepolia-op-geth-pruned-pebble-path-node.tls.certresolver=myresolver}
|
||||||
|
- ${NO_SSL:-traefik.http.routers.soneium-minato-sepolia-op-geth-pruned-pebble-path-node.rule=Host(`$DOMAIN`) && PathPrefix(`soneium-minato-sepolia/node`)}
|
||||||
|
- ${NO_SSL:+traefik.http.routers.soneium-minato-sepolia-op-geth-pruned-pebble-path-node.rule=PathPrefix(`soneium-minato-sepolia/node`)}
|
||||||
|
- traefik.http.routers.soneium-minato-sepolia-op-geth-pruned-pebble-path-node.middlewares=soneium-minato-sepolia-op-geth-pruned-pebble-path-node-stripprefix, ipallowlist
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
soneium-minato-sepolia-op-geth-pruned-pebble-path:
|
||||||
|
|
||||||
|
x-upstreams:
|
||||||
|
- id: $${ID}
|
||||||
|
labels:
|
||||||
|
provider: $${PROVIDER}
|
||||||
|
connection:
|
||||||
|
generic:
|
||||||
|
rpc:
|
||||||
|
url: $${RPC_URL}
|
||||||
|
ws:
|
||||||
|
frameSize: 20Mb
|
||||||
|
msgSize: 50Mb
|
||||||
|
url: $${WS_URL}
|
||||||
|
chain: soneium
|
||||||
|
method-groups:
|
||||||
|
enabled:
|
||||||
|
- debug
|
||||||
|
- filter
|
||||||
|
methods:
|
||||||
|
disabled:
|
||||||
|
# not compatible with path state scheme
|
||||||
|
- name: debug_traceBlockByHash
|
||||||
|
enabled:
|
||||||
|
- name: txpool_content # TODO: should be disabled for rollup nodes
|
||||||
|
# standard geth only
|
||||||
|
- name: debug_getRawBlock
|
||||||
|
- name: debug_getRawTransaction
|
||||||
|
- name: debug_getRawReceipts
|
||||||
|
- name: debug_getRawHeader
|
||||||
|
- name: debug_getBadBlocks
|
||||||
|
# non standard geth only slightly dangerous
|
||||||
|
- name: debug_intermediateRoots
|
||||||
|
- name: debug_dumpBlock
|
||||||
|
# standard geth and erigon
|
||||||
|
- name: debug_accountRange
|
||||||
|
- name: debug_getModifiedAccountsByNumber
|
||||||
|
- name: debug_getModifiedAccountsByHash
|
||||||
|
# non standard geth and erigon
|
||||||
|
- name: eth_getRawTransactionByHash
|
||||||
|
- name: eth_getRawTransactionByBlockHashAndIndex
|
||||||
|
...
|
||||||
Reference in New Issue
Block a user