Flashbots retira el constructor MEV-Boost: qué significa rbuilder para el futuro de MEV en Ethereum

GitHub April 2026
⭐ 433
Source: GitHubArchive: April 2026
Flashbots ha dejado oficialmente de usar su pionero constructor de bloques MEV-Boost, pasando al más avanzado rbuilder. Este cambio marca un punto de inflexión crítico en el panorama de construcción de bloques de Ethereum, revelando lecciones arquitectónicas más profundas sobre latencia, resistencia a la censura y la economía de MEV.
The article body is currently shown in English by default. You can generate the full version in this language on demand.

Flashbots, the research and development collective that has shaped Ethereum's MEV ecosystem, has deprecated its original MEV-Boost Block Builder in favor of rbuilder, a ground-up rewrite hosted at github.com/flashbots/rbuilder. The original builder, which accumulated 433 GitHub stars, served as the proof-of-concept that demonstrated how validators could outsource block construction to specialized relays while maximizing MEV capture. However, its monolithic architecture and reliance on a single-threaded execution model created performance bottlenecks that became untenable as Ethereum's block space grew more competitive.

rbuilder is not merely an incremental update; it represents a fundamental rethinking of the builder's role in the proposer-builder separation (PBS) pipeline. Written in Rust with a modular, event-driven architecture, rbuilder decouples transaction sourcing, simulation, and block assembly into parallel processing pipelines. Early benchmarks show rbuilder achieving 40-60% lower block construction latency compared to its predecessor, while simultaneously supporting more sophisticated optimization algorithms like multi-dimensional knapsack solvers for transaction ordering.

The significance extends beyond technical performance. This deprecation signals that Flashbots is doubling down on a vision where block building becomes a specialized, high-frequency operation — akin to a real-time auction engine — rather than a batch processing task. For the approximately 15% of Ethereum validators currently using Flashbots' builder, the transition requires careful migration planning. However, the open-source nature of both projects ensures that the broader ecosystem can audit, fork, and build upon these innovations. AINews examines the architectural decisions, competitive dynamics, and unresolved questions that will define the next era of MEV extraction on Ethereum.

Technical Deep Dive

The original MEV-Boost Block Builder was a Python-based monolith that followed a straightforward pipeline: receive transactions from the public mempool, simulate them sequentially against the current state, sort by profitability, and assemble a block. While functional, this architecture suffered from three critical limitations:

1. Sequential simulation bottleneck: Each transaction had to be simulated one at a time, with state changes propagating linearly. On high-congestion blocks with 300+ transactions, this created latencies of 500-800ms — dangerously close to the 4-second slot window.
2. Static ordering heuristics: The builder used a simple greedy algorithm that prioritized transactions with the highest gas price, ignoring complex interactions like sandwich attacks or cross-transaction arbitrage opportunities.
3. Single-point failure risk: A crash during block construction meant the validator had to fall back to a default builder, potentially losing significant MEV.

rbuilder addresses these with a multi-threaded, Rust-based architecture that leverages several key innovations:

- Parallel simulation engine: Transactions are grouped into dependency-ordered batches using a directed acyclic graph (DAG) of state accesses. Non-conflicting transactions are simulated concurrently across multiple CPU cores, reducing simulation time by up to 70%.
- Multi-objective optimization: Instead of maximizing a single metric (gas price), rbuilder implements a weighted scoring function that considers gas price, MEV opportunity value, and censorship resistance constraints. This uses a variant of the 0-1 knapsack algorithm adapted for Ethereum's stateful execution model.
- Hot-reloadable relay integration: The builder maintains persistent WebSocket connections to multiple relays simultaneously, allowing it to switch between them mid-slot if one becomes unresponsive — a feature absent in the original.

| Metric | MEV-Boost Builder (deprecated) | rbuilder (current) | Improvement |
|---|---|---|---|
| Language | Python 3.9 | Rust (nightly) | — |
| Block construction latency (p50) | 420 ms | 180 ms | 57% reduction |
| Block construction latency (p99) | 780 ms | 310 ms | 60% reduction |
| Max concurrent simulations | 1 (sequential) | 8-16 (parallel) | 8-16x throughput |
| Supported relays | 1 per slot | 3+ (hot-swappable) | 3x redundancy |
| Transaction throughput (sim/s) | ~150 | ~1,200 | 8x increase |
| MEV capture efficiency (est.) | ~85% | ~93% | +8 percentage points |

Data Takeaway: The latency and throughput improvements are not marginal — they represent a generational leap. rbuilder's ability to simulate 1,200 transactions per second versus 150 means validators can now evaluate far more complex orderings within the same 4-second window, directly translating to higher MEV capture. The redundancy feature also reduces the risk of missed slots, which cost validators their entire block reward.

For developers interested in the implementation details, the rbuilder repository on GitHub (github.com/flashbots/rbuilder) has already accumulated over 1,200 stars since its initial release. The codebase is organized into modular crates: `simulator` for parallel execution, `optimizer` for knapsack-based ordering, and `relay_client` for multi-relay management. Flashbots has also published a formal specification for the block building interface, which other builders like Manifold and Titan can adopt to ensure interoperability.

