Mon, Feb 2, 2026

Propagation anomalies - 2026-02-02

Detection of blocks that propagated slower than expected, attempting to find correlations with blob count.

Show code
display_sql("block_production_timeline", target_date)
View query
WITH
-- Base slots using proposer duty as the source of truth
slots AS (
    SELECT DISTINCT
        slot,
        slot_start_date_time,
        proposer_validator_index
    FROM canonical_beacon_proposer_duty
    WHERE meta_network_name = 'mainnet'
      AND slot_start_date_time >= '2026-02-02' AND slot_start_date_time < '2026-02-02'::date + INTERVAL 1 DAY
),

-- Proposer entity mapping
proposer_entity AS (
    SELECT
        index,
        entity
    FROM ethseer_validator_entity
    WHERE meta_network_name = 'mainnet'
),

-- Blob count per slot
blob_count AS (
    SELECT
        slot,
        uniq(blob_index) AS blob_count
    FROM canonical_beacon_blob_sidecar
    WHERE meta_network_name = 'mainnet'
      AND slot_start_date_time >= '2026-02-02' AND slot_start_date_time < '2026-02-02'::date + INTERVAL 1 DAY
    GROUP BY slot
),

-- Canonical block hash (to verify MEV payload was actually used)
canonical_block AS (
    SELECT DISTINCT
        slot,
        execution_payload_block_hash
    FROM canonical_beacon_block
    WHERE meta_network_name = 'mainnet'
      AND slot_start_date_time >= '2026-02-02' AND slot_start_date_time < '2026-02-02'::date + INTERVAL 1 DAY
),

-- MEV bid timing using timestamp_ms
mev_bids AS (
    SELECT
        slot,
        slot_start_date_time,
        min(timestamp_ms) AS first_bid_timestamp_ms,
        max(timestamp_ms) AS last_bid_timestamp_ms
    FROM mev_relay_bid_trace
    WHERE meta_network_name = 'mainnet'
      AND slot_start_date_time >= '2026-02-02' AND slot_start_date_time < '2026-02-02'::date + INTERVAL 1 DAY
    GROUP BY slot, slot_start_date_time
),

-- MEV payload delivery - join canonical block with delivered payloads
-- Note: Use is_mev flag because ClickHouse LEFT JOIN returns 0 (not NULL) for non-matching rows
-- Get value from proposer_payload_delivered (not bid_trace, which may not have the winning block)
mev_payload AS (
    SELECT
        cb.slot,
        cb.execution_payload_block_hash AS winning_block_hash,
        1 AS is_mev,
        max(pd.value) AS winning_bid_value,
        groupArray(DISTINCT pd.relay_name) AS relay_names,
        any(pd.builder_pubkey) AS winning_builder
    FROM canonical_block cb
    GLOBAL INNER JOIN mev_relay_proposer_payload_delivered pd
        ON cb.slot = pd.slot AND cb.execution_payload_block_hash = pd.block_hash
    WHERE pd.meta_network_name = 'mainnet'
      AND slot_start_date_time >= '2026-02-02' AND slot_start_date_time < '2026-02-02'::date + INTERVAL 1 DAY
    GROUP BY cb.slot, cb.execution_payload_block_hash
),

-- Winning bid timing from bid_trace (may not exist for all MEV blocks)
winning_bid AS (
    SELECT
        bt.slot,
        bt.slot_start_date_time,
        argMin(bt.timestamp_ms, bt.event_date_time) AS winning_bid_timestamp_ms
    FROM mev_relay_bid_trace bt
    GLOBAL INNER JOIN mev_payload mp ON bt.slot = mp.slot AND bt.block_hash = mp.winning_block_hash
    WHERE bt.meta_network_name = 'mainnet'
      AND slot_start_date_time >= '2026-02-02' AND slot_start_date_time < '2026-02-02'::date + INTERVAL 1 DAY
    GROUP BY bt.slot, bt.slot_start_date_time
),

-- Block gossip timing with spread
block_gossip AS (
    SELECT
        slot,
        min(event_date_time) AS block_first_seen,
        max(event_date_time) AS block_last_seen
    FROM libp2p_gossipsub_beacon_block
    WHERE meta_network_name = 'mainnet'
      AND slot_start_date_time >= '2026-02-02' AND slot_start_date_time < '2026-02-02'::date + INTERVAL 1 DAY
    GROUP BY slot
),

-- Column arrival timing: first arrival per column, then min/max of those
column_gossip AS (
    SELECT
        slot,
        min(first_seen) AS first_column_first_seen,
        max(first_seen) AS last_column_first_seen
    FROM (
        SELECT
            slot,
            column_index,
            min(event_date_time) AS first_seen
        FROM libp2p_gossipsub_data_column_sidecar
        WHERE meta_network_name = 'mainnet'
          AND slot_start_date_time >= '2026-02-02' AND slot_start_date_time < '2026-02-02'::date + INTERVAL 1 DAY
          AND event_date_time > '1970-01-01 00:00:01'
        GROUP BY slot, column_index
    )
    GROUP BY slot
)

