gnosis reth
This commit is contained in:
180
gnosis/reth/gnosis-chiado-reth-archive-trace.yml
Normal file
180
gnosis/reth/gnosis-chiado-reth-archive-trace.yml
Normal file
@@ -0,0 +1,180 @@
|
||||
---
|
||||
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:gnosis/reth/gnosis-chiado-reth-archive-trace.yml
|
||||
#
|
||||
# docker compose up -d
|
||||
#
|
||||
# curl -X POST https://${IP}.traefik.me/gnosis-chiado-reth \
|
||||
# -H "Content-Type: application/json" \
|
||||
# --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
|
||||
|
||||
services:
|
||||
gnosis-chiado-reth:
|
||||
image: ${GNOSIS_RETH_IMAGE:-ghcr.io/paradigmxyz/reth}:${GNOSIS_CHIADO_RETH_VERSION:-v1.8.2}
|
||||
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:
|
||||
- 13769:13769
|
||||
- 13769:13769/udp
|
||||
expose:
|
||||
- 8545
|
||||
- 9001
|
||||
- 8551
|
||||
entrypoint: [reth, node]
|
||||
command:
|
||||
- --chain=chiado
|
||||
- --datadir=/root/.local/share/reth
|
||||
- --discovery.port=13769
|
||||
- --engine.cross-block-cache-size=${GNOSIS_CHIADO_RETH_STATE_CACHE:-4096}
|
||||
- --engine.memory-block-buffer-target=0
|
||||
- --engine.persistence-threshold=0
|
||||
- --max-inbound-peers=50
|
||||
- --max-outbound-peers=50
|
||||
- --metrics=0.0.0.0:9001
|
||||
- --nat=extip:${IP}
|
||||
- --port=13769
|
||||
- --rpc-cache.max-blocks=10000
|
||||
- --rpc-cache.max-concurrent-db-requests=2048
|
||||
- --rpc.gascap=600000000
|
||||
- --rpc.max-blocks-per-filter=0
|
||||
- --rpc.max-connections=50000
|
||||
- --rpc.max-logs-per-response=0
|
||||
- --http
|
||||
- --http.addr=0.0.0.0
|
||||
- --http.api=admin,debug,eth,net,trace,txpool,web3,rpc,reth,ots,flashbots,mev
|
||||
- --http.corsdomain=*
|
||||
- --http.port=8545
|
||||
- --ws
|
||||
- --ws.addr=0.0.0.0
|
||||
- --ws.api=admin,debug,eth,net,trace,txpool,web3,rpc,reth,ots,flashbots,mev
|
||||
- --ws.origins=*
|
||||
- --ws.port=8545
|
||||
- --authrpc.addr=0.0.0.0
|
||||
- --authrpc.jwtsecret=/jwtsecret
|
||||
restart: unless-stopped
|
||||
stop_grace_period: 5m
|
||||
networks:
|
||||
- chains
|
||||
volumes:
|
||||
- ${GNOSIS_CHIADO_RETH_ARCHIVE_TRACE_DATA:-gnosis-chiado-reth-archive-trace}:/root/.local/share/reth
|
||||
- .jwtsecret:/jwtsecret:ro
|
||||
- /slowdisk:/slowdisk
|
||||
logging: *logging-defaults
|
||||
labels:
|
||||
- prometheus-scrape.enabled=true
|
||||
- prometheus-scrape.port=9001
|
||||
- prometheus-scrape.path=/metrics
|
||||
- traefik.enable=true
|
||||
- traefik.http.middlewares.gnosis-chiado-reth-archive-trace-stripprefix.stripprefix.prefixes=/gnosis-chiado-reth
|
||||
- traefik.http.services.gnosis-chiado-reth-archive-trace.loadbalancer.server.port=8545
|
||||
- ${NO_SSL:-traefik.http.routers.gnosis-chiado-reth-archive-trace.entrypoints=websecure}
|
||||
- ${NO_SSL:-traefik.http.routers.gnosis-chiado-reth-archive-trace.tls.certresolver=myresolver}
|
||||
- ${NO_SSL:-traefik.http.routers.gnosis-chiado-reth-archive-trace.rule=Host(`$DOMAIN`) && (Path(`/gnosis-chiado-reth`) || Path(`/gnosis-chiado-reth/`))}
|
||||
- ${NO_SSL:+traefik.http.routers.gnosis-chiado-reth-archive-trace.rule=Path(`/gnosis-chiado-reth`) || Path(`/gnosis-chiado-reth/`)}
|
||||
- traefik.http.routers.gnosis-chiado-reth-archive-trace.middlewares=gnosis-chiado-reth-archive-trace-stripprefix, ipallowlist
|
||||
shm_size: 2gb
|
||||
|
||||
gnosis-chiado-reth-node:
|
||||
image: ${GNOSIS_NIMBUS_IMAGE:-ghcr.io/gnosischain/gnosis-nimbus-eth2}:${GNOSIS_CHIADO_NIMBUS_VERSION:-v25.7.1}
|
||||
user: root
|
||||
ports:
|
||||
- 18769:18769
|
||||
- 18769:18769/udp
|
||||
expose:
|
||||
- 3500
|
||||
entrypoint: /bin/sh -c '/home/user/nimbus_beacon_node trustedNodeSync --network=chiado --trusted-node-url=https://checkpoint.chiadochain.net --backfill=false; exec /home/user/nimbus_beacon_node "$@"' --
|
||||
command:
|
||||
- --history=prune
|
||||
- --jwt-secret=/jwtsecret
|
||||
- --metrics-address=0.0.0.0
|
||||
- --metrics-port=8008
|
||||
- --nat=extip:${IP}
|
||||
- --network=chiado
|
||||
- --rest
|
||||
- --rest-address=0.0.0.0
|
||||
- --rest-port=3500
|
||||
- --tcp-port=18769
|
||||
- --udp-port=18769
|
||||
- --web3-url=http://gnosis-chiado-reth:8551
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
- gnosis-chiado-reth
|
||||
networks:
|
||||
- chains
|
||||
volumes:
|
||||
- ${GNOSIS_CHIADO_RETH_ARCHIVE_TRACE__NIMBUS_DATA:-gnosis-chiado-reth-archive-trace_nimbus}:/root/.cache/nimbus/BeaconNode
|
||||
- .jwtsecret:/jwtsecret:ro
|
||||
logging: *logging-defaults
|
||||
labels:
|
||||
- prometheus-scrape.enabled=true
|
||||
- prometheus-scrape.port=8008
|
||||
- prometheus-scrape.path=/metrics
|
||||
|
||||
volumes:
|
||||
gnosis-chiado-reth-archive-trace:
|
||||
gnosis-chiado-reth-archive-trace_nimbus:
|
||||
|
||||
x-upstreams:
|
||||
- id: $${ID}
|
||||
labels:
|
||||
provider: $${PROVIDER}
|
||||
connection:
|
||||
generic:
|
||||
rpc:
|
||||
url: $${RPC_URL}
|
||||
ws:
|
||||
frameSize: 20Mb
|
||||
msgSize: 50Mb
|
||||
url: $${WS_URL}
|
||||
chain: gnosis-chiado
|
||||
method-groups:
|
||||
enabled:
|
||||
- debug
|
||||
- filter
|
||||
- trace
|
||||
methods:
|
||||
disabled:
|
||||
enabled:
|
||||
- name: txpool_content # TODO: should be disabled for rollup nodes
|
||||
- id: $${ID}-beacon-chain
|
||||
chain: gnosis-beacon-chain-chiado
|
||||
labels:
|
||||
provider: $${PROVIDER}-beacon-chain
|
||||
connection:
|
||||
generic:
|
||||
rpc:
|
||||
url: $${RPC_URL}
|
||||
...
|
||||
181
gnosis/reth/gnosis-chiado-reth-pruned-trace.yml
Normal file
181
gnosis/reth/gnosis-chiado-reth-pruned-trace.yml
Normal file
@@ -0,0 +1,181 @@
|
||||
---
|
||||
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:gnosis/reth/gnosis-chiado-reth-pruned-trace.yml
|
||||
#
|
||||
# docker compose up -d
|
||||
#
|
||||
# curl -X POST https://${IP}.traefik.me/gnosis-chiado-reth-pruned \
|
||||
# -H "Content-Type: application/json" \
|
||||
# --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
|
||||
|
||||
services:
|
||||
gnosis-chiado-reth-pruned:
|
||||
image: ${GNOSIS_RETH_IMAGE:-ghcr.io/paradigmxyz/reth}:${GNOSIS_CHIADO_RETH_VERSION:-v1.8.2}
|
||||
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:
|
||||
- 10751:10751
|
||||
- 10751:10751/udp
|
||||
expose:
|
||||
- 8545
|
||||
- 9001
|
||||
- 8551
|
||||
entrypoint: [reth, node]
|
||||
command:
|
||||
- --chain=chiado
|
||||
- --datadir=/root/.local/share/reth
|
||||
- --discovery.port=10751
|
||||
- --engine.cross-block-cache-size=${GNOSIS_CHIADO_RETH_STATE_CACHE:-4096}
|
||||
- --engine.memory-block-buffer-target=0
|
||||
- --engine.persistence-threshold=0
|
||||
- --full
|
||||
- --max-inbound-peers=50
|
||||
- --max-outbound-peers=50
|
||||
- --metrics=0.0.0.0:9001
|
||||
- --nat=extip:${IP}
|
||||
- --port=10751
|
||||
- --rpc-cache.max-blocks=10000
|
||||
- --rpc-cache.max-concurrent-db-requests=2048
|
||||
- --rpc.gascap=600000000
|
||||
- --rpc.max-blocks-per-filter=0
|
||||
- --rpc.max-connections=50000
|
||||
- --rpc.max-logs-per-response=0
|
||||
- --http
|
||||
- --http.addr=0.0.0.0
|
||||
- --http.api=admin,debug,eth,net,trace,txpool,web3,rpc,reth,ots,flashbots,mev
|
||||
- --http.corsdomain=*
|
||||
- --http.port=8545
|
||||
- --ws
|
||||
- --ws.addr=0.0.0.0
|
||||
- --ws.api=admin,debug,eth,net,trace,txpool,web3,rpc,reth,ots,flashbots,mev
|
||||
- --ws.origins=*
|
||||
- --ws.port=8545
|
||||
- --authrpc.addr=0.0.0.0
|
||||
- --authrpc.jwtsecret=/jwtsecret
|
||||
restart: unless-stopped
|
||||
stop_grace_period: 5m
|
||||
networks:
|
||||
- chains
|
||||
volumes:
|
||||
- ${GNOSIS_CHIADO_RETH_PRUNED_TRACE_DATA:-gnosis-chiado-reth-pruned-trace}:/root/.local/share/reth
|
||||
- .jwtsecret:/jwtsecret:ro
|
||||
- /slowdisk:/slowdisk
|
||||
logging: *logging-defaults
|
||||
labels:
|
||||
- prometheus-scrape.enabled=true
|
||||
- prometheus-scrape.port=9001
|
||||
- prometheus-scrape.path=/metrics
|
||||
- traefik.enable=true
|
||||
- traefik.http.middlewares.gnosis-chiado-reth-pruned-trace-stripprefix.stripprefix.prefixes=/gnosis-chiado-reth-pruned
|
||||
- traefik.http.services.gnosis-chiado-reth-pruned-trace.loadbalancer.server.port=8545
|
||||
- ${NO_SSL:-traefik.http.routers.gnosis-chiado-reth-pruned-trace.entrypoints=websecure}
|
||||
- ${NO_SSL:-traefik.http.routers.gnosis-chiado-reth-pruned-trace.tls.certresolver=myresolver}
|
||||
- ${NO_SSL:-traefik.http.routers.gnosis-chiado-reth-pruned-trace.rule=Host(`$DOMAIN`) && (Path(`/gnosis-chiado-reth-pruned`) || Path(`/gnosis-chiado-reth-pruned/`))}
|
||||
- ${NO_SSL:+traefik.http.routers.gnosis-chiado-reth-pruned-trace.rule=Path(`/gnosis-chiado-reth-pruned`) || Path(`/gnosis-chiado-reth-pruned/`)}
|
||||
- traefik.http.routers.gnosis-chiado-reth-pruned-trace.middlewares=gnosis-chiado-reth-pruned-trace-stripprefix, ipallowlist
|
||||
shm_size: 2gb
|
||||
|
||||
gnosis-chiado-reth-pruned-node:
|
||||
image: ${GNOSIS_NIMBUS_IMAGE:-ghcr.io/gnosischain/gnosis-nimbus-eth2}:${GNOSIS_CHIADO_NIMBUS_VERSION:-v25.7.1}
|
||||
user: root
|
||||
ports:
|
||||
- 15751:15751
|
||||
- 15751:15751/udp
|
||||
expose:
|
||||
- 3500
|
||||
entrypoint: /bin/sh -c '/home/user/nimbus_beacon_node trustedNodeSync --network=chiado --trusted-node-url=https://checkpoint.chiadochain.net --backfill=false; exec /home/user/nimbus_beacon_node "$@"' --
|
||||
command:
|
||||
- --history=prune
|
||||
- --jwt-secret=/jwtsecret
|
||||
- --metrics-address=0.0.0.0
|
||||
- --metrics-port=8008
|
||||
- --nat=extip:${IP}
|
||||
- --network=chiado
|
||||
- --rest
|
||||
- --rest-address=0.0.0.0
|
||||
- --rest-port=3500
|
||||
- --tcp-port=15751
|
||||
- --udp-port=15751
|
||||
- --web3-url=http://gnosis-chiado-reth-pruned:8551
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
- gnosis-chiado-reth-pruned
|
||||
networks:
|
||||
- chains
|
||||
volumes:
|
||||
- ${GNOSIS_CHIADO_RETH_PRUNED_TRACE__NIMBUS_DATA:-gnosis-chiado-reth-pruned-trace_nimbus}:/root/.cache/nimbus/BeaconNode
|
||||
- .jwtsecret:/jwtsecret:ro
|
||||
logging: *logging-defaults
|
||||
labels:
|
||||
- prometheus-scrape.enabled=true
|
||||
- prometheus-scrape.port=8008
|
||||
- prometheus-scrape.path=/metrics
|
||||
|
||||
volumes:
|
||||
gnosis-chiado-reth-pruned-trace:
|
||||
gnosis-chiado-reth-pruned-trace_nimbus:
|
||||
|
||||
x-upstreams:
|
||||
- id: $${ID}
|
||||
labels:
|
||||
provider: $${PROVIDER}
|
||||
connection:
|
||||
generic:
|
||||
rpc:
|
||||
url: $${RPC_URL}
|
||||
ws:
|
||||
frameSize: 20Mb
|
||||
msgSize: 50Mb
|
||||
url: $${WS_URL}
|
||||
chain: gnosis-chiado
|
||||
method-groups:
|
||||
enabled:
|
||||
- debug
|
||||
- filter
|
||||
- trace
|
||||
methods:
|
||||
disabled:
|
||||
enabled:
|
||||
- name: txpool_content # TODO: should be disabled for rollup nodes
|
||||
- id: $${ID}-beacon-chain
|
||||
chain: gnosis-beacon-chain-chiado
|
||||
labels:
|
||||
provider: $${PROVIDER}-beacon-chain
|
||||
connection:
|
||||
generic:
|
||||
rpc:
|
||||
url: $${RPC_URL}
|
||||
...
|
||||
180
gnosis/reth/gnosis-mainnet-reth-archive-trace.yml
Normal file
180
gnosis/reth/gnosis-mainnet-reth-archive-trace.yml
Normal file
@@ -0,0 +1,180 @@
|
||||
---
|
||||
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:gnosis/reth/gnosis-mainnet-reth-archive-trace.yml
|
||||
#
|
||||
# docker compose up -d
|
||||
#
|
||||
# curl -X POST https://${IP}.traefik.me/gnosis-mainnet-reth \
|
||||
# -H "Content-Type: application/json" \
|
||||
# --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
|
||||
|
||||
services:
|
||||
gnosis-mainnet-reth:
|
||||
image: ${GNOSIS_RETH_IMAGE:-ghcr.io/paradigmxyz/reth}:${GNOSIS_MAINNET_RETH_VERSION:-v1.8.2}
|
||||
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:
|
||||
- 14921:14921
|
||||
- 14921:14921/udp
|
||||
expose:
|
||||
- 8545
|
||||
- 9001
|
||||
- 8551
|
||||
entrypoint: [reth, node]
|
||||
command:
|
||||
- --chain=gnosis
|
||||
- --datadir=/root/.local/share/reth
|
||||
- --discovery.port=14921
|
||||
- --engine.cross-block-cache-size=${GNOSIS_MAINNET_RETH_STATE_CACHE:-4096}
|
||||
- --engine.memory-block-buffer-target=0
|
||||
- --engine.persistence-threshold=0
|
||||
- --max-inbound-peers=50
|
||||
- --max-outbound-peers=50
|
||||
- --metrics=0.0.0.0:9001
|
||||
- --nat=extip:${IP}
|
||||
- --port=14921
|
||||
- --rpc-cache.max-blocks=10000
|
||||
- --rpc-cache.max-concurrent-db-requests=2048
|
||||
- --rpc.gascap=600000000
|
||||
- --rpc.max-blocks-per-filter=0
|
||||
- --rpc.max-connections=50000
|
||||
- --rpc.max-logs-per-response=0
|
||||
- --http
|
||||
- --http.addr=0.0.0.0
|
||||
- --http.api=admin,debug,eth,net,trace,txpool,web3,rpc,reth,ots,flashbots,mev
|
||||
- --http.corsdomain=*
|
||||
- --http.port=8545
|
||||
- --ws
|
||||
- --ws.addr=0.0.0.0
|
||||
- --ws.api=admin,debug,eth,net,trace,txpool,web3,rpc,reth,ots,flashbots,mev
|
||||
- --ws.origins=*
|
||||
- --ws.port=8545
|
||||
- --authrpc.addr=0.0.0.0
|
||||
- --authrpc.jwtsecret=/jwtsecret
|
||||
restart: unless-stopped
|
||||
stop_grace_period: 5m
|
||||
networks:
|
||||
- chains
|
||||
volumes:
|
||||
- ${GNOSIS_MAINNET_RETH_ARCHIVE_TRACE_DATA:-gnosis-mainnet-reth-archive-trace}:/root/.local/share/reth
|
||||
- .jwtsecret:/jwtsecret:ro
|
||||
- /slowdisk:/slowdisk
|
||||
logging: *logging-defaults
|
||||
labels:
|
||||
- prometheus-scrape.enabled=true
|
||||
- prometheus-scrape.port=9001
|
||||
- prometheus-scrape.path=/metrics
|
||||
- traefik.enable=true
|
||||
- traefik.http.middlewares.gnosis-mainnet-reth-archive-trace-stripprefix.stripprefix.prefixes=/gnosis-mainnet-reth
|
||||
- traefik.http.services.gnosis-mainnet-reth-archive-trace.loadbalancer.server.port=8545
|
||||
- ${NO_SSL:-traefik.http.routers.gnosis-mainnet-reth-archive-trace.entrypoints=websecure}
|
||||
- ${NO_SSL:-traefik.http.routers.gnosis-mainnet-reth-archive-trace.tls.certresolver=myresolver}
|
||||
- ${NO_SSL:-traefik.http.routers.gnosis-mainnet-reth-archive-trace.rule=Host(`$DOMAIN`) && (Path(`/gnosis-mainnet-reth`) || Path(`/gnosis-mainnet-reth/`))}
|
||||
- ${NO_SSL:+traefik.http.routers.gnosis-mainnet-reth-archive-trace.rule=Path(`/gnosis-mainnet-reth`) || Path(`/gnosis-mainnet-reth/`)}
|
||||
- traefik.http.routers.gnosis-mainnet-reth-archive-trace.middlewares=gnosis-mainnet-reth-archive-trace-stripprefix, ipallowlist
|
||||
shm_size: 2gb
|
||||
|
||||
gnosis-mainnet-reth-node:
|
||||
image: ${GNOSIS_NIMBUS_IMAGE:-ghcr.io/gnosischain/gnosis-nimbus-eth2}:${GNOSIS_MAINNET_NIMBUS_VERSION:-v25.7.1}
|
||||
user: root
|
||||
ports:
|
||||
- 19921:19921
|
||||
- 19921:19921/udp
|
||||
expose:
|
||||
- 3500
|
||||
entrypoint: /bin/sh -c '/home/user/nimbus_beacon_node trustedNodeSync --network=gnosis --trusted-node-url=https://checkpoint.gnosischain.com --backfill=false; exec /home/user/nimbus_beacon_node "$@"' --
|
||||
command:
|
||||
- --history=prune
|
||||
- --jwt-secret=/jwtsecret
|
||||
- --metrics-address=0.0.0.0
|
||||
- --metrics-port=8008
|
||||
- --nat=extip:${IP}
|
||||
- --network=gnosis
|
||||
- --rest
|
||||
- --rest-address=0.0.0.0
|
||||
- --rest-port=3500
|
||||
- --tcp-port=19921
|
||||
- --udp-port=19921
|
||||
- --web3-url=http://gnosis-mainnet-reth:8551
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
- gnosis-mainnet-reth
|
||||
networks:
|
||||
- chains
|
||||
volumes:
|
||||
- ${GNOSIS_MAINNET_RETH_ARCHIVE_TRACE__NIMBUS_DATA:-gnosis-mainnet-reth-archive-trace_nimbus}:/root/.cache/nimbus/BeaconNode
|
||||
- .jwtsecret:/jwtsecret:ro
|
||||
logging: *logging-defaults
|
||||
labels:
|
||||
- prometheus-scrape.enabled=true
|
||||
- prometheus-scrape.port=8008
|
||||
- prometheus-scrape.path=/metrics
|
||||
|
||||
volumes:
|
||||
gnosis-mainnet-reth-archive-trace:
|
||||
gnosis-mainnet-reth-archive-trace_nimbus:
|
||||
|
||||
x-upstreams:
|
||||
- id: $${ID}
|
||||
labels:
|
||||
provider: $${PROVIDER}
|
||||
connection:
|
||||
generic:
|
||||
rpc:
|
||||
url: $${RPC_URL}
|
||||
ws:
|
||||
frameSize: 20Mb
|
||||
msgSize: 50Mb
|
||||
url: $${WS_URL}
|
||||
chain: gnosis
|
||||
method-groups:
|
||||
enabled:
|
||||
- debug
|
||||
- filter
|
||||
- trace
|
||||
methods:
|
||||
disabled:
|
||||
enabled:
|
||||
- name: txpool_content # TODO: should be disabled for rollup nodes
|
||||
- id: $${ID}-beacon-chain
|
||||
chain: gnosis-beacon-chain
|
||||
labels:
|
||||
provider: $${PROVIDER}-beacon-chain
|
||||
connection:
|
||||
generic:
|
||||
rpc:
|
||||
url: $${RPC_URL}
|
||||
...
|
||||
181
gnosis/reth/gnosis-mainnet-reth-pruned-trace.yml
Normal file
181
gnosis/reth/gnosis-mainnet-reth-pruned-trace.yml
Normal file
@@ -0,0 +1,181 @@
|
||||
---
|
||||
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:gnosis/reth/gnosis-mainnet-reth-pruned-trace.yml
|
||||
#
|
||||
# docker compose up -d
|
||||
#
|
||||
# curl -X POST https://${IP}.traefik.me/gnosis-mainnet-reth-pruned \
|
||||
# -H "Content-Type: application/json" \
|
||||
# --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
|
||||
|
||||
services:
|
||||
gnosis-mainnet-reth-pruned:
|
||||
image: ${GNOSIS_RETH_IMAGE:-ghcr.io/paradigmxyz/reth}:${GNOSIS_MAINNET_RETH_VERSION:-v1.8.2}
|
||||
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:
|
||||
- 13516:13516
|
||||
- 13516:13516/udp
|
||||
expose:
|
||||
- 8545
|
||||
- 9001
|
||||
- 8551
|
||||
entrypoint: [reth, node]
|
||||
command:
|
||||
- --chain=gnosis
|
||||
- --datadir=/root/.local/share/reth
|
||||
- --discovery.port=13516
|
||||
- --engine.cross-block-cache-size=${GNOSIS_MAINNET_RETH_STATE_CACHE:-4096}
|
||||
- --engine.memory-block-buffer-target=0
|
||||
- --engine.persistence-threshold=0
|
||||
- --full
|
||||
- --max-inbound-peers=50
|
||||
- --max-outbound-peers=50
|
||||
- --metrics=0.0.0.0:9001
|
||||
- --nat=extip:${IP}
|
||||
- --port=13516
|
||||
- --rpc-cache.max-blocks=10000
|
||||
- --rpc-cache.max-concurrent-db-requests=2048
|
||||
- --rpc.gascap=600000000
|
||||
- --rpc.max-blocks-per-filter=0
|
||||
- --rpc.max-connections=50000
|
||||
- --rpc.max-logs-per-response=0
|
||||
- --http
|
||||
- --http.addr=0.0.0.0
|
||||
- --http.api=admin,debug,eth,net,trace,txpool,web3,rpc,reth,ots,flashbots,mev
|
||||
- --http.corsdomain=*
|
||||
- --http.port=8545
|
||||
- --ws
|
||||
- --ws.addr=0.0.0.0
|
||||
- --ws.api=admin,debug,eth,net,trace,txpool,web3,rpc,reth,ots,flashbots,mev
|
||||
- --ws.origins=*
|
||||
- --ws.port=8545
|
||||
- --authrpc.addr=0.0.0.0
|
||||
- --authrpc.jwtsecret=/jwtsecret
|
||||
restart: unless-stopped
|
||||
stop_grace_period: 5m
|
||||
networks:
|
||||
- chains
|
||||
volumes:
|
||||
- ${GNOSIS_MAINNET_RETH_PRUNED_TRACE_DATA:-gnosis-mainnet-reth-pruned-trace}:/root/.local/share/reth
|
||||
- .jwtsecret:/jwtsecret:ro
|
||||
- /slowdisk:/slowdisk
|
||||
logging: *logging-defaults
|
||||
labels:
|
||||
- prometheus-scrape.enabled=true
|
||||
- prometheus-scrape.port=9001
|
||||
- prometheus-scrape.path=/metrics
|
||||
- traefik.enable=true
|
||||
- traefik.http.middlewares.gnosis-mainnet-reth-pruned-trace-stripprefix.stripprefix.prefixes=/gnosis-mainnet-reth-pruned
|
||||
- traefik.http.services.gnosis-mainnet-reth-pruned-trace.loadbalancer.server.port=8545
|
||||
- ${NO_SSL:-traefik.http.routers.gnosis-mainnet-reth-pruned-trace.entrypoints=websecure}
|
||||
- ${NO_SSL:-traefik.http.routers.gnosis-mainnet-reth-pruned-trace.tls.certresolver=myresolver}
|
||||
- ${NO_SSL:-traefik.http.routers.gnosis-mainnet-reth-pruned-trace.rule=Host(`$DOMAIN`) && (Path(`/gnosis-mainnet-reth-pruned`) || Path(`/gnosis-mainnet-reth-pruned/`))}
|
||||
- ${NO_SSL:+traefik.http.routers.gnosis-mainnet-reth-pruned-trace.rule=Path(`/gnosis-mainnet-reth-pruned`) || Path(`/gnosis-mainnet-reth-pruned/`)}
|
||||
- traefik.http.routers.gnosis-mainnet-reth-pruned-trace.middlewares=gnosis-mainnet-reth-pruned-trace-stripprefix, ipallowlist
|
||||
shm_size: 2gb
|
||||
|
||||
gnosis-mainnet-reth-pruned-node:
|
||||
image: ${GNOSIS_NIMBUS_IMAGE:-ghcr.io/gnosischain/gnosis-nimbus-eth2}:${GNOSIS_MAINNET_NIMBUS_VERSION:-v25.7.1}
|
||||
user: root
|
||||
ports:
|
||||
- 18516:18516
|
||||
- 18516:18516/udp
|
||||
expose:
|
||||
- 3500
|
||||
entrypoint: /bin/sh -c '/home/user/nimbus_beacon_node trustedNodeSync --network=gnosis --trusted-node-url=https://checkpoint.gnosischain.com --backfill=false; exec /home/user/nimbus_beacon_node "$@"' --
|
||||
command:
|
||||
- --history=prune
|
||||
- --jwt-secret=/jwtsecret
|
||||
- --metrics-address=0.0.0.0
|
||||
- --metrics-port=8008
|
||||
- --nat=extip:${IP}
|
||||
- --network=gnosis
|
||||
- --rest
|
||||
- --rest-address=0.0.0.0
|
||||
- --rest-port=3500
|
||||
- --tcp-port=18516
|
||||
- --udp-port=18516
|
||||
- --web3-url=http://gnosis-mainnet-reth-pruned:8551
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
- gnosis-mainnet-reth-pruned
|
||||
networks:
|
||||
- chains
|
||||
volumes:
|
||||
- ${GNOSIS_MAINNET_RETH_PRUNED_TRACE__NIMBUS_DATA:-gnosis-mainnet-reth-pruned-trace_nimbus}:/root/.cache/nimbus/BeaconNode
|
||||
- .jwtsecret:/jwtsecret:ro
|
||||
logging: *logging-defaults
|
||||
labels:
|
||||
- prometheus-scrape.enabled=true
|
||||
- prometheus-scrape.port=8008
|
||||
- prometheus-scrape.path=/metrics
|
||||
|
||||
volumes:
|
||||
gnosis-mainnet-reth-pruned-trace:
|
||||
gnosis-mainnet-reth-pruned-trace_nimbus:
|
||||
|
||||
x-upstreams:
|
||||
- id: $${ID}
|
||||
labels:
|
||||
provider: $${PROVIDER}
|
||||
connection:
|
||||
generic:
|
||||
rpc:
|
||||
url: $${RPC_URL}
|
||||
ws:
|
||||
frameSize: 20Mb
|
||||
msgSize: 50Mb
|
||||
url: $${WS_URL}
|
||||
chain: gnosis
|
||||
method-groups:
|
||||
enabled:
|
||||
- debug
|
||||
- filter
|
||||
- trace
|
||||
methods:
|
||||
disabled:
|
||||
enabled:
|
||||
- name: txpool_content # TODO: should be disabled for rollup nodes
|
||||
- id: $${ID}-beacon-chain
|
||||
chain: gnosis-beacon-chain
|
||||
labels:
|
||||
provider: $${PROVIDER}-beacon-chain
|
||||
connection:
|
||||
generic:
|
||||
rpc:
|
||||
url: $${RPC_URL}
|
||||
...
|
||||
Reference in New Issue
Block a user