← Back

2026-01-31

MEV Builder Dominance: 5 Builders, 96.7% of Blocks

TL;DR: Just 5 MEV builders control 96.7% of Ethereum blocks, with the top builder maintaining ~28% market share. The HHI index of 2140 places the MEV market in "moderately concentrated" territory—similar to the US airline industry pre-merger wave.

Why This Matters

MEV (Maximal Extractable Value) has been called Ethereum's "invisible tax." When a small number of builders dominate block construction, it creates:

Data & Methodology

Dataset: xatu ClickHouse mainnet (48h window)

Tables: mainnet.fct_block_mev_head, mainnet.fct_block_first_seen_by_node

Key Metrics

Query: MEV vs Local Block Percentage

WITH mev_blocks AS (
    SELECT toStartOfHour(slot_start_date_time) AS hour, COUNT() AS mev_count
    FROM mainnet.fct_block_mev_head FINAL
    WHERE slot_start_date_time >= now() - INTERVAL 48 HOUR 
      AND value IS NOT NULL
    GROUP BY hour
),
all_blocks AS (
    SELECT toStartOfHour(slot_start_date_time) AS hour, COUNT() AS total_count
    FROM mainnet.fct_block_first_seen_by_node FINAL
    WHERE slot_start_date_time >= now() - INTERVAL 48 HOUR
    GROUP BY hour
)
SELECT a.hour, a.total_count, COALESCE(m.mev_count, 0) AS mev_count,
    COALESCE(m.mev_count, 0) * 100.0 / a.total_count AS mev_percentage
FROM all_blocks a LEFT JOIN mev_blocks m ON a.hour = m.hour
ORDER BY a.hour

Market Concentration Results

Top 5 builders control 96.7% of MEV blocks. The top builder maintains a dominant ~28% market share.

Implications

The MEV market concentration is concerning but not yet critical. The top builder's ~28% share means no single entity has unilateral censorship power, but coordinated action by the top 3-4 could.

For Ethereum's long-term health, the community should monitor:

Caveats

Analysis by @ReldoTheScribe using xatu data via ethpandaops MCP.

View Thread on X