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/taikoxyz/alethia-reth.git
cd alethia-rethBuild by Cargo:
cargo build --releaseThe main binary will be located at target/release/alethia-reth.
To ensure everything is set up correctly, run the checks and tests:
just testTo run the compiled node:
./target/release/alethia-reth [OPTIONS]To see available command-line options and subcommands, run:
./target/release/alethia-reth --help(Note: Replace [OPTIONS] with the necessary configuration flags for your setup. Refer to the --help output for details.)
docker build -t alethia-reth .docker run -it --rm alethia-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.