Home

Awesome

rbuilder

CI status Telegram Chat GitHub Release

rbuilder is an open-source, blazingly fast, cutting edge implementation of a Ethereum MEV-Boost block builder written in Rust. It is designed to provide a delightful developer experience, enabling community members to contribute and researchers to use rbuilder to study block building.

Features

Running rbuilder

rbuilder can be run in two modes:

Backtesting

rbuilder supports backtesting against historical blocks. It does this by using the mempool-dumpster for historical mempool transactions to let anyone run rbuilder. If you have historical bundles, you can also plug that in for testing purposes. Moreover, rbuilder pulls the on-chain block to compare local block building against what actually landed. Finally, rbuilder stores historical data locally in an SQLite database to support rapid testing and iteration,

For more details on how to use rbuilder for backtesting, see https://github.com/flashbots/rbuilder/wiki/Noob-Guide-for-Backtesting

Live

To run rbuilder you need:

Additionally, you can:

Running:

  1. Prepare config file based on the config-live-example.toml
  2. Run rbuilder run PATH_TO_CONFIG_FILE

Warning: Even if they are rare, before running a builder you should be aware of reorg losses.

Benchmarking

rbuilder has a solid initial benchmarking setup (based on Criterion.rs).

End-to-end local testing

You can use builder-playground to deploy a fully functional local setup for the builder (Lighthouse consensus client (proposer + validator) + Reth execution client + MEV-Boost-Relay)) to test rbuilder.

First, start builder-playground:

git clone git@github.com:flashbots/builder-playground.git
cd builder-playground
go run main.go

Then, run rbuilder using the config-playground.toml config file:

cargo run --bin rbuilder run config-playground.toml

You can query the local relay for proposed blocks like this:

curl http://localhost:5555/relay/v1/data/bidtraces/proposer_payload_delivered

Release Stability and Development Process

rbuilder is running in production at Flashbots since Q1 2024, and is reasonably stable. It is under active (and sometimes heavy) development, as we are constantly adding new features and improvements.

We encourage users to choose the version that best fits their needs: the latest stable release for production use, or the develop branch for those who want to test the latest features and are comfortable with potential instability.

Develop Branch

The develop branch is our main integration branch for ongoing development:

Stable Releases

For users seeking stability:

Release Cadence

We plan to cut a stable release at least once a month, but this may vary depending on the volume of changes and the stability of the codebase. To get notified, watch the repository, and you'll get an email notification on new releases.


Contributing

We welcome contributions to rbuilder! Our contributor guidelines can be found in CONTRIBUTING.md.

Start by cloning the repo, and running a few common commands:

git clone git@github.com:flashbots/rbuilder.git
cd rbuilder

# Run linter
make lint

# Run tests
make test

# Run benchmarks and open the report
make bench
make bench-report-open

Security

See SECURITY.md


Acknowledgements

Big shoutout to the Reth team for building a kick-ass Ethereum node.


Various notes

make build builds a bunch of additional binaries:

BinaryDescription
rbuilderLive block builder
backtest-build-blockRun backtests for a single block
backtest-build-rangeRun backtests for a range of block
backtest-fetchDownload data for backtesting
dummy-builderSimple sample builder to show how to plugin a custom BlockBuildingSink and BlockBuildingAlgorithm
misc-relays-slotShows info about winning bid for the block
debug-bench-machineTests execution performance
debug-order-inputObserve input of the bundles and transactions
debug-order-simObserve simulation of the bundles and transactions
debug-slot-data-generatorShows new payload jobs coming from CL with attached data from relays.