{"id":13751203,"url":"https://github.com/paradigmxyz/reth-exex-examples","last_synced_at":"2025-04-05T16:04:20.896Z","repository":{"id":247401486,"uuid":"819878351","full_name":"paradigmxyz/reth-exex-examples","owner":"paradigmxyz","description":"Collection of ExEx examples built on Reth","archived":false,"fork":false,"pushed_at":"2025-03-25T16:45:03.000Z","size":737,"stargazers_count":131,"open_issues_count":11,"forks_count":21,"subscribers_count":10,"default_branch":"main","last_synced_at":"2025-03-28T18:55:33.459Z","etag":null,"topics":["blockchain","ethereum","example","modular","reth","rust"],"latest_commit_sha":null,"homepage":"https://reth.rs/developers/exex/exex.html","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/paradigmxyz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-APACHE","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}},"created_at":"2024-06-25T11:05:13.000Z","updated_at":"2025-03-26T16:12:47.000Z","dependencies_parsed_at":"2025-03-13T02:16:03.409Z","dependency_job_id":null,"html_url":"https://github.com/paradigmxyz/reth-exex-examples","commit_stats":null,"previous_names":["paradigmxyz/reth-exex-grpc","paradigmxyz/reth-exex-examples"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paradigmxyz%2Freth-exex-examples","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paradigmxyz%2Freth-exex-examples/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paradigmxyz%2Freth-exex-examples/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paradigmxyz%2Freth-exex-examples/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/paradigmxyz","download_url":"https://codeload.github.com/paradigmxyz/reth-exex-examples/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247361615,"owners_count":20926642,"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","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":["blockchain","ethereum","example","modular","reth","rust"],"created_at":"2024-08-03T09:00:38.938Z","updated_at":"2025-04-05T16:04:20.872Z","avatar_url":"https://github.com/paradigmxyz.png","language":"Rust","funding_links":[],"categories":["Execution Extensions (ExExes) ##"],"sub_categories":[],"readme":"# Reth Execution Extension (ExEx) Examples\n\nThis repository is a collection of [ExEx](https://reth.rs/developers/exex/exex.html) examples\nbuilt on [Reth](https://github.com/paradigmxyz/reth) that demonstrates common patterns and may serve as an inspiration\nfor new developers.\n\n[![Telegram chat][telegram-badge]][telegram-url]\n\n[telegram-badge]: https://img.shields.io/endpoint?color=neon\u0026style=for-the-badge\u0026url=https%3A%2F%2Ftg.sumanjay.workers.dev%2Fparadigm_reth\n[telegram-url]: https://t.me/paradigm_reth\n\n## Overview\n\n| Example                              | Description                                                                | Run                                                                                                                                                                                                                                                           |\n| ------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| [Backfill](./backfill)               | Exposes an RPC to backfill (execute) a range of blocks                     | `cargo run --bin backfill -- node --http` to start Reth node with an RPC endpoint opened on HTTP port 8545\u003cbr\u003e\u003cbr\u003e`ETH_RPC_URL=http://localhost:8545 TIP=$(cast bn); cast rpc backfill_start $(($TIP - 10)) $TIP` to start the backfill of the last 10 blocks |\n| [Discv5](./discv5)                   | Runs discv5 discovery stack                                                | `cargo run --bin discv5`                                                                                                                                                                                                                                      |\n| [In Memory State](./in-memory-state) | Tracks the plain state in memory                                           | `cargo run --bin in-memory-state -- node`                                                                                                                                                                                                                     |\n| [Minimal](./minimal)                 | Logs every chain commit, reorg and revert notification                     | `cargo run --bin minimal -- node`                                                                                                                                                                                                                             |\n| [OP Bridge](./op-bridge)             | Decodes Optimism deposit and withdrawal receipts from L1                   | `cargo run --bin op-bridge -- node`                                                                                                                                                                                                                           |\n| [Oracle](./oracle)                   | Oracle protocol that observes off-chain data and attests to it on-chain    | `cargo run --bin oracle -- node`                                                                                                                                                                                                                              |\n| [Remote](./remote)                   | Emits notifications using a gRPC server, and a consumer that receives them | `cargo run --bin remote-exex -- node` to start Reth node with the ExEx and a gRPC server\u003cbr\u003e\u003cbr\u003e`cargo run --bin remote-consumer` to start a gRPC client                                                                                                      |\n| [Rollup](./rollup)                   | Rollup that derives the state from L1                                      | `cargo run --bin rollup -- node`                                                                                                                                                                                                                              |\n\n#### License\n\n\u003csup\u003e\nLicensed under either of \u003ca href=\"LICENSE-APACHE\"\u003eApache License, Version\n2.0\u003c/a\u003e or \u003ca href=\"LICENSE-MIT\"\u003eMIT license\u003c/a\u003e at your option.\n\u003c/sup\u003e\n\n\u003cbr\u003e\n\n\u003csub\u003e\nUnless you explicitly state otherwise, any contribution intentionally submitted\nfor inclusion in these crates by you, as defined in the Apache-2.0 license,\nshall be dual licensed as above, without any additional terms or conditions.\n\u003c/sub\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fparadigmxyz%2Freth-exex-examples","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fparadigmxyz%2Freth-exex-examples","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fparadigmxyz%2Freth-exex-examples/lists"}