{"id":30881064,"url":"https://github.com/taikoxyz/alethia-reth","last_synced_at":"2026-05-14T00:32:44.502Z","repository":{"id":313292608,"uuid":"1049511362","full_name":"taikoxyz/alethia-reth","owner":"taikoxyz","description":"A high-performance Rust execution client for the Taiko protocol.","archived":false,"fork":false,"pushed_at":"2025-09-05T03:03:29.000Z","size":704,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-05T05:23:10.346Z","etag":null,"topics":["ethereum","reth","rust","taiko"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/taikoxyz.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-03T05:01:51.000Z","updated_at":"2025-09-05T03:03:19.000Z","dependencies_parsed_at":"2025-09-05T05:25:21.040Z","dependency_job_id":"e56f16d4-d152-4202-873e-7803d89978f5","html_url":"https://github.com/taikoxyz/alethia-reth","commit_stats":null,"previous_names":["taikoxyz/alethia-reth"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/taikoxyz/alethia-reth","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taikoxyz%2Falethia-reth","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taikoxyz%2Falethia-reth/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taikoxyz%2Falethia-reth/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taikoxyz%2Falethia-reth/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/taikoxyz","download_url":"https://codeload.github.com/taikoxyz/alethia-reth/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taikoxyz%2Falethia-reth/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274152756,"owners_count":25231293,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-08T02:00:09.813Z","response_time":121,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ethereum","reth","rust","taiko"],"created_at":"2025-09-08T07:43:44.103Z","updated_at":"2026-05-14T00:32:44.497Z","avatar_url":"https://github.com/taikoxyz.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# alethia-reth\n\n[![CI](https://github.com/taikoxyz/alethia-reth/actions/workflows/ci.yml/badge.svg)](https://github.com/taikoxyz/alethia-reth/actions/workflows/ci.yml)\n\nA high-performance Rust execution client for the Taiko protocol, built on top of [Reth](https://github.com/paradigmxyz/reth) powerful [`NodeBuilder` API](https://reth.rs/introduction/why-reth#infinitely-customizable), designed to deliver the best possible developer and maintenance experience.\n\n## Getting Started\n\n### 1. Clone the Repository\n\n```bash\ngit clone https://github.com/taikoxyz/alethia-reth.git\ncd alethia-reth\n```\n\n### 2. Build\n\nBuild by `Cargo`:\n\n```bash\ncargo build --release\n```\n\nThe main binary will be located at `target/release/alethia-reth`.\n\n### 3. Run Checks and Tests\n\nTo ensure everything is set up correctly, run the checks and tests:\n\n```bash\njust test\n```\n\n## Running the Node\n\nTo run the compiled node:\n\n```bash\n./target/release/alethia-reth [OPTIONS]\n```\n\nTo see available command-line options and subcommands, run:\n\n```bash\n./target/release/alethia-reth --help\n```\n\n_(Note: Replace `[OPTIONS]` with the necessary configuration flags for your setup. Refer to the `--help` output for details.)_\n\n## Docker\n\n### 1. Build the Docker Image\n\n```bash\ndocker build -t alethia-reth .\n```\n\n### 2. Run the Docker Container\n\n```bash\ndocker run -it --rm alethia-reth [OPTIONS]\n```\n\n_(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.)_\n\n## Configuration\n\nAlethia-reth uses reth-compatible CLI options plus Taiko chain presets.\n\n### Chain Selection\n\nUse `--chain` with one of the supported presets:\n- `mainnet`\n- `taiko-hoodi`\n- `devnet`\n- `masaya`\n\n### Common Runtime Flags\n\n- `--datadir \u003cpath\u003e` to set node data location.\n- `--http` / `--ws` to enable RPC transports.\n- `--authrpc.addr \u003cip\u003e` and `--authrpc.port \u003cport\u003e` for Engine API auth RPC.\n- `--metrics \u003caddr:port\u003e` to expose Prometheus metrics.\n\nUse `./target/release/alethia-reth --help` for the full option list and defaults.\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftaikoxyz%2Falethia-reth","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftaikoxyz%2Falethia-reth","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftaikoxyz%2Falethia-reth/lists"}