From e1d9a61d2c4695fafc4b99de9a5025101c521158 Mon Sep 17 00:00:00 2001 From: Steph Sinyakov Date: Fri, 7 Nov 2025 19:52:45 +0100 Subject: [PATCH 1/2] docs: add metering to README --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d8125257..4fad3288 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,7 @@ Base Reth Node is an implementation of a Reth Ethereum node, specifically tailor - **Base L2 Support:** Optimized for the Base Layer 2 network. - **Flashblocks RPC:** Includes a `flashblocks-rpc` crate for Flashblocks. +- **Metering RPC:** Transaction bundle simulation and metering via `base_meterBundle` for MEV and cost estimation. - **Reth Based:** Built upon Reth, see version pinned in [Cargo.toml](Cargo.toml). - **Dockerized:** Comes with a `Dockerfile` for easy containerization and deployment. - **Development Toolkit:** Includes a `justfile` for streamlined build, test, and linting workflows. @@ -55,7 +56,8 @@ Base Reth Node is an implementation of a Reth Ethereum node, specifically tailor ├── crates/ │ ├── node/ # Main node application logic │ ├── transaction-tracing/ # Transaction tracing utilities -│ └── flashblocks-rpc/ # RPC server for Flashblocks integration +│ ├── flashblocks-rpc/ # RPC server for Flashblocks integration +│ └── metering/ # Transaction bundle simulation and metering RPC ├── justfile # Command runner for development tasks └── .github/ └── workflows/ From 8b23001cc5674d942196609a2aa618c76a99e4f4 Mon Sep 17 00:00:00 2001 From: Steph Sinyakov Date: Mon, 10 Nov 2025 23:24:10 +0100 Subject: [PATCH 2/2] docs: review fix --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4fad3288..fbe295bc 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Base Reth Node is an implementation of a Reth Ethereum node, specifically tailor - **Base L2 Support:** Optimized for the Base Layer 2 network. - **Flashblocks RPC:** Includes a `flashblocks-rpc` crate for Flashblocks. -- **Metering RPC:** Transaction bundle simulation and metering via `base_meterBundle` for MEV and cost estimation. +- **Metering RPC:** RPC endpoints and utilities to facilitate resource metering based on transaction simulations. - **Reth Based:** Built upon Reth, see version pinned in [Cargo.toml](Cargo.toml). - **Dockerized:** Comes with a `Dockerfile` for easy containerization and deployment. - **Development Toolkit:** Includes a `justfile` for streamlined build, test, and linting workflows. @@ -57,7 +57,7 @@ Base Reth Node is an implementation of a Reth Ethereum node, specifically tailor │ ├── node/ # Main node application logic │ ├── transaction-tracing/ # Transaction tracing utilities │ ├── flashblocks-rpc/ # RPC server for Flashblocks integration -│ └── metering/ # Transaction bundle simulation and metering RPC +│ └── metering/ # Simulation-based resource metering ├── justfile # Command runner for development tasks └── .github/ └── workflows/