Execution client: op-rethThese instructions use
op-reth, the execution client Celo is adopting as its primary client. A fresh node starts from an empty datadir and bootstraps from a published snapshot (required on mainnet) or, on Celo Sepolia, syncs from genesis — no L1 data migration required.op-geth remains supported until your network’s switch date — see the Still running op-geth? notes at the end of this guide, and End of Support for op-geth for the switch dates.Recommended Hardware
Mainnet
- 16GB+ RAM
- 1TB+ SSD (NVME Recommended)
- Minimum 4 CPU, recommended 8 CPU
- 100mb/s+ Download
Celo Sepolia Testnet
- 16GB+ RAM
- 500GB SSD (NVME Recommended)
- Minimum 4 CPU, recommended 8 CPU
- 100mb/s+ Download
Run Node with Docker
To simplify running nodes, Celo has created the celo-l2-node-docker-compose repository with all the necessary configuration files and docker compose templates to make running a Celo L2 node easy.Running a Full Node
Follow these steps to run a full node. If you would like to run an archive node, see Running an archive node.-
Pull the latest version of celo-l2-node-docker-compose and
cdinto the root of the project. -
Configure your
.envfile.Copy default configurations
The celo-l2-node-docker-compose repo contains a<network>.envfile for each Celo network (celo-sepolia,mainnet). Start by copying the default configuration for the appropriate network.Bootstrap your datadir
op-rethsyncs by executing every block. A new node starts from an empty datadir, populated in one of two ways depending on your network:-
From a snapshot. Set
OP_RETH__SNAPSHOT=truein.env. On first start with an empty datadir, your node downloads a recent published snapshot (fromsnapshots.celo.org) and continues from there. Once the datadir holds data, the snapshot step is skipped.On mainnet a snapshot is required — it provides the pre-L2 (Celo L1) history, whichop-rethcannot reproduce by executing blocks. -
From genesis. On Celo Sepolia, which has no pre-L2 history, you can leave
OP_RETH__SNAPSHOT=false(the default) and execute every block from genesis. This needs no external data but takes considerably longer to reach the chain tip.
Configure node type
Your node will run as afullnode by default, but can also be configured as anarchivenode if you wish to preserve access to all historical state. See Running an archive node for more information.Configure P2P for external network access
OP_NODE__P2P_ADVERTISE_IP- Specifies the public IP to be shared via discovery so that other nodes can connect to your node. If unset, other nodes on the network will not be able to discover and connect to your op-node.PORT__OP_NODE_P2P- Specifies the port to be shared via discovery so that other nodes can connect to your node. Defaults to 9222.OP_RETH__NAT- Controls how op-reth determines its public IP that is shared via the discovery mechanism. If the public IP is not correctly configured then other nodes on the network will not be able to discover and connect to your node. The default value ofanywill try to automatically determine the public IP, but the most reliable approach is to explicitly set the public IP usingextip:<your-public-ip>. Other acceptable values are(any|none|upnp|publicip|extip:<IP>|stun:<IP:PORT>).PORT__OP_RETH_P2P- Specifies the port to be shared via discovery so that other nodes can connect to your node. Defaults to 30303.
-
From a snapshot. Set
-
Start the node.
-
Check the progress of the node as it syncs.
This will display and follow the last 50 lines of logs. As the node syncs you will see
op-rethexecuting blocks and its head advancing toward the network’s latest block. -
Check that node is fully synced.
You can validate that your node is following the network by fetching the current block number via the RPC API and seeing that it climbs as the node syncs and then tracks the network’s latest block.
Still running op-geth? (until your switch date)
Still running op-geth? (until your switch date)
Until your network’s switch date, you can keep running
op-geth from an existing checkout of celo-l2-node-docker-compose (the latest version runs op-reth only). The steps above are the same, with these differences:-
Sync mode instead of a snapshot.
op-gethstarts withsnapsync by default, which downloads pre-hardfork block data from peers — no migrated L1 datadir required. To runfullsync against a migrated L1 datadir instead, set: -
P2P variables. Use
OP_GETH__NAT(valuesany|none|upnp|pmp|pmp:<IP>|extip:<IP>|stun:<IP:PORT>) andPORT__OP_GETH_P2P(default30303) in place of theirOP_RETH__equivalents. -
Logs. Follow
docker compose logs -n 50 -f op-geth. A syncing node showsSyncing beacon headers downloaded=...and later"Syncing: chain download in progress","synced":"21.07%"; until fully synced the RPC API returns0for the head block number.
op-geth will no longer follow the chain — migrate to op-reth before then.Build from source
Docker images are the easiest way to run a Celo node, but you can also build from source — for example to run on a specific architecture or to inspect the code. The celo-l2-node-docker-compose codebase is the best reference, and the Network Config & Assets page lists everything you need to participate in the network.Next steps
- Run an archive node — preserve access to all historical state.
- Network Config & Assets — bootnodes, container images, and downloadable artifacts.
- Troubleshooting — fixes for common node issues, plus how to get help.