This commit is contained in:
Para Dox
2025-04-12 12:57:50 +07:00
parent b3c69ea511
commit c241595dfd
206 changed files with 4708 additions and 5973 deletions

View File

@@ -1,3 +1,4 @@
---
# use at your own risk
services:
@@ -27,51 +28,42 @@ services:
volumes:
- ${PLAYBLOCK_MAINNET_NITRO_ARCHIVE_LEVELDB_HASH_DATA:-playblock-mainnet-nitro-archive-leveldb-hash}:/root/.arbitrum
- /slowdisk:/slowdisk
command:
- --conf.file=/config/baseConfig.json
- --datadir=/root/.arbitrum
- --port=10728
- --nat=extip:${IP}
- --execution.caching.archive=true
- --execution.caching.state-scheme=hash
- --execution.forwarding-target=https://rpc.playblock.io
- --execution.rpc.gas-cap=600000000
- --execution.sequencer.enable=false
- --http
- --http.addr=0.0.0.0
- --http.api=eth,net,web3,arb,txpool,debug
- --http.port=8545
- --http.vhosts=*
- --maxpeers=50
- --ws
- --ws.port=8545
- --ws.origins=*
- --ws.addr=0.0.0.0
- --ws.api=eth,net,web3,arb,txpool,debug
- --http.addr=0.0.0.0
- --http.api=eth,net,web3,arb,txpool,debug
- --rpc.gascap=600000000
- --rpc.txfeecap=0
- --execution.caching.state-scheme=hash
- --execution.rpc.gas-cap=600000000
- --execution.caching.archive=true
- --execution.sequencer.enable=false
- --persistent.db-engine=leveldb
- --persistent.chain=/root/.arbitrum/playblock-mainnet-archive
- --conf.file=/config/baseConfig.json
- --node.sequencer=false
- --node.staker.enable=false
- --nat=extip:${IP}
- --node.batch-poster.enable=false
- --node.data-availability.enable=true
- --node.data-availability.sequencer-inbox-address=0x1297541082195356755105700451499873350464260779639
- --node.data-availability.parent-chain-node-url=${ETHEREUM_MAINNET_EXECUTION_RPC}
- --node.data-availability.rest-aggregator.enable=true
- --node.data-availability.rest-aggregator.urls=https://das.playblock.io
- --node.data-availability.sequencer-inbox-address=0x1297541082195356755105700451499873350464260779639
- --node.feed.input.url=wss://feed.playblock.io
- --execution.forwarding-target=https://rpc.playblock.io
- --parent-chain.connection.url=${ETHEREUM_MAINNET_EXECUTION_RPC}
- --node.sequencer=false
- --node.staker.enable=false
- --parent-chain.blob-client.beacon-url=${ETHEREUM_MAINNET_BEACON_REST}
- --parent-chain.connection.url=${ETHEREUM_MAINNET_EXECUTION_RPC}
- --persistent.chain=/root/.arbitrum/playblock-mainnet-archive
- --persistent.db-engine=leveldb
- --port=10728
- --rpc.gascap=600000000
- --rpc.txfeecap=0
- --ws
- --ws.addr=0.0.0.0
- --ws.api=eth,net,web3,arb,txpool,debug
- --ws.origins=*
- --ws.port=8545
networks:
- chains
restart: unless-stopped
@@ -119,3 +111,5 @@ x-upstreams:
# non standard geth and erigon
- name: eth_getRawTransactionByHash
- name: eth_getRawTransactionByBlockHashAndIndex
...