make sepolia proud again
This commit is contained in:
92
erigon-sepolia-fullnode.yml
Normal file
92
erigon-sepolia-fullnode.yml
Normal file
@@ -0,0 +1,92 @@
|
|||||||
|
version: '3.1'
|
||||||
|
|
||||||
|
services:
|
||||||
|
erigon-sepolia-fullnode:
|
||||||
|
image: thorax/erigon:v2.57.3
|
||||||
|
user: root
|
||||||
|
expose:
|
||||||
|
- "16630"
|
||||||
|
- "9090"
|
||||||
|
- "8545"
|
||||||
|
- "8551"
|
||||||
|
ports:
|
||||||
|
- "44081:44081"
|
||||||
|
- "44081:44081/udp"
|
||||||
|
volumes:
|
||||||
|
- erigon-sepolia-fullnode:/root/.local/share/erigon
|
||||||
|
- /slowdisk:/slowdisk
|
||||||
|
- .jwtsecret:/jwtsecret
|
||||||
|
networks:
|
||||||
|
- chains
|
||||||
|
command: >
|
||||||
|
--chain sepolia
|
||||||
|
--prune.h.older=128
|
||||||
|
--prune.r.older=128
|
||||||
|
--prune.t.older=128
|
||||||
|
--prune.c.older=128
|
||||||
|
--port=44081
|
||||||
|
--metrics --metrics.addr=0.0.0.0 --metrics.port=6060
|
||||||
|
--private.api.addr=0.0.0.0:9090
|
||||||
|
--torrent.upload.rate="1250mb"
|
||||||
|
--torrent.download.rate="1250mb"
|
||||||
|
--nat=stun
|
||||||
|
--pprof
|
||||||
|
--pprof.addr=0.0.0.0
|
||||||
|
--pprof.port=6061
|
||||||
|
--authrpc.addr=0.0.0.0
|
||||||
|
--authrpc.vhosts=*
|
||||||
|
--authrpc.jwtsecret=/jwtsecret
|
||||||
|
--http.addr=0.0.0.0
|
||||||
|
--http.vhosts=*
|
||||||
|
--http.corsdomain=*
|
||||||
|
--http.api=eth,erigon,web3,net,debug,trace,txpool
|
||||||
|
--rpc.returndata.limit=1100000
|
||||||
|
--rpc.gascap=5000000000
|
||||||
|
--ws
|
||||||
|
restart: unless-stopped
|
||||||
|
stop_grace_period: 1m
|
||||||
|
labels:
|
||||||
|
- "prometheus-scrape.enabled=true"
|
||||||
|
- "prometheus-scrape.port=6060"
|
||||||
|
- "prometheus-scrape.job_name=erigon"
|
||||||
|
- "prometheus-scrape.metrics_path=/debug/metrics/prometheus"
|
||||||
|
- "traefik.enable=true"
|
||||||
|
- "traefik.http.middlewares.erigon-sepolia-fullnode-stripprefix.stripprefix.prefixes=/sepolia-erigon-fullnode"
|
||||||
|
- "traefik.http.services.erigon-sepolia-fullnode.loadbalancer.server.port=8545"
|
||||||
|
- "traefik.http.routers.erigon-sepolia-fullnode.entrypoints=websecure"
|
||||||
|
- "traefik.http.routers.erigon-sepolia-fullnode.tls.certresolver=myresolver"
|
||||||
|
- "traefik.http.routers.erigon-sepolia-fullnode.rule=Host(`$DOMAIN`) && PathPrefix(`/sepolia-erigon-fullnode`)"
|
||||||
|
- "traefik.http.routers.erigon-sepolia-fullnode.middlewares=erigon-sepolia-fullnode-stripprefix, ipwhitelist"
|
||||||
|
|
||||||
|
prysm-sepolia-erigon-fullnode:
|
||||||
|
image: prysmaticlabs/prysm-beacon-chain:stable
|
||||||
|
ports:
|
||||||
|
#- "127.0.0.1:3500:3500"
|
||||||
|
- "36997:36997"
|
||||||
|
- "36997:36997/udp"
|
||||||
|
command:
|
||||||
|
[
|
||||||
|
"--datadir=/data",
|
||||||
|
"--sepolia",
|
||||||
|
"--jwt-secret=/jwtsecret",
|
||||||
|
"--rpc-host=0.0.0.0",
|
||||||
|
"--grpc-gateway-host=0.0.0.0",
|
||||||
|
"--monitoring-host=0.0.0.0",
|
||||||
|
"--p2p-tcp-port=36997",
|
||||||
|
"--p2p-udp-port=36997",
|
||||||
|
"--checkpoint-sync-url=https://sepolia-checkpoint-sync.stakely.io",
|
||||||
|
"--execution-endpoint=http://erigon-sepolia-fullnode:8551",
|
||||||
|
"--accept-terms-of-use"
|
||||||
|
]
|
||||||
|
networks:
|
||||||
|
- chains
|
||||||
|
volumes:
|
||||||
|
- "prysm-sepolia-erigon-fullnode:/data"
|
||||||
|
- ".jwtsecret:/jwtsecret"
|
||||||
|
restart: unless-stopped
|
||||||
|
stop_grace_period: 1m
|
||||||
|
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
erigon-sepolia-fullnode:
|
||||||
|
prysm-sepolia-erigon-fullnode:
|
||||||
27
erigon-sepolia.cfg
Normal file
27
erigon-sepolia.cfg
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
- id: ${ID}
|
||||||
|
chain: ${CHAIN}
|
||||||
|
labels:
|
||||||
|
provider: ${PROVIDER}
|
||||||
|
method-groups:
|
||||||
|
enabled:
|
||||||
|
- debug
|
||||||
|
- filter
|
||||||
|
methods:
|
||||||
|
enabled:
|
||||||
|
- name: txpool_content
|
||||||
|
connection:
|
||||||
|
generic:
|
||||||
|
rpc:
|
||||||
|
url: "${RPC_URL}"
|
||||||
|
ws:
|
||||||
|
frameSize: 20Mb
|
||||||
|
msgSize: 50Mb
|
||||||
|
url: "${WS_URL}"
|
||||||
|
- id: ${ID}-beacon-chain
|
||||||
|
chain: eth-beacon-chain-sepolia
|
||||||
|
labels:
|
||||||
|
provider: ${PROVIDER}-beacon-chain
|
||||||
|
connection:
|
||||||
|
generic:
|
||||||
|
rpc:
|
||||||
|
url: "${RPC_URL}"
|
||||||
77
erigon-sepolia.yml
Normal file
77
erigon-sepolia.yml
Normal file
@@ -0,0 +1,77 @@
|
|||||||
|
version: '3.1'
|
||||||
|
|
||||||
|
services:
|
||||||
|
erigon-sepolia:
|
||||||
|
image: thorax/erigon:v2.59.3
|
||||||
|
user: root
|
||||||
|
expose:
|
||||||
|
- "31337"
|
||||||
|
- "9090"
|
||||||
|
- "8545"
|
||||||
|
- "8551"
|
||||||
|
ports:
|
||||||
|
- "31337:31337"
|
||||||
|
- "31337:31337/udp"
|
||||||
|
volumes:
|
||||||
|
- erigon-sepolia:/root/.local/share/erigon
|
||||||
|
- /slowdisk:/slowdisk
|
||||||
|
- .jwtsecret:/jwtsecret
|
||||||
|
networks:
|
||||||
|
- chains
|
||||||
|
command: >
|
||||||
|
--chain sepolia
|
||||||
|
--internalcl
|
||||||
|
--caplin.archive
|
||||||
|
--caplin.backfilling
|
||||||
|
--caplin.backfilling.blob
|
||||||
|
--caplin.backfilling.blob.no-pruning
|
||||||
|
--beacon.api.port=5555
|
||||||
|
--beacon.api.addr=0.0.0.0
|
||||||
|
--beacon.api.cors.allow-origins=*
|
||||||
|
--port=31337
|
||||||
|
--metrics --metrics.addr=0.0.0.0 --metrics.port=6060
|
||||||
|
--private.api.addr=0.0.0.0:9090
|
||||||
|
--torrent.upload.rate="1250mb"
|
||||||
|
--torrent.download.rate="1250mb"
|
||||||
|
--nat=stun
|
||||||
|
--pprof
|
||||||
|
--pprof.addr=0.0.0.0
|
||||||
|
--pprof.port=6061
|
||||||
|
--authrpc.addr=0.0.0.0
|
||||||
|
--authrpc.vhosts=*
|
||||||
|
--authrpc.jwtsecret=/jwtsecret
|
||||||
|
--http.addr=0.0.0.0
|
||||||
|
--http.vhosts=*
|
||||||
|
--http.corsdomain=*
|
||||||
|
--http.api=eth,erigon,web3,net,debug,trace,txpool
|
||||||
|
--beacon.api=beacon,builder,debug,lighthouse,node
|
||||||
|
--rpc.returndata.limit=1100000
|
||||||
|
--rpc.gascap=5000000000
|
||||||
|
--ws
|
||||||
|
restart: unless-stopped
|
||||||
|
stop_grace_period: 1m
|
||||||
|
labels:
|
||||||
|
- "prometheus-scrape.enabled=true"
|
||||||
|
- "prometheus-scrape.port=6060"
|
||||||
|
- "prometheus-scrape.job_name=erigon"
|
||||||
|
- "prometheus-scrape.metrics_path=/debug/metrics/prometheus"
|
||||||
|
- "traefik.enable=true"
|
||||||
|
- "traefik.http.middlewares.erigon-sepolia-stripprefix.stripprefix.prefixes=/sepolia-erigon"
|
||||||
|
|
||||||
|
- "traefik.http.services.erigon-sepolia.loadbalancer.server.port=8545"
|
||||||
|
- "traefik.http.routers.erigon-sepolia.entrypoints=websecure"
|
||||||
|
- "traefik.http.routers.erigon-sepolia.service=erigon-sepolia"
|
||||||
|
- "traefik.http.routers.erigon-sepolia.tls.certresolver=myresolver"
|
||||||
|
- "traefik.http.routers.erigon-sepolia.rule=Host(`$DOMAIN`) && PathPrefix(`/sepolia-erigon`)"
|
||||||
|
- "traefik.http.routers.erigon-sepolia.middlewares=erigon-sepolia-stripprefix"
|
||||||
|
|
||||||
|
- "traefik.http.services.erigon-sepolia-beacon.loadbalancer.server.port=5555"
|
||||||
|
- "traefik.http.routers.erigon-sepolia-beacon.entrypoints=websecure"
|
||||||
|
- "traefik.http.routers.erigon-sepolia-beacon.service=erigon-sepolia-beacon"
|
||||||
|
- "traefik.http.routers.erigon-sepolia-beacon.tls.certresolver=myresolver"
|
||||||
|
- "traefik.http.routers.erigon-sepolia-beacon.rule=Host(`$DOMAIN`) && PathPrefix(`/sepolia-erigon/eth`)"
|
||||||
|
- "traefik.http.routers.erigon-sepolia-beacon.middlewares=erigon-sepolia-stripprefix"
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
erigon-sepolia:
|
||||||
|
|
||||||
@@ -147,11 +147,11 @@
|
|||||||
"https://1rpc.io/sepolia"
|
"https://1rpc.io/sepolia"
|
||||||
],
|
],
|
||||||
"default": [
|
"default": [
|
||||||
"reth-sepolia",
|
|
||||||
"geth-repolia"
|
"geth-repolia"
|
||||||
],
|
],
|
||||||
"erchive": [
|
"erchive": [
|
||||||
"reth-sepolia"
|
"reth-sepolia",
|
||||||
|
"erigon-sepolia"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"holesky": {
|
"holesky": {
|
||||||
|
|||||||
Reference in New Issue
Block a user