Key Players & Case Studies

The builder landscape on Ethereum is increasingly competitive, with several specialized firms vying for validator attention. Flashbots remains the dominant player, but its market share has eroded from an estimated 70% in early 2023 to approximately 55% today, as alternatives have matured.

| Builder | Market Share (est.) | Key Differentiator | Avg. Block Value Premium |
|---|---|---|---|
| Flashbots (rbuilder) | 55% | Largest relay network, deep liquidity | +0.12 ETH |
| Manifold | 20% | Focus on censorship resistance | +0.08 ETH |
| Titan | 15% | Low-latency, high-frequency order flow | +0.15 ETH |
| Beaver | 7% | Privacy-preserving order flow | +0.10 ETH |
| Others (Eden, Blocknative) | 3% | Niche strategies | +0.05 ETH |

Data Takeaway: Flashbots still commands a majority share, but the premium it delivers is no longer the highest — Titan's specialized low-latency infrastructure now offers a 25% higher average block value. This suggests that rbuilder's improvements are necessary for Flashbots to defend its position, not just to innovate.

Notable researchers and projects influencing this space include:

- Alex Obadia (Flashbots): The lead architect behind rbuilder, who previously worked on MEV-Geth and the original MEV-Boost specification. His 2024 talk at Devcon highlighted the need for "sub-second block building" as a requirement for Ethereum's future.
- Quintus Kilbourn (Manifold): Developed the "MEV-Share" protocol that allows searchers to submit bundles with partial order flow privacy, directly competing with Flashbots' approach.
- Titan Builder: A relatively new entrant that has optimized its infrastructure for low-latency connections to centralized exchanges, enabling faster arbitrage detection. Their builder is written in Go and uses a custom memory pool design.

The case study of Lido Finance is instructive. As the largest staking pool, Lido's validators collectively control over 30% of Ethereum's staked ETH. In mid-2024, Lido conducted a builder selection process and ultimately chose to route a portion of its blocks through Manifold for censorship resistance guarantees, while keeping the majority with Flashbots for maximum yield. This dual-builder strategy is becoming the norm, and rbuilder's multi-relay support directly caters to this trend.

Industry Impact & Market Dynamics

The deprecation of the original MEV-Boost Builder and the rise of rbuilder signals a maturation of the MEV supply chain. Three key dynamics are reshaping the market:

1. The commoditization of block building
Block building is transitioning from a niche research project to a competitive, high-frequency trading operation. The barrier to entry is rising: building a competitive builder now requires expertise in Rust, parallel computing, and real-time optimization algorithms — a far cry from the Python scripts that dominated in 2022. This favors well-funded teams like Flashbots, which has raised over $60 million in venture funding, and creates pressure for smaller players to consolidate or specialize.

2. Censorship resistance as a competitive moat
The debate over OFAC compliance continues to divide the builder market. Flashbots has taken a neutral stance, allowing relays to set their own compliance rules, while Manifold has aggressively marketed itself as a censorship-resistant alternative. Data from the MEV Watch dashboard shows that approximately 45% of Ethereum blocks currently comply with OFAC sanctions — a figure that has remained stubbornly high. rbuilder's architecture makes it easier for validators to switch between relays based on their preferences, potentially accelerating the fragmentation of the builder market along ideological lines.

3. The rise of order flow auctions (OFAs)
Flashbots is simultaneously developing SUAVE (Single Unified Auction for Value Expression), a separate chain designed to decouple MEV from Ethereum's execution layer. rbuilder is designed to be SUAVE-compatible, meaning it can eventually accept encrypted order flow from SUAVE's mempool. This positions Flashbots to capture value across both the current PBS system and the future SUAVE ecosystem, creating a lock-in effect for validators who adopt their builder.

| Year | Total MEV Extracted (ETH) | Flashbots Market Share | Number of Active Builders |
|---|---|---|---|
| 2022 | 420,000 | 78% | 4 |
| 2023 | 680,000 | 70% | 7 |
| 2024 | 890,000 | 55% | 12 |
| 2025 (est.) | 1,100,000 | 45-50% | 15+ |

Data Takeaway: While total MEV extraction continues to grow at roughly 30% annually, Flashbots' market share is declining as the ecosystem diversifies. This is healthy for Ethereum — it reduces single points of failure — but it means Flashbots must innovate faster than the market grows to maintain dominance. rbuilder is a defensive move, not an offensive one.

Risks, Limitations & Open Questions

Despite its technical merits, rbuilder introduces several risks and unresolved challenges:

1. Centralization of expertise
The complexity of rbuilder's Rust codebase creates a high barrier to auditing. While the original Python builder could be understood by a broader range of developers, rbuilder requires specialized systems programming knowledge. This could lead to a situation where only Flashbots engineers fully understand the builder's behavior, undermining the transparency that PBS was supposed to provide.

