Inspired by https://github.com/smartcontracts/simple-optimism-node
Start your Taiko node with a one line command.
- Docker is installed and running
git clone https://github.com/taikoxyz/simple-taiko-node.git
cd simple-taiko-node
Copy .env.sample
to .env
.
cp .env.sample .env
To run your node as a proposer, configure the optional environment variables in this .env
file:
- Set
ENABLE_PROPOSER
totrue
(replacing the defaultfalse
withtrue
). - Set
L1_PROPOSER_PRIVATE_KEY
to that of your wallet's private key -- it will need some balance on layer 1 to propose blocks. - Set
L2_SUGGESTED_FEE_RECIPIENT
to the layer 2 address you want to receive the tx fees from the block.
Finally you can save the .env
and start proposing by starting up your node again.
docker compose up
This command starts the configured node. If you want to run it in the background, please add the -d
flag (docker compose up -d
).
If this is the first time you start the node, it will synchronize from the genesis to the present, which may take some time. You can monitor this progress through logs or in the local grafana dashboard and see the latest L2 chain status in Taiko Alpha-1 L2 block explorer.
docker compose down
This command shuts down the node, but will keep all volumes, so next time you restart the node, it won't need to synchronize from the genesis again.
docker compose down -v
rm -f .env
These commands completely remove the node by removing all volumes used by each container.
taiko-geth is a fork of go-ethereum with some changes according to Taiko protocol, it serves as a L2 execution engine, which needs to be coupled to a consensus client (in Taiko network, this will be the taiko client's driver software), like L1 ethereum execution engines, it will listen to new L2 transactions broadcasted in the L2 network, executes them in EVM, and holds the latest state and database of all current L2 data.
taiko client's driver software serves as an L2 consensus client. It will listen for new L2 blocks from the Taiko layer 1 protocol contract, then direct the connected L2 execution engine to insert them into its local chain through the Engine API.
taiko client's proposer software will fetch pending transactions in a L2 execution engine's mempool intervally, then try to propose them to the Taiko layer 1 protocol contract.
A Grafana dashboard with a Prometheus datasource is also included to display the L2 execution engine's real time status. You can visit it at http://localhost:3000/d/L2ExecutionEngine/l2-execution-engine-overview?orgId=1&refresh=10s.
Because we use a fork of geth, you can consult the geth minimum requirements, which are outlined below.
- CPU with 2+ cores
- 4GB RAM
- 1TB free storage space to sync the Mainnet
- (only ~50GB for Testnet)
- 8 MBit/sec download Internet service
- Fast CPU with 4+ cores
- 16GB+ RAM
- High-performance SSD with at least 1TB of free space
- 25+ MBit/sec download Internet service
First, check that you have updated the optional environment variables in .env
file correctly and are using the latest docker images (you can manually update local images with docker compose down && docker compose pull
).
Next, check the proposer image's log (docker compose logs -f taiko_client_proposer
) to figure out what could be wrong. It's probably because:
- Your local node is still catching up with the latest chain head
- Your L1 proposer account ran out of ETH (needed to propose tx's)
- There is no available block slot to propose in the TaikoL1 smart contract, so you must wait for one to become available (you can check the protocol smart contract's status with
TaikoL1.getStateVariables
)