From 42ec54e5126133b8dc77291033acc02db32dd66e Mon Sep 17 00:00:00 2001 From: Sebastian <379651+czarly@users.noreply.github.com> Date: Mon, 9 Dec 2024 06:07:43 +0100 Subject: [PATCH] arb-sep-peb --- arbitrum-sepolia-fullnode-pebble.yml | 42 ++++++++++++++++++++++++++++ reference-rpc-endpoint.json | 3 +- 2 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 arbitrum-sepolia-fullnode-pebble.yml diff --git a/arbitrum-sepolia-fullnode-pebble.yml b/arbitrum-sepolia-fullnode-pebble.yml new file mode 100644 index 00000000..dd057ec0 --- /dev/null +++ b/arbitrum-sepolia-fullnode-pebble.yml @@ -0,0 +1,42 @@ +version: '3.1' + +services: + arbitrum-sepolia-fullnode: + image: 'offchainlabs/nitro-node:${NITRO_VERSION:-v3.2.1-d81324d}' + stop_grace_period: 3m + user: root + volumes: + - 'arbitrum-sepolia-fullnode_data:/arbitrum-node' + - './tmp/arbitrum-sepolia-fullnode:/tmp' + expose: + - 8547 # http + ws + command: + - --init.latest=pruned + - --chain.name=sepolia + - --node.staker.enable=false + - --persistent.chain=/arbitrum-node/data/ + - --persistent.global-config=/arbitrum-node/ + - --parent-chain.connection.url=${ARBITRUM_SEPOLIA_URL} + - --parent-chain.blob-client.beacon-url=${ARBITRUM_SEPOLIA_BEACON_URL} + - --chain.id=421614 + - --http.api=net,web3,eth,debug + - --http.corsdomain=* + - --http.addr=0.0.0.0 + - --http.vhosts=* + - --ws.port=8547 + - --ws.addr=0.0.0.0 + - --ws.origins=* + restart: unless-stopped + labels: + - "traefik.enable=true" + - "traefik.http.middlewares.arbitrum-sepolia-stripprefix.stripprefix.prefixes=/arbitrum-sepolia-fullnode" + - "traefik.http.services.arbitrum-sepolia.loadbalancer.server.port=8547" + - "traefik.http.routers.arbitrum-sepolia.entrypoints=websecure" + - "traefik.http.routers.arbitrum-sepolia.tls.certresolver=myresolver" + - "traefik.http.routers.arbitrum-sepolia.rule=Host(`$DOMAIN`) && PathPrefix(`/arbitrum-sepolia-fullnode`)" + - "traefik.http.routers.arbitrum-sepolia.middlewares=arbitrum-sepolia-stripprefix, ipwhitelist" + networks: + - chains + +volumes: + arbitrum-sepolia-fullnode_data: diff --git a/reference-rpc-endpoint.json b/reference-rpc-endpoint.json index 81f9fdc9..fe9b0b9f 100644 --- a/reference-rpc-endpoint.json +++ b/reference-rpc-endpoint.json @@ -164,7 +164,8 @@ "https://arbitrum-sepolia.blockpi.network/v1/rpc/public" ], "default": [ - "arbitrum-sepolia-fullnode" + "arbitrum-sepolia-fullnode", + "arbitrum-sepolia-fullnode-pebble" ], "archive": ["arbitrum-sepolia-archive"] },