Running a Node
Note: If you’re interested in accessing an Arbitrum chain, but you don’t want to set up your own node, see our Node Providers to get RPC access to fully-managed nodes hosted by a third party provider
Minimum Hardware Configuration
- Followings specify the minimum hardware configuration required to setup a Nitro full node (not archival):
- RAM: 4-8 GB
- CPU: 2-4 core CPU (For AWS: t3 xLarge)
- Storage: Minimum 1.2TB SSD (make sure it is extendable)
- Estimated Growth Rate: 14GB per day
❗️Note: The minimum storage requirements will change over time as the Nitro chain grows. It is recommended to use more than the minimum requirements to run a robust full node.
Required Artifacts
Latest Docker Image:
offchainlabs/nitro-node:v2.0.10-73224e3
Arbitrum One Nitro Genesis Database Snapshot
- Use the parameter
--init.url="https://snapshot.arbitrum.io/mainnet/nitro.tar"
on first startup to initialize Nitro database - If running more than one node, easiest to manually download image from https://snapshot.arbitrum.io/mainnet/nitro.tar and host it locally for your nodes
- Or use
--init.url="file:///path/to/snapshot/in/container/nitro.tar"
to use a local snapshot archive - sha256 checksum:
a609773c6103435b8a04d32c63f42bb5fa0dc8fc38a2acee4d2ab2d05880205c
- size: 33.5573504 GB
- Use the parameter
Other chains do not have classic blocks, and do not require an initial genesis database
Required parameter
--l1.url=<Layer 1 Ethereum RPC URL>
- Must provide standard layer 1 node RPC endpoint that you run yourself or from a node provider
--l2.chain-id=<L2 Chain ID>
- See public chains for a list of Arbitrum chains and the respective L2 Chain Ids
Important ports
- RPC:
8547
- Sequencer Feed:
9642
- WebSocket:
8548
- WS port
8548
needs extra args to be opened. Please use these flags:- --ws.port=8548
- --ws.addr=0.0.0.0
- --ws.origins=*
- WS port
Putting it all together
When running docker image, an external volume should be mounted to persist the database across restarts. The mount point inside the docker image should be
/home/user/.arbitrum
Here is an example of how to run nitro-node:
- Note that is important that
/some/local/dir/arbitrum
already exists, otherwise the directory might be created withroot
as owner, and the docker container won't be able to write to it
docker run --rm -it -v /some/local/dir/arbitrum:/home/user/.arbitrum -p 0.0.0.0:8547:8547 -p 0.0.0.0:8548:8548 offchainlabs/nitro-node:v2.0.10-73224e3 --l1.url https://l1-node:8545 --l2.chain-id=<L2ChainId> --http.api=net,web3,eth,debug --http.corsdomain=* --http.addr=0.0.0.0 --http.vhosts=*
Note that if you are running L1 node on localhost, you may need to add
--network host
right afterdocker run
to use docker host-based networkingWhen shutting down docker image, it is important to allow for a graceful shutdown so that the current state can be saved to disk. Here is an example of how to do a graceful shutdown of all docker images currently running
docker stop --time=300 $(docker ps -aq)
- Note that is important that
Note on permissions
- The Docker image is configured to run as non-root UID 1000. This means if you are running in Linux or OSX and you are getting permission errors when trying to run the docker image, run this command to allow all users to update the persistent folders
mkdir /data/arbitrum
chmod -fR 777 /data/arbitrum
Optional parameters
--init.url="https://snapshot.arbitrum.io/mainnet/nitro.tar"
- URL to download genesis database from. Only needed when starting Arbitrum One without database
--node.rpc.classic-redirect=<classic node RPC>
- If set, will redirect archive requests for pre-nitro blocks to the designated RPC, which should be an Arbitrum Classic node with archive database. Only valid for Arbitrum One.
--http.api
- APIs offered over the HTTP-RPC interface (default
net,web3,eth
) - Add
debug
to enable tracing
- APIs offered over the HTTP-RPC interface (default
--http.corsdomain
- Comma separated list of domains from which to accept cross origin requests (browser enforced)
--http.vhosts
- Comma separated list of virtual hostnames from which to accept requests (server enforced). Accepts
*
wildcard (defaultlocalhost
)
- Comma separated list of virtual hostnames from which to accept requests (server enforced). Accepts
--http.addr
- Address to bind RPC to. May need to be set to
0.0.0.0
for docker networking to work properly
- Address to bind RPC to. May need to be set to
--node.caching.archive
- Retain past block state
--node.feed.input.url=<feed address>
- Defaults to
wss://<chainName>.arbitrum.io/feed
. If running more than a couple nodes, you will want to provide one feed relay per datacenter, see further instructions below
- Defaults to
--node.forwarding-target=<sequencer RPC>
- Defaults to appropriate L2 Sequencer RPC depending on L1 and L2 chain IDs provided
--node.rpc.evm-timeout
- Defaults to
5s
, timeout used foreth_call
(0 == no timeout)
- Defaults to
--node.rpc.gas-cap
- Defaults to
50000000
, cap on computation gas that can be used ineth_call
/estimateGas
(0 = no cap)
- Defaults to
--node.rpc.tx-fee-cap
- Defaults to
1
, cap on transaction fee (in ether) that can be sent via the RPC APIs (0 = no cap)
- Defaults to
Arb-Relay
- When running more than one node, you want to run a single arb-relay per datacenter, which will reduce ingress fees and improve stability
- The arb-relay is in the same docker image
- Here is an example of how to run nitro-relay for Arbitrum One:
docker run --rm -it -p 0.0.0.0:9642:9642 --entrypoint relay offchainlabs/nitro-node:v2.0.10-73224e3 --node.feed.output.addr=0.0.0.0 --node.feed.input.url=wss://arb1.arbitrum.io/feed
- Here is an example of how to run nitro-node for Arbitrum One with custom relay:
docker run --rm -it -v /some/local/dir/arbitrum:/home/user/.arbitrum -p 0.0.0.0:8547:8547 -p 0.0.0.0:8548:8548 offchainlabs/nitro-node:v2.0.10-73224e3 --l1.url=https://l1-mainnet-node:8545 --l2.chain-id=42161 --http.api=net,web3,eth,debug --http.corsdomain=* --http.addr=0.0.0.0 --http.vhosts=* --node.feed.input.url=ws://local-relay-address:9642
Running a Validator
- Currently, the ability to post assertions on-chain for mainnet Arbitrum chains is whitelisted. However, anyone can run a validator in
Watchtower
mode which will immediately log an error if an on-chain assertion deviates from the locally computed chain state - Running a validator in
Watchtower
mode is the same as running an archive Nitro node with--node.validator.enable --node.validator.strategy=Watchtower
- Here is an example of how to run validator for Arbitrum One:
docker run --rm -it -v /some/local/dir/arbitrum:/home/user/.arbitrum offchainlabs/nitro-node:v2.0.10-73224e3 --l1.url=https://l1-mainnet-node:8545 --l2.chain-id=42161 --node.caching.archive --node.validator.enable --node.validator.strategy=Watchtower
- If a deviation is detected, a validator in Watchtower mode will log an error containing the string
found incorrect assertion in watchtower mode