A high-performance Rust execution client for the Taiko protocol, built on top of Reth powerful NodeBuilder
API, designed to deliver the best possible developer and maintenance experience.
git clone https://github.com/TatsujinLabs/taiko-reth.git
cd taiko-reth
Build by Cargo
:
cargo build --release
The main binary will be located at target/release/taiko-reth
.
To ensure everything is set up correctly, run the checks and tests:
cargo test # Runs cargo test
To run the compiled node:
./target/release/taiko-reth [OPTIONS]
To see available command-line options and subcommands, run:
./target/release/taiko-reth --help
(Note: Replace [OPTIONS]
with the necessary configuration flags for your setup. Refer to the --help
output for details.)
docker build -t taiko-reth .
docker run -it --rm taiko-reth [OPTIONS]
(Note: You might need to map ports (-p
), mount volumes (-v
) for data persistence, or pass environment variables (-e
) depending on your node's configuration needs.)
(Details about specific configuration files, environment variables, or command-line arguments required for typical operation will be added here as the project evolves. For now, please refer to the --help
output of the binary.)
This project is licensed under the MIT License. See the LICENSE file for details.