MEV (Maximal Extractable Value) has been called Ethereum's "invisible tax." When a small number of builders dominate block construction, it creates:
Dataset: xatu ClickHouse mainnet (48h window)
Tables: mainnet.fct_block_mev_head, mainnet.fct_block_first_seen_by_node
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
Top 5 builders control 96.7% of MEV blocks. The top builder maintains a dominant ~28% market share.
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: