everclear mainnet
This commit is contained in:
58
arb-everclear-mainnet.yml
Normal file
58
arb-everclear-mainnet.yml
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
version: '3.1'
|
||||||
|
|
||||||
|
services:
|
||||||
|
arb-everclear-mainnet:
|
||||||
|
image: 'offchainlabs/nitro-node:${NITRO_VERSION:-v3.0.0-e6f81cb}'
|
||||||
|
stop_grace_period: 3m
|
||||||
|
user: root
|
||||||
|
volumes:
|
||||||
|
- 'arb-everclear-mainnet:/persistent'
|
||||||
|
- './arb/mainnet/everclear/baseConfig.json:/baseConfig.json'
|
||||||
|
expose:
|
||||||
|
- 8547 # http + ws
|
||||||
|
command:
|
||||||
|
- --conf.file=/baseConfig.json
|
||||||
|
- --persistent.ancient=/persistent/ancient
|
||||||
|
- --persistent.chain=/persistent/chain
|
||||||
|
- --persistent.global-config=/persistent/global-config
|
||||||
|
- --execution.caching.archive=true
|
||||||
|
- --execution.forwarding-target=https://rpc.everclear.raas.gelato.cloud
|
||||||
|
- --node.feed.input.url=wss://feed.everclear.raas.gelato.cloud
|
||||||
|
- --parent-chain.connection.url=${EVERCLEAR_MAINNET_PARENT_RPC}
|
||||||
|
- --http.addr=0.0.0.0
|
||||||
|
- --http.port=8547
|
||||||
|
- --http.vhosts=*
|
||||||
|
- --http.corsdomain=*
|
||||||
|
- --http.api=eth,net,web3,arb,txpool,debug
|
||||||
|
- --ws.port=8547
|
||||||
|
- --ws.addr=0.0.0.0
|
||||||
|
- --ws.origins=*
|
||||||
|
- --ws.api=eth,net,web3,arb,txpool,debug
|
||||||
|
- --node.data-availability.enable=true
|
||||||
|
- --node.data-availability.sequencer-inbox-address=0x7f5C1a58014E9DE69663CAc441bfa4C5d94b7E64
|
||||||
|
- --node.data-availability.parent-chain-node-url=${EVERCLEAR_MAINNET_PARENT_RPC}
|
||||||
|
- --parent-chain.blob-client.beacon-url=${EVERCLEAR_MAINNET_PARENT_BEACON_REST}
|
||||||
|
- --node.data-availability.rest-aggregator.enable=true
|
||||||
|
- --node.data-availability.rest-aggregator.urls=https://das.everclear.raas.gelato.cloud
|
||||||
|
- --metrics
|
||||||
|
- --metrics-server.addr=0.0.0.0
|
||||||
|
- --metrics-server.port=6070
|
||||||
|
- --log-type=json
|
||||||
|
- --node.sequencer=false
|
||||||
|
- --execution.sequencer.enable=false
|
||||||
|
- --node.staker.enable=false
|
||||||
|
- --node.batch-poster.enable=false
|
||||||
|
restart: unless-stopped
|
||||||
|
labels:
|
||||||
|
- "traefik.enable=true"
|
||||||
|
- "traefik.http.middlewares.everclear-mainnet-stripprefix.stripprefix.prefixes=/everclear-mainnet"
|
||||||
|
- "traefik.http.services.everclear-mainnet.loadbalancer.server.port=8547"
|
||||||
|
- "traefik.http.routers.everclear-mainnet.entrypoints=websecure"
|
||||||
|
- "traefik.http.routers.everclear-mainnet.tls.certresolver=myresolver"
|
||||||
|
- "traefik.http.routers.everclear-mainnet.rule=Host(`$DOMAIN`) && PathPrefix(`/everclear-mainnet`)"
|
||||||
|
- "traefik.http.routers.everclear-mainnet.middlewares=everclear-mainnet-stripprefix, ipwhitelist"
|
||||||
|
networks:
|
||||||
|
- chains
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
arb-everclear-mainnet:
|
||||||
6
arb/mainnet/everclear/baseConfig.json
Normal file
6
arb/mainnet/everclear/baseConfig.json
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"chain": {
|
||||||
|
"name": "Everclear Mainnet",
|
||||||
|
"info-json": "[{\"chain-id\":25327,\"parent-chain-id\":1,\"parent-chain-is-arbitrum\":false,\"chain-name\":\"Everclear Mainnet\",\"chain-config\":{\"homesteadBlock\":0,\"daoForkBlock\":null,\"daoForkSupport\":true,\"eip150Block\":0,\"eip150Hash\":\"0x0000000000000000000000000000000000000000000000000000000000000000\",\"eip155Block\":0,\"eip158Block\":0,\"byzantiumBlock\":0,\"constantinopleBlock\":0,\"petersburgBlock\":0,\"istanbulBlock\":0,\"muirGlacierBlock\":0,\"berlinBlock\":0,\"londonBlock\":0,\"clique\":{\"period\":0,\"epoch\":0},\"arbitrum\":{\"EnableArbOS\":true,\"AllowDebugPrecompiles\":false,\"DataAvailabilityCommittee\":true,\"InitialArbOSVersion\":20,\"GenesisBlockNum\":0,\"MaxCodeSize\":24576,\"MaxInitCodeSize\":49152,\"InitialChainOwner\":\"0x98a426C8ED821cAaef1b4BF7D29b514dcef970C0\"},\"chainId\":25327},\"rollup\":{\"bridge\":\"0x4eb4fB614e1aa3634513319F4Ec7334bC4321356\",\"inbox\":\"0x97FdC935c5E25613AA13a054C7Aa71cf751DB495\",\"sequencer-inbox\":\"0x7B0517E0104dB60198f9d573C0aB8d480207827E\",\"rollup\":\"0xc6CAd31D83E33Fc8fBc855f36ef9Cb2fCE070f5C\",\"validator-utils\":\"0x2b0E04Dc90e3fA58165CB41E2834B44A56E766aF\",\"validator-wallet-creator\":\"0x9CAd81628aB7D8e239F1A5B497313341578c5F71\",\"deployed-at\":20684364}}]"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -100,6 +100,15 @@
|
|||||||
"arb-connext-sepolia"
|
"arb-connext-sepolia"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"everclear-mainnet": {
|
||||||
|
"id": 25327,
|
||||||
|
"urls": [
|
||||||
|
"https://rpc.everclear.raas.gelato.cloud"
|
||||||
|
],
|
||||||
|
"default": [
|
||||||
|
"arb-everclear-mainnet"
|
||||||
|
]
|
||||||
|
},
|
||||||
"real": {
|
"real": {
|
||||||
"id": 111188,
|
"id": 111188,
|
||||||
"urls": [
|
"urls": [
|
||||||
|
|||||||
Reference in New Issue
Block a user