SELECT
    s.slot AS slot,
    s.slot_start_date_time AS slot_start_date_time,
    pe.entity AS proposer_entity,

    -- Blob count
    coalesce(bc.blob_count, 0) AS blob_count,

    -- MEV bid timing (absolute and relative to slot start)
    fromUnixTimestamp64Milli(mb.first_bid_timestamp_ms) AS first_bid_at,
    mb.first_bid_timestamp_ms - toInt64(toUnixTimestamp(mb.slot_start_date_time)) * 1000 AS first_bid_ms,
    fromUnixTimestamp64Milli(mb.last_bid_timestamp_ms) AS last_bid_at,
    mb.last_bid_timestamp_ms - toInt64(toUnixTimestamp(mb.slot_start_date_time)) * 1000 AS last_bid_ms,

    -- Winning bid timing (from bid_trace, may be NULL if block hash not in bid_trace)
    if(wb.slot != 0, fromUnixTimestamp64Milli(wb.winning_bid_timestamp_ms), NULL) AS winning_bid_at,
    if(wb.slot != 0, wb.winning_bid_timestamp_ms - toInt64(toUnixTimestamp(s.slot_start_date_time)) * 1000, NULL) AS winning_bid_ms,

    -- MEV payload info (from proposer_payload_delivered, always present for MEV blocks)
    if(mp.is_mev = 1, mp.winning_bid_value, NULL) AS winning_bid_value,
    if(mp.is_mev = 1, mp.relay_names, []) AS winning_relays,
    if(mp.is_mev = 1, mp.winning_builder, NULL) AS winning_builder,

    -- Block gossip timing with spread
    bg.block_first_seen,
    dateDiff('millisecond', s.slot_start_date_time, bg.block_first_seen) AS block_first_seen_ms,
    bg.block_last_seen,
    dateDiff('millisecond', s.slot_start_date_time, bg.block_last_seen) AS block_last_seen_ms,
    dateDiff('millisecond', bg.block_first_seen, bg.block_last_seen) AS block_spread_ms,

    -- Column arrival timing (NULL when no blobs)
    if(coalesce(bc.blob_count, 0) = 0, NULL, cg.first_column_first_seen) AS first_column_first_seen,
    if(coalesce(bc.blob_count, 0) = 0, NULL, dateDiff('millisecond', s.slot_start_date_time, cg.first_column_first_seen)) AS first_column_first_seen_ms,
    if(coalesce(bc.blob_count, 0) = 0, NULL, cg.last_column_first_seen) AS last_column_first_seen,
    if(coalesce(bc.blob_count, 0) = 0, NULL, dateDiff('millisecond', s.slot_start_date_time, cg.last_column_first_seen)) AS last_column_first_seen_ms,
    if(coalesce(bc.blob_count, 0) = 0, NULL, dateDiff('millisecond', cg.first_column_first_seen, cg.last_column_first_seen)) AS column_spread_ms

FROM slots s
GLOBAL LEFT JOIN proposer_entity pe ON s.proposer_validator_index = pe.index
GLOBAL LEFT JOIN blob_count bc ON s.slot = bc.slot
GLOBAL LEFT JOIN mev_bids mb ON s.slot = mb.slot
GLOBAL LEFT JOIN mev_payload mp ON s.slot = mp.slot
GLOBAL LEFT JOIN winning_bid wb ON s.slot = wb.slot
GLOBAL LEFT JOIN block_gossip bg ON s.slot = bg.slot
GLOBAL LEFT JOIN column_gossip cg ON s.slot = cg.slot

ORDER BY s.slot DESC
Show code
df = load_parquet("block_production_timeline", target_date)

# Filter to valid blocks (exclude missed slots)
df = df[df["block_first_seen_ms"].notna()]
df = df[(df["block_first_seen_ms"] >= 0) & (df["block_first_seen_ms"] < 60000)]

# Flag MEV vs local blocks
df["has_mev"] = df["winning_bid_value"].notna()
df["block_type"] = df["has_mev"].map({True: "MEV", False: "Local"})

# Get max blob count for charts
max_blobs = df["blob_count"].max()

print(f"Total valid blocks: {len(df):,}")
print(f"MEV blocks: {df['has_mev'].sum():,} ({df['has_mev'].mean()*100:.1f}%)")
print(f"Local blocks: {(~df['has_mev']).sum():,} ({(~df['has_mev']).mean()*100:.1f}%)")
Total valid blocks: 7,181
MEV blocks: 6,755 (94.1%)
Local blocks: 426 (5.9%)

Anomaly detection method

The method:

  1. Fit linear regression: block_first_seen_ms ~ blob_count
  2. Calculate residuals (actual - expected)
  3. Flag blocks with residuals > 2σ as anomalies

Points above the ±2σ band propagated slower than expected given their blob count.

Show code
# Conditional outliers: blocks slow relative to their blob count
df_anomaly = df.copy()

# Fit regression: block_first_seen_ms ~ blob_count
slope, intercept, r_value, p_value, std_err = stats.linregress(
    df_anomaly["blob_count"].astype(float), df_anomaly["block_first_seen_ms"]
)

# Calculate expected value and residual
df_anomaly["expected_ms"] = intercept + slope * df_anomaly["blob_count"].astype(float)
df_anomaly["residual_ms"] = df_anomaly["block_first_seen_ms"] - df_anomaly["expected_ms"]

# Calculate residual standard deviation
residual_std = df_anomaly["residual_ms"].std()

# Flag anomalies: residual > 2σ (unexpectedly slow)
df_anomaly["is_anomaly"] = df_anomaly["residual_ms"] > 2 * residual_std

n_anomalies = df_anomaly["is_anomaly"].sum()
pct_anomalies = n_anomalies / len(df_anomaly) * 100

# Prepare outliers dataframe
df_outliers = df_anomaly[df_anomaly["is_anomaly"]].copy()
df_outliers["relay"] = df_outliers["winning_relays"].apply(lambda x: x[0] if len(x) > 0 else "Local")
df_outliers["proposer"] = df_outliers["proposer_entity"].fillna("Unknown")
df_outliers["builder"] = df_outliers["winning_builder"].apply(
    lambda x: f"{x[:10]}..." if pd.notna(x) and x else "Local"
)

print(f"Regression: block_ms = {intercept:.1f} + {slope:.2f} × blob_count (R² = {r_value**2:.3f})")
print(f"Residual σ = {residual_std:.1f}ms")
print(f"Anomalies (>2σ slow): {n_anomalies:,} ({pct_anomalies:.1f}%)")
Regression: block_ms = 1868.5 + 14.23 × blob_count (R² = 0.011)
Residual σ = 670.7ms
Anomalies (>2σ slow): 177 (2.5%)
Show code
# Create scatter plot with regression band
x_range = np.array([0, int(max_blobs)])
y_pred = intercept + slope * x_range
y_upper = y_pred + 2 * residual_std
y_lower = y_pred - 2 * residual_std

fig = go.Figure()

# Add ±2σ band
fig.add_trace(go.Scatter(
    x=np.concatenate([x_range, x_range[::-1]]),
    y=np.concatenate([y_upper, y_lower[::-1]]),
    fill="toself",
    fillcolor="rgba(100,100,100,0.2)",
    line=dict(width=0),
    name="±2σ band",
    hoverinfo="skip",
))

# Add regression line
fig.add_trace(go.Scatter(
    x=x_range,
    y=y_pred,
    mode="lines",
    line=dict(color="white", width=2, dash="dash"),
    name="Expected",
))

# Normal points (sample to avoid overplotting)
df_normal = df_anomaly[~df_anomaly["is_anomaly"]]
if len(df_normal) > 2000:
    df_normal = df_normal.sample(2000, random_state=42)

fig.add_trace(go.Scatter(
    x=df_normal["blob_count"],
    y=df_normal["block_first_seen_ms"],
    mode="markers",
    marker=dict(size=4, color="rgba(100,150,200,0.4)"),
    name=f"Normal ({len(df_anomaly) - n_anomalies:,})",
    hoverinfo="skip",
))

# Anomaly points
fig.add_trace(go.Scatter(
    x=df_outliers["blob_count"],
    y=df_outliers["block_first_seen_ms"],
    mode="markers",
    marker=dict(
        size=7,
        color="#e74c3c",
        line=dict(width=1, color="white"),
    ),
    name=f"Anomalies ({n_anomalies:,})",
    customdata=np.column_stack([
        df_outliers["slot"],
        df_outliers["residual_ms"].round(0),
        df_outliers["relay"],
    ]),
    hovertemplate="<b>Slot %{customdata[0]}</b><br>Blobs: %{x}<br>Actual: %{y:.0f}ms<br>+%{customdata[1]}ms vs expected<br>Relay: %{customdata[2]}<extra></extra>",
))

fig.update_layout(
    margin=dict(l=60, r=30, t=30, b=60),
    xaxis=dict(title="Blob count", range=[-0.5, int(max_blobs) + 0.5]),
    yaxis=dict(title="Block first seen (ms from slot start)"),
    legend=dict(orientation="h", yanchor="bottom", y=1.02, xanchor="right", x=1),
    height=500,
)
fig.show(config={"responsive": True})

All propagation anomalies

Blocks that propagated much slower than expected given their blob count, sorted by residual (worst first).

Show code
# All anomalies table with selectable text and Lab links
if n_anomalies > 0:
    df_table = df_outliers.sort_values("residual_ms", ascending=False)[
        ["slot", "blob_count", "block_first_seen_ms", "expected_ms", "residual_ms", "proposer", "builder", "relay"]
    ].copy()
    df_table["block_first_seen_ms"] = df_table["block_first_seen_ms"].round(0).astype(int)
    df_table["expected_ms"] = df_table["expected_ms"].round(0).astype(int)
    df_table["residual_ms"] = df_table["residual_ms"].round(0).astype(int)
    
    # Build HTML table
    html = '''
    <style>
    .anomaly-table { border-collapse: collapse; width: 100%; font-family: monospace; font-size: 13px; }
    .anomaly-table th { background: #2c3e50; color: white; padding: 8px 12px; text-align: left; position: sticky; top: 0; }
    .anomaly-table td { padding: 6px 12px; border-bottom: 1px solid #eee; }
    .anomaly-table tr:hover { background: #f5f5f5; }
    .anomaly-table .num { text-align: right; }
    .anomaly-table .delta { background: #ffebee; color: #c62828; font-weight: bold; }
    .anomaly-table a { color: #1976d2; text-decoration: none; }
    .anomaly-table a:hover { text-decoration: underline; }
    .table-container { max-height: 600px; overflow-y: auto; }
    </style>
    <div class="table-container">
    <table class="anomaly-table">
    <thead>
    <tr><th>Slot</th><th class="num">Blobs</th><th class="num">Actual (ms)</th><th class="num">Expected (ms)</th><th class="num">Δ (ms)</th><th>Proposer</th><th>Builder</th><th>Relay</th></tr>
    </thead>
    <tbody>
    '''
    
    for _, row in df_table.iterrows():
        slot_link = f'<a href="https://lab.ethpandaops.io/ethereum/slots/{row["slot"]}" target="_blank">{row["slot"]}</a>'
        html += f'''<tr>
            <td>{slot_link}</td>
            <td class="num">{row["blob_count"]}</td>
            <td class="num">{row["block_first_seen_ms"]}</td>
            <td class="num">{row["expected_ms"]}</td>
            <td class="num delta">+{row["residual_ms"]}</td>
            <td>{row["proposer"]}</td>
            <td>{row["builder"]}</td>
            <td>{row["relay"]}</td>
        </tr>'''
    
    html += '</tbody></table></div>'
    display(HTML(html))
    print(f"\nTotal anomalies: {len(df_table):,}")
else:
    print("No anomalies detected.")
SlotBlobsActual (ms)Expected (ms)Δ (ms)ProposerBuilderRelay
13603212 0 10679 1868 +8811 rocklogicgmbh_lido Local Local
13603174 0 10662 1868 +8794 rocklogicgmbh_lido Local Local
13603615 3 7701 1911 +5790 solo_stakers Local Local
13597235 0 7252 1868 +5384 piertwo Local Local
13602915 0 7232 1868 +5364 solo_stakers Local Local
13598688 0 6686 1868 +4818 tekuteam Local Local
13598720 0 6462 1868 +4594 rocketpool Local Local
13599710 0 6275 1868 +4407 abyss_finance Local Local
13602020 0 5034 1868 +3166 whale_0x2017 Local Local
13598084 0 5022 1868 +3154 figment Local Local
13603552 0 4443 1868 +2575 upbit Local Local
13603680 0 4386 1868 +2518 Local Local
13597340 0 4072 1868 +2204 whale_0xdd6c Local Local
13603648 0 4055 1868 +2187 binance Local Local
13600132 0 4030 1868 +2162 blockdaemon Local Local
13600538 0 4020 1868 +2152 blockdaemon Local Local
13597514 0 3995 1868 +2127 p2porg_lido Local Local
13597611 12 4162 2039 +2123 Local Local
13599044 10 4120 2011 +2109 stakingfacilities_lido 0x88a53ec4... BloXroute Regulated
13598905 0 3971 1868 +2103 everstake Local Local
13599028 0 3896 1868 +2028 ether.fi Local Local
13599049 0 3896 1868 +2028 blockdaemon 0x8a850621... Titan Relay
13598901 0 3862 1868 +1994 Local Local
13598954 5 3930 1940 +1990 blockdaemon_lido 0x853b0078... Titan Relay
13600640 0 3801 1868 +1933 solo_stakers Local Local
13599093 0 3799 1868 +1931 Local Local
13598809 12 3961 2039 +1922 0x8527d16c... Ultra Sound
13600058 0 3754 1868 +1886 0xb3b03e65... Ultra Sound
13598040 5 3736 1940 +1796 revolut 0x8527d16c... Ultra Sound
13604160 0 3631 1868 +1763 ether.fi 0xb26f9666... Titan Relay
13603267 0 3621 1868 +1753 blockdaemon 0x850b00e0... BloXroute Regulated
13598813 10 3761 2011 +1750 blockdaemon 0xb26f9666... Titan Relay
13599043 5 3687 1940 +1747 abyss_finance 0x8527d16c... Ultra Sound
13600741 11 3767 2025 +1742 0x82c466b9... BloXroute Regulated
13599642 12 3768 2039 +1729 figment 0x850b00e0... BloXroute Max Profit
13602511 3 3639 1911 +1728 0x8527d16c... Ultra Sound
13602445 8 3695 1982 +1713 0x850b00e0... BloXroute Regulated
13599611 10 3720 2011 +1709 blockdaemon_lido 0x853b0078... Titan Relay
13598191 0 3568 1868 +1700 0xb26f9666... Titan Relay
13601184 12 3722 2039 +1683 blockdaemon 0x850b00e0... BloXroute Regulated
13598350 0 3550 1868 +1682 blockdaemon_lido 0xa412c4b8... Ultra Sound
13599525 4 3606 1925 +1681 everstake 0x856b0004... BloXroute Max Profit
13599443 5 3615 1940 +1675 0xb67eaa5e... Titan Relay
13599054 0 3536 1868 +1668 ether.fi 0x8527d16c... Ultra Sound
13599060 0 3535 1868 +1667 lido 0x853b0078... Aestus
13600330 6 3619 1954 +1665 0x855b00e6... Ultra Sound
13600348 0 3530 1868 +1662 ether.fi 0x851b00b1... Flashbots
13603148 5 3600 1940 +1660 0x88857150... Ultra Sound
13597828 0 3528 1868 +1660 blockdaemon 0x88510a78... BloXroute Regulated
13601634 0 3525 1868 +1657 ether.fi 0x88a53ec4... BloXroute Regulated
13597907 9 3650 1997 +1653 0x91b123d8... BloXroute Regulated
13598043 8 3632 1982 +1650 bitstamp 0x88a53ec4... BloXroute Regulated
13597668 0 3514 1868 +1646 blockdaemon 0xb26f9666... BloXroute Regulated
13600019 9 3639 1997 +1642 0x853b0078... Titan Relay
13599302 5 3581 1940 +1641 0xb26f9666... Titan Relay
13600273 8 3612 1982 +1630 everstake Local Local
13597628 20 3776 2153 +1623 whale_0xdd6c 0x855b00e6... BloXroute Max Profit
13598299 4 3544 1925 +1619 kraken 0xb26f9666... Titan Relay
13602727 5 3556 1940 +1616 0x8527d16c... Ultra Sound
13600681 8 3592 1982 +1610 0x82c466b9... BloXroute Regulated
13600497 6 3563 1954 +1609 everstake 0x853b0078... Aestus
13598654 10 3604 2011 +1593 blockdaemon 0x91b123d8... BloXroute Regulated
13600421 6 3546 1954 +1592 everstake 0xb67eaa5e... BloXroute Max Profit
13600033 0 3459 1868 +1591 kraken 0xb26f9666... EthGas
13598828 1 3472 1883 +1589 0xb26f9666... Titan Relay
13600115 0 3450 1868 +1582 0xb4ce6162... Ultra Sound
13598666 14 3648 2068 +1580 0x850b00e0... Ultra Sound
13598911 3 3489 1911 +1578 gateway.fmas_lido 0xb26f9666... Titan Relay
13604128 8 3560 1982 +1578 blockdaemon 0x88857150... Ultra Sound
13599753 12 3611 2039 +1572 blockdaemon 0x850b00e0... Ultra Sound
13599886 6 3525 1954 +1571 ether.fi 0xb26f9666... Titan Relay
13604353 5 3503 1940 +1563 blockdaemon_lido 0xb67eaa5e... Titan Relay
13599437 0 3430 1868 +1562 ether.fi 0x852b0070... Aestus
13598847 9 3556 1997 +1559 0x88a53ec4... BloXroute Max Profit
13602505 0 3425 1868 +1557 revolut Local Local
13603671 16 3646 2096 +1550 figment 0x853b0078... Ultra Sound
13604255 0 3412 1868 +1544 everstake 0x853b0078... BloXroute Max Profit
13602799 0 3412 1868 +1544 blockdaemon 0xb4ce6162... Ultra Sound
13600059 14 3609 2068 +1541 0xb67eaa5e... BloXroute Max Profit
13602226 0 3396 1868 +1528 blockdaemon_lido 0x88857150... Ultra Sound
13599222 2 3423 1897 +1526 p2porg 0x853b0078... Titan Relay
13598564 0 3393 1868 +1525 kelp 0xb26f9666... Titan Relay
13599895 15 3604 2082 +1522 revolut 0x8527d16c... Ultra Sound
13599200 0 3389 1868 +1521 bitstamp 0xb26f9666... Titan Relay
13603585 0 3388 1868 +1520 blockdaemon 0xb26f9666... Titan Relay
13604316 0 3387 1868 +1519 ether.fi 0xb26f9666... Titan Relay
13598434 16 3613 2096 +1517 0x88a53ec4... BloXroute Max Profit
13603936 0 3382 1868 +1514 whale_0xdd6c 0xb26f9666... Titan Relay
13600808 0 3380 1868 +1512 blockdaemon_lido 0x926b7905... Ultra Sound
13598842 0 3378 1868 +1510 0xb67eaa5e... BloXroute Max Profit
13599396 10 3519 2011 +1508 blockdaemon 0x855b00e6... Ultra Sound
13602939 4 3433 1925 +1508 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13601028 10 3518 2011 +1507 ether.fi 0xb26f9666... Titan Relay
13598733 0 3374 1868 +1506 0x8a850621... Titan Relay
13604058 1 3381 1883 +1498 0xb26f9666... Titan Relay
13597975 0 3365 1868 +1497 0xb26f9666... Titan Relay
13599764 0 3363 1868 +1495 Local Local
13602773 8 3472 1982 +1490 blockdaemon_lido 0x850b00e0... Ultra Sound
13600072 0 3349 1868 +1481 0xb26f9666... Titan Relay
13601972 14 3548 2068 +1480 nethermind_lido 0xb67eaa5e... BloXroute Regulated
13597903 12 3517 2039 +1478 stakingfacilities_lido 0x88a53ec4... BloXroute Regulated
13604390 6 3429 1954 +1475 0x88a53ec4... BloXroute Regulated
13599101 14 3541 2068 +1473 Local Local
13598781 7 3440 1968 +1472 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13599075 0 3339 1868 +1471 0x851b00b1... BloXroute Max Profit
13603770 6 3422 1954 +1468 everstake 0xb26f9666... Titan Relay
13603060 9 3464 1997 +1467 everstake 0x88a53ec4... BloXroute Regulated
13599616 15 3548 2082 +1466 nethermind_lido 0xb26f9666... Titan Relay
13598282 0 3333 1868 +1465 p2porg 0xb26f9666... BloXroute Max Profit
13600047 0 3319 1868 +1451 figment 0xa412c4b8... Ultra Sound
13600487 6 3403 1954 +1449 blockdaemon 0x82c466b9... BloXroute Regulated
13598228 0 3317 1868 +1449 p2porg 0x851b00b1... BloXroute Max Profit
13602729 7 3416 1968 +1448 0x856b0004... Ultra Sound
13603042 0 3315 1868 +1447 everstake 0x853b0078... Agnostic Gnosis
13598207 0 3314 1868 +1446 blockdaemon 0x83bee517... BloXroute Regulated
13599864 6 3395 1954 +1441 luno 0x850b00e0... BloXroute Regulated
13600713 8 3420 1982 +1438 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13603856 1 3320 1883 +1437 everstake 0xb67eaa5e... BloXroute Max Profit
13598965 0 3302 1868 +1434 gateway.fmas_lido 0xb26f9666... Aestus
13600948 1 3314 1883 +1431 blockdaemon 0xb26f9666... Titan Relay
13597996 3 3342 1911 +1431 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13603796 0 3299 1868 +1431 blockdaemon 0xb26f9666... Titan Relay
13597482 3 3339 1911 +1428 blockdaemon 0xb26f9666... Titan Relay
13597580 0 3291 1868 +1423 p2porg 0xb26f9666... BloXroute Regulated
13602400 4 3347 1925 +1422 ether.fi 0x8db2a99d... BloXroute Max Profit
13599062 13 3474 2054 +1420 0xb26f9666... EthGas
13598156 3 3328 1911 +1417 blockdaemon_lido 0x88a53ec4... BloXroute Regulated
13598290 21 3583 2167 +1416 p2porg 0x850b00e0... BloXroute Max Profit
13597481 4 3341 1925 +1416 p2porg 0x88a53ec4... BloXroute Max Profit
13600379 0 3283 1868 +1415 luno 0x8527d16c... Ultra Sound
13599850 12 3450 2039 +1411 blockdaemon_lido 0x850b00e0... BloXroute Regulated
13602049 0 3279 1868 +1411 0xb26f9666... Titan Relay
13601287 2 3307 1897 +1410 everstake 0xb26f9666... Titan Relay
13597819 1 3292 1883 +1409 blockdaemon 0xb67eaa5e... BloXroute Regulated
13602819 10 3420 2011 +1409 blockdaemon 0x853b0078... Ultra Sound
13600371 7 3377 1968 +1409 darma_capital 0x853b0078... Agnostic Gnosis
13600184 0 3276 1868 +1408 blockdaemon 0xb26f9666... Titan Relay
13603596 6 3360 1954 +1406 everstake 0xb26f9666... Titan Relay
13597564 4 3329 1925 +1404 blockdaemon 0x8527d16c... Ultra Sound
13600052 18 3528 2125 +1403 p2porg 0xb26f9666... Titan Relay
13602624 8 3384 1982 +1402 blockdaemon 0x853b0078... Ultra Sound
13601087 3 3311 1911 +1400 luno 0x8527d16c... Ultra Sound
13600292 9 3395 1997 +1398 luno 0x8527d16c... Ultra Sound
13601472 5 3332 1940 +1392 bitstamp 0x8527d16c... Ultra Sound
13600547 5 3331 1940 +1391 luno 0xb26f9666... Titan Relay
13603491 6 3345 1954 +1391 blockdaemon_lido 0x88857150... Ultra Sound
13598980 3 3301 1911 +1390 0x88857150... Ultra Sound
13601112 0 3258 1868 +1390 blockdaemon 0x850b00e0... BloXroute Regulated
13603128 0 3254 1868 +1386 everstake 0x852b0070... BloXroute Max Profit
13598407 0 3250 1868 +1382 blockdaemon_lido 0xb26f9666... Titan Relay
13600601 4 3306 1925 +1381 0x88a53ec4... BloXroute Max Profit
13598970 0 3249 1868 +1381 p2porg 0xb67eaa5e... BloXroute Max Profit
13599387 3 3291 1911 +1380 0x88a53ec4... BloXroute Regulated
13603278 2 3272 1897 +1375 blockdaemon_lido 0xb26f9666... Titan Relay
13599033 7 3343 1968 +1375 0xb26f9666... EthGas
13603399 5 3313 1940 +1373 blockdaemon 0xb67eaa5e... BloXroute Regulated
13600959 3 3284 1911 +1373 0xb67eaa5e... Titan Relay
13599221 0 3240 1868 +1372 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13603308 6 3323 1954 +1369 blockdaemon 0x853b0078... Ultra Sound
13602526 1 3251 1883 +1368 0x850b00e0... BloXroute Regulated
13603275 6 3322 1954 +1368 0x850b00e0... Flashbots
13598922 7 3335 1968 +1367 p2porg 0x850b00e0... BloXroute Max Profit
13597982 4 3292 1925 +1367 blockdaemon_lido 0xb26f9666... Titan Relay
13603005 9 3358 1997 +1361 everstake 0xb26f9666... Titan Relay
13602565 8 3343 1982 +1361 blockdaemon_lido 0xb26f9666... BloXroute Regulated
13601427 9 3357 1997 +1360 0xb26f9666... BloXroute Max Profit
13603597 5 3300 1940 +1360 0x8527d16c... Ultra Sound
13598451 3 3269 1911 +1358 kraken 0xb26f9666... EthGas
13604249 9 3351 1997 +1354 0x88857150... Ultra Sound
13603828 9 3350 1997 +1353 0xb26f9666... Titan Relay
13598835 18 3475 2125 +1350 blockdaemon_lido Local Local
13604309 5 3289 1940 +1349 gateway.fmas_lido 0x8527d16c... Ultra Sound
13597500 4 3273 1925 +1348 blockdaemon_lido 0xb26f9666... Titan Relay
13602148 0 3215 1868 +1347 0xb26f9666... Titan Relay
13598387 0 3213 1868 +1345 p2porg 0x926b7905... BloXroute Max Profit
13599816 11 3368 2025 +1343 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13597544 0 3211 1868 +1343 whale_0x23be 0x851b00b1... BloXroute Max Profit
Total anomalies: 177

Anomalies by relay

Which relays produce the most propagation anomalies?

Show code
if n_anomalies > 0:
    # Count anomalies by relay
    relay_counts = df_outliers["relay"].value_counts().reset_index()
    relay_counts.columns = ["relay", "anomaly_count"]
    
    # Get total blocks per relay for context
    df_anomaly["relay"] = df_anomaly["winning_relays"].apply(lambda x: x[0] if len(x) > 0 else "Local")
    total_by_relay = df_anomaly.groupby("relay").size().reset_index(name="total_blocks")
    
    relay_counts = relay_counts.merge(total_by_relay, on="relay")
    relay_counts["anomaly_rate"] = relay_counts["anomaly_count"] / relay_counts["total_blocks"] * 100
    relay_counts = relay_counts.sort_values("anomaly_rate", ascending=True)
    
    fig = go.Figure()
    
    fig.add_trace(go.Bar(
        y=relay_counts["relay"],
        x=relay_counts["anomaly_count"],
        orientation="h",
        marker_color="#e74c3c",
        text=relay_counts.apply(lambda r: f"{r['anomaly_count']}/{r['total_blocks']} ({r['anomaly_rate']:.1f}%)", axis=1),
        textposition="outside",
        hovertemplate="<b>%{y}</b><br>Anomalies: %{x}<br>Total blocks: %{customdata[0]:,}<br>Rate: %{customdata[1]:.1f}%<extra></extra>",
        customdata=np.column_stack([relay_counts["total_blocks"], relay_counts["anomaly_rate"]]),
    ))
    
    fig.update_layout(
        margin=dict(l=150, r=80, t=30, b=60),
        xaxis=dict(title="Number of anomalies"),
        yaxis=dict(title=""),
        height=350,
    )
    fig.show(config={"responsive": True})

Anomalies by proposer entity

Which proposer entities produce the most propagation anomalies?

Show code
if n_anomalies > 0:
    # Count anomalies by proposer entity
    proposer_counts = df_outliers["proposer"].value_counts().reset_index()
    proposer_counts.columns = ["proposer", "anomaly_count"]
    
    # Get total blocks per proposer for context
    df_anomaly["proposer"] = df_anomaly["proposer_entity"].fillna("Unknown")
    total_by_proposer = df_anomaly.groupby("proposer").size().reset_index(name="total_blocks")
    
    proposer_counts = proposer_counts.merge(total_by_proposer, on="proposer")
    proposer_counts["anomaly_rate"] = proposer_counts["anomaly_count"] / proposer_counts["total_blocks"] * 100
    
    # Show top 15 by anomaly count
    proposer_counts = proposer_counts.nlargest(15, "anomaly_rate").sort_values("anomaly_rate", ascending=True)
    
    fig = go.Figure()
    
    fig.add_trace(go.Bar(
        y=proposer_counts["proposer"],
        x=proposer_counts["anomaly_count"],
        orientation="h",
        marker_color="#e74c3c",
        text=proposer_counts.apply(lambda r: f"{r['anomaly_count']}/{r['total_blocks']} ({r['anomaly_rate']:.1f}%)", axis=1),
        textposition="outside",
        hovertemplate="<b>%{y}</b><br>Anomalies: %{x}<br>Total blocks: %{customdata[0]:,}<br>Rate: %{customdata[1]:.1f}%<extra></extra>",
        customdata=np.column_stack([proposer_counts["total_blocks"], proposer_counts["anomaly_rate"]]),
    ))
    
    fig.update_layout(
        margin=dict(l=150, r=80, t=30, b=60),
        xaxis=dict(title="Number of anomalies"),
        yaxis=dict(title=""),
        height=450,
    )
    fig.show(config={"responsive": True})

Anomalies by builder

Which builders produce the most propagation anomalies? (Truncated pubkeys shown for MEV blocks)

Show code
if n_anomalies > 0:
    # Count anomalies by builder
    builder_counts = df_outliers["builder"].value_counts().reset_index()
    builder_counts.columns = ["builder", "anomaly_count"]
    
    # Get total blocks per builder for context
    df_anomaly["builder"] = df_anomaly["winning_builder"].apply(
        lambda x: f"{x[:10]}..." if pd.notna(x) and x else "Local"
    )
    total_by_builder = df_anomaly.groupby("builder").size().reset_index(name="total_blocks")
    
    builder_counts = builder_counts.merge(total_by_builder, on="builder")
    builder_counts["anomaly_rate"] = builder_counts["anomaly_count"] / builder_counts["total_blocks"] * 100
    
    # Show top 15 by anomaly count
    builder_counts = builder_counts.nlargest(15, "anomaly_rate").sort_values("anomaly_rate", ascending=True)
    
    fig = go.Figure()
    
    fig.add_trace(go.Bar(
        y=builder_counts["builder"],
        x=builder_counts["anomaly_count"],
        orientation="h",
        marker_color="#e74c3c",
        text=builder_counts.apply(lambda r: f"{r['anomaly_count']}/{r['total_blocks']} ({r['anomaly_rate']:.1f}%)", axis=1),
        textposition="outside",
        hovertemplate="<b>%{y}</b><br>Anomalies: %{x}<br>Total blocks: %{customdata[0]:,}<br>Rate: %{customdata[1]:.1f}%<extra></extra>",
        customdata=np.column_stack([builder_counts["total_blocks"], builder_counts["anomaly_rate"]]),
    ))
    
    fig.update_layout(
        margin=dict(l=150, r=80, t=30, b=60),
        xaxis=dict(title="Number of anomalies"),
        yaxis=dict(title=""),
        height=450,
    )
    fig.show(config={"responsive": True})

Anomalies by blob count

Are anomalies more common at certain blob counts?

Show code
if n_anomalies > 0:
    # Count anomalies by blob count
    blob_anomalies = df_outliers.groupby("blob_count").size().reset_index(name="anomaly_count")
    blob_total = df_anomaly.groupby("blob_count").size().reset_index(name="total_blocks")
    
    blob_stats = blob_total.merge(blob_anomalies, on="blob_count", how="left").fillna(0)
    blob_stats["anomaly_count"] = blob_stats["anomaly_count"].astype(int)
    blob_stats["anomaly_rate"] = blob_stats["anomaly_count"] / blob_stats["total_blocks"] * 100
    
    fig = go.Figure()
    
    fig.add_trace(go.Bar(
        x=blob_stats["blob_count"],
        y=blob_stats["anomaly_count"],
        marker_color="#e74c3c",
        hovertemplate="<b>%{x} blobs</b><br>Anomalies: %{y}<br>Total: %{customdata[0]:,}<br>Rate: %{customdata[1]:.1f}%<extra></extra>",
        customdata=np.column_stack([blob_stats["total_blocks"], blob_stats["anomaly_rate"]]),
    ))
    
    fig.update_layout(
        margin=dict(l=60, r=30, t=30, b=60),
        xaxis=dict(title="Blob count", dtick=1),
        yaxis=dict(title="Number of anomalies"),
        height=350,
    )
    fig.show(config={"responsive": True})