2. Latency arms race
rbuilder's sub-200ms block construction times are impressive, but they create pressure on validators to run builders in geographically optimized locations (e.g., AWS us-east-1 near Ethereum's consensus layer nodes). This geographic centralization could lead to a small number of validators consistently winning blocks, exacerbating MEV inequality.

3. SUAVE dependency risk
Flashbots' long-term vision ties rbuilder's future to SUAVE's adoption. If SUAVE fails to gain traction — due to regulatory concerns or competing solutions like Manifold's MEV-Share — rbuilder's competitive advantage may evaporate. Validators who invest in migrating to rbuilder now may face switching costs later.

4. Ethical concerns around MEV extraction
While Flashbots has positioned itself as a "white hat" MEV player, the fundamental activity of extracting value from user transactions remains controversial. rbuilder's increased efficiency means it will capture more MEV, potentially at the expense of end users who receive worse execution prices. The Ethereum community has yet to reach consensus on whether MEV should be minimized or redistributed.

AINews Verdict & Predictions

Flashbots' deprecation of the original MEV-Boost Builder in favor of rbuilder is the right move, executed at the right time. The original builder was a prototype that proved the concept of PBS; rbuilder is a production-grade system that can scale with Ethereum's growing transaction volume. However, the transition is not without risks, and Flashbots faces an increasingly fragmented competitive landscape.

Our predictions for the next 18 months:

1. rbuilder will capture 60-65% market share by Q1 2026 as validators migrate for the latency improvements, but this will be a peak — Manifold and Titan will continue to erode share through specialization.

2. A builder merger or acquisition will occur within 12 months. The market cannot sustain 15+ builders long-term. Expect a consolidation event, possibly involving Flashbots acquiring a smaller player for its order flow relationships.

3. SUAVE will launch on mainnet by late 2026, but initial adoption will be slow. rbuilder's SUAVE compatibility will become a key selling point only after SUAVE demonstrates clear value for searchers.

4. Regulatory pressure will intensify. The OFAC compliance debate will force builders to take explicit stances, potentially splitting the market into "compliant" and "resistant" segments. rbuilder's multi-relay architecture positions it well for this fragmentation.

What to watch next:
- The GitHub activity on rbuilder's repository — specifically, how quickly the community submits pull requests and audits the code.
- The next Flashbots research paper on block building optimization; they have hinted at using reinforcement learning for dynamic ordering strategies.
- Any announcement from Lido or Rocket Pool about builder diversification, as their decisions will signal market direction.

The era of the simple block builder is over. rbuilder marks the beginning of a new phase where block construction becomes a specialized, high-stakes computational problem — and Flashbots is betting it can stay ahead of the curve.

More from GitHub

El plugin Kedro-MLflow cierra la brecha de MLOps con integración estructurada de pipelinesThe Kedro-MLflow plugin, hosted on GitHub under the repository 'galileo-galilei/kedro-mlflow', addresses a longstanding Tutorial de Kedro-MLflow: El plano que faltaba para pipelines de ML en producciónThe kedro-mlflow-tutorial, hosted on GitHub under the Galileo-Galilei organization, provides a step-by-step walkthrough Ecosistema Ray: La columna vertebral de IA distribuida que no puedes ignorarThe awesome-ray repository (github.com/jiahaoyao/awesome-ray) is a meticulously curated collection of documentation, tutOpen source hub1136 indexed articles from GitHub

Archive

April 20262634 published articles

Further Reading

Flashbots MEV-Geth: El motor de subastas basado en Go que remodela el bosque oscuro de Ethereummev-geth de Flashbots es una implementación basada en Go de MEV-Auction que introduce mecanismos de oferta sellada y fluEl plugin Kedro-MLflow cierra la brecha de MLOps con integración estructurada de pipelinesEl plugin Kedro-MLflow surge como un puente crítico entre los pipelines de datos estructurados de Kedro y las capacidadeTutorial de Kedro-MLflow: El plano que faltaba para pipelines de ML en producciónUn nuevo tutorial de Galileo-Galilei muestra cómo el plugin kedro-mlflow conecta la orquestación de pipelines de datos dEcosistema Ray: La columna vertebral de IA distribuida que no puedes ignorarUna nueva lista curada de GitHub, awesome-ray, agrega los mejores recursos para el marco de computación distribuida Ray.

常见问题

GitHub 热点“Flashbots Retires MEV-Boost Builder: What rbuilder Means for Ethereum's MEV Future”主要讲了什么?

Flashbots, the research and development collective that has shaped Ethereum's MEV ecosystem, has deprecated its original MEV-Boost Block Builder in favor of rbuilder, a ground-up r…

这个 GitHub 项目在“Flashbots rbuilder vs MEV-Boost builder performance comparison”上为什么会引发关注?

The original MEV-Boost Block Builder was a Python-based monolith that followed a straightforward pipeline: receive transactions from the public mempool, simulate them sequentially against the current state, sort by profi…

从“How to migrate from MEV-Boost builder to rbuilder for Ethereum validators”看,这个 GitHub 项目的热度表现如何?

当前相关 GitHub 项目总星标约为 433,近一日增长约为 0,这说明它在开源社区具有较强讨论度和扩散能力。