Builder Playground is a CLI tool for spinning up self-contained Ethereum development networks for end-to-end block building. With a single command, it deploys complete L1 and L2 stacks—including EL and CL nodes, mev-boost, relays, and builder infrastructure. Designed for speed, determinism, and ease of use, it serves as the foundation for testing block-builder software, BuilderNet VM images, and integration tests across chains.
Recipes (e.g. l1, opstack) assemble opinionated components and pre-baked configs to bring a full blockchain stack online within seconds. This makes it ideal for:
- Developing and testing block-building pipelines
- Validating builder/relay behavior against real consensus flows
- Running repeatable CI and e2e scenarios
- Experimenting with fork configurations and client combinations
Quick start:
# L1 environment with mev-boost relay
builder-playground cook l1
# L2 OpStack with external builder support
builder-playground cook opstack --external-builder http://localhost:4444Clone the repository and use the cook command to deploy a specific recipe:
$ builder-playground cook <recipe>Currently available recipes:
Deploys a complete L1 environment with:
- A beacon node + validator client (lighthouse).
- An execution client (reth).
- An in-memory mev-boost-relay.
$ builder-playground cook l1 [flags]Flags:
--latest-fork: Enable the latest fork at startup--use-reth-for-validation: Use Reth EL for block validation in mev-boost.--secondary-el: Port to use for a secondary el (enables the internal cl-proxy proxy)--use-native-reth: Run the Reth EL binary on the host instead of docker (recommended to bind to the Reth DB)--use-separate-mev-boost: Spins a seperate service for mev-boost in addition with mev-boost-relay
Deploys an L2 environment with:
- Complete L1 setup (as above minus mev-boost)
- A complete sequencer with op-node, op-geth and op-batcher
$ builder-playground cook opstack [flags]Flags:
--external-builder: URL of an external builder to use (enables rollup-boost)--enable-latest-fork(int): Enables the latest fork (isthmus) at startup (0) or n blocks after genesis.
Here's a complete example showing how to run the L1 recipe with the latest fork enabled and custom output directory:
$ builder-playground cook l1 --latest-fork --output ~/my-builder-testnet --genesis-delay 15 --log-level debug--output(string): The directory where the chain data and artifacts are stored. Defaults to$HOME/.playground/devnet--detached(bool): Run the recipes in the background. Defaults tofalse.--genesis-delay(int): The delay in seconds before the genesis block is created. Defaults to10seconds--watchdog(bool): Enable the watchdog service to monitor the specific chain--dry-run(bool): Generates the artifacts and manifest but does not deploy anything (also enabled with the--mise-en-placeflag)--log-level(string): Log level to use (debug, info, warn, error, fatal). Defaults toinfo.--labels(key=val): Custom labels to apply to your deployment.--disable-logs(bool): Disable the logs for the services. Defaults tofalse.--contender(bool): Enable contender spammer. Required to use other contender flags.--contender.arg(string): Pass custom args to the contender CLI. Example:--contender.arg "--tpb 20"--contender.target(string): Change the default target node to spam. On thel1recipe, the default is "el", and onopstackit's "op-geth".
--with-prometheus(bool); Whether to deploy a Prometheus server and gather metrics. Defaults tofalse.
To stop the playground, press Ctrl+C.
Builder-playground supports inspecting the connection of a service to a specific port.
$ builder-playground inspect <service> <port>Example:
$ builder-playground cook opstack
$ builder-playground inspect op-geth authrpcThis command starts a tcpflow container in the same network interface as the service and captures the traffic to the specified port.
Removes a recipe running in the background
$ builder-playground clean [--output ./output]The Builder Playground includes built-in Prometheus metrics collection. When you run any recipe with the --with-prometheus flag, the system automatically deploys a Prometheus server and gathers metrics from all services in your deployment.
Prometheus automatically discovers services by looking for a port with the metrics label. You can define a metrics port in your component like this:
WithArgs("--metrics", `0.0.0.0:{{Port "metrics" 9090}}`)By default, Prometheus scrapes the /metrics path, but services can override this by specifying a custom path with WithLabel("metrics_path", "/custom/path"). All configured services are automatically registered as scrape targets.
Enable Prometheus for any recipe:
$ builder-playground cook l1 --with-prometheus
$ builder-playground cook opstack --with-prometheusThe playground executes in three main phases:
- Artifact Generation: Creates all necessary files and configurations (genesis files, keys, etc.)
- Manifest Generation: The recipe creates a manifest describing all services to be deployed, their ports, and configurations
- Deployment: Uses Docker Compose to deploy the services described in the manifest
When running in dry-run mode (--dry-run flag), only the first two phases are executed. This is useful for alternative deployment targets - while the playground uses Docker Compose by default, the manifest could be used to deploy to other platforms like Kubernetes.
The playground is structured in two main layers:
Components are the basic building blocks of the system. Each component implements the Service interface:
type Service interface {
Run(service *service)
}Components represent individual compute resources like:
- Execution clients (Reth)
- Consensus clients (Lighthouse)
- Sidecar applications (MEV-Boost Relay)
Each component, given its input parameters, outputs a Docker container description with its specific configuration.
Recipes combine components in specific ways to create complete environments. They implement this interface:
type Recipe interface {
Apply(artifacts *Artifacts) *Manifest
}The key output of a recipe is a Manifest, which represents a complete description of the environment to be deployed. A Manifest contains:
- A list of services to deploy
- Their interconnections and dependencies
- Port mappings and configurations
- Volume mounts and environment variables
While the current recipes (L1 and OpStack) are relatively simple, this architecture allows for more complex setups. For example, you could create recipes for:
- Multiple execution clients with a shared bootnode
- Testing specific MEV scenarios
- Interop L2 testing environments
The separation between components and recipes makes it easy to create new environments by reusing and combining existing components in different ways. The Manifest provides an abstraction between the recipe's description of what should be deployed and how it actually gets deployed (Docker Compose, Kubernetes, etc.).
The Builder Playground is focused exclusively on block building testing and development. Unlike general-purpose tools like Kurtosis that support any Ethereum setup, we take an opinionated approach optimized for block building workflows.
We deliberately limit configuration options and client diversity to keep the tool simple and maintainable. This focused approach allows us to provide a smooth developer experience for block building testing scenarios while keeping the codebase simple and maintainable.
This means we make specific choices:
- Fixed client implementations (Lighthouse, Reth)
- Recipe-based rather than modular configurations
- Pre-backed configurations
For use cases outside our scope, consider using a more general-purpose tool like Kurtosis.