Mon, Mar 2, 2026

Propagation anomalies - 2026-03-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-03-02' AND slot_start_date_time < '2026-03-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-03-02' AND slot_start_date_time < '2026-03-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-03-02' AND slot_start_date_time < '2026-03-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-03-02' AND slot_start_date_time < '2026-03-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-03-02' AND slot_start_date_time < '2026-03-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-03-02' AND slot_start_date_time < '2026-03-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-03-02' AND slot_start_date_time < '2026-03-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-03-02' AND slot_start_date_time < '2026-03-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,193
MEV blocks: 6,191 (86.1%)
Local blocks: 1,002 (13.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 = 1772.4 + 13.29 × blob_count (R² = 0.008)
Residual σ = 638.5ms
Anomalies (>2σ slow): 332 (4.6%)
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
13799456 0 12290 1772 +10518 rocketpool Local Local
13801330 5 6758 1839 +4919 whale_0x3212 Local Local
13800549 0 6380 1772 +4608 rocketpool Local Local
13799424 0 5350 1772 +3578 upbit Local Local
13804512 0 4527 1772 +2755 upbit Local Local
13803143 0 4514 1772 +2742 stakefish Local Local
13802120 0 4502 1772 +2730 rocketpool Local Local
13799872 0 4349 1772 +2577 upbit Local Local
13805933 0 4186 1772 +2414 whale_0xad1d Local Local
13804385 0 4123 1772 +2351 stakefish Local Local
13802585 0 4081 1772 +2309 stakefish Local Local
13801356 0 3999 1772 +2227 whale_0xad1d Local Local
13804427 1 3876 1786 +2090 stakefish Local Local
13801281 0 3842 1772 +2070 stakefish Local Local
13805731 0 3826 1772 +2054 stakefish Local Local
13800529 10 3901 1905 +1996 stakefish Local Local
13800576 0 3756 1772 +1984 whale_0x3212 Local Local
13804632 5 3807 1839 +1968 stakefish Local Local
13801429 1 3705 1786 +1919 whale_0xdc8d 0x88a53ec4... BloXroute Regulated
13805275 0 3658 1772 +1886 everstake 0x852b0070... BloXroute Max Profit
13805802 5 3720 1839 +1881 blockdaemon 0xb4ce6162... Ultra Sound
13803775 6 3731 1852 +1879 stakefish Local Local
13801816 2 3673 1799 +1874 stakefish Local Local
13801435 6 3717 1852 +1865 stakefish Local Local
13798982 11 3754 1919 +1835 ether.fi Local Local
13805705 0 3606 1772 +1834 whale_0x8ebd Local Local
13798956 3 3627 1812 +1815 stakefish Local Local
13805690 11 3729 1919 +1810 everstake 0xb26f9666... Aestus
13805942 6 3661 1852 +1809 blockdaemon_lido 0x823e0146... Ultra Sound
13803885 2 3591 1799 +1792 stakefish Local Local
13804000 0 3556 1772 +1784 stakefish Local Local
13805769 5 3619 1839 +1780 coinbase 0x856b0004... Aestus
13799584 7 3642 1865 +1777 senseinode_lido Local Local
13800034 9 3668 1892 +1776 ether.fi 0x8db2a99d... BloXroute Max Profit
13805982 1 3534 1786 +1748 everstake 0x856b0004... Aestus
13801680 0 3520 1772 +1748 whale_0x8ebd Local Local
13805042 0 3508 1772 +1736 everstake 0x83bee517... Flashbots
13802720 5 3563 1839 +1724 bitstamp 0x88a53ec4... BloXroute Regulated
13804700 0 3494 1772 +1722 stakefish Local Local
13804996 9 3613 1892 +1721 kraken 0xb67eaa5e... EthGas
13805008 17 3717 1998 +1719 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
13803708 3 3527 1812 +1715 stakefish Local Local
13805701 13 3659 1945 +1714 everstake 0xb26f9666... Titan Relay
13800830 5 3550 1839 +1711 stakefish Local Local
13805444 7 3565 1865 +1700 everstake 0x8db2a99d... BloXroute Max Profit
13805632 8 3577 1879 +1698 kraken 0x88857150... EthGas
13798916 11 3587 1919 +1668 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13799853 13 3610 1945 +1665 everstake 0xb67eaa5e... BloXroute Max Profit
13800227 0 3437 1772 +1665 stakefish Local Local
13804194 5 3501 1839 +1662 blockdaemon 0xb4ce6162... Ultra Sound
13798919 0 3423 1772 +1651 blockdaemon_lido 0x851b00b1... Ultra Sound
13802310 1 3435 1786 +1649 whale_0xdc8d Local Local
13801496 2 3447 1799 +1648 whale_0x8ebd 0x860d4173... Flashbots
13800592 0 3399 1772 +1627 blockdaemon_lido 0x82c466b9... Ultra Sound
13802240 1 3411 1786 +1625 stakingfacilities_lido 0x850b00e0... BloXroute Max Profit
13801952 1 3405 1786 +1619 gateway.fmas_lido Local Local
13801986 3 3428 1812 +1616 everstake Local Local
13805296 1 3401 1786 +1615 everstake 0x853b0078... Agnostic Gnosis
13801395 2 3414 1799 +1615 stakefish Local Local
13799792 11 3533 1919 +1614 blockdaemon 0x8a850621... Ultra Sound
13801602 5 3451 1839 +1612 everstake 0xb26f9666... Titan Relay
13805846 8 3488 1879 +1609 whale_0xedc6 0x850b00e0... BloXroute Max Profit
13805880 3 3419 1812 +1607 whale_0x8ebd 0x855b00e6... Flashbots
13802554 13 3551 1945 +1606 revolut Local Local
13804993 6 3457 1852 +1605 binance 0xb4ce6162... Ultra Sound
13800719 0 3377 1772 +1605 blockdaemon_lido 0x88857150... Ultra Sound
13801314 18 3615 2012 +1603 blockdaemon 0x857b0038... Ultra Sound
13804295 5 3438 1839 +1599 figment Local Local
13801710 0 3371 1772 +1599 whale_0x8ebd Local Local
13800518 0 3370 1772 +1598 everstake 0xb26f9666... Titan Relay
13800970 1 3379 1786 +1593 whale_0x8ebd Local Local
13804756 1 3375 1786 +1589 blockdaemon 0x8527d16c... Ultra Sound
13804619 10 3494 1905 +1589 blockdaemon 0xb4ce6162... Ultra Sound
13798990 5 3427 1839 +1588 whale_0x8ebd Local Local
13801108 8 3462 1879 +1583 everstake 0x850b00e0... BloXroute Max Profit
13801218 2 3377 1799 +1578 blockdaemon 0x850b00e0... BloXroute Regulated
13801828 0 3345 1772 +1573 blockdaemon 0x8527d16c... Ultra Sound
13800826 4 3398 1826 +1572 solo_stakers 0x91b123d8... Ultra Sound
13805491 5 3410 1839 +1571 everstake 0x8db2a99d... BloXroute Max Profit
13803853 8 3446 1879 +1567 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13800563 5 3406 1839 +1567 blockdaemon 0x8a850621... Titan Relay
13801954 5 3403 1839 +1564 blockdaemon_lido Local Local
13804426 5 3401 1839 +1562 whale_0x8ebd 0xb26f9666... Titan Relay
13800814 4 3386 1826 +1560 everstake 0x823e0146... BloXroute Max Profit
13802447 3 3371 1812 +1559 everstake Local Local
13801340 6 3410 1852 +1558 blockdaemon_lido 0x88857150... Ultra Sound
13800016 5 3396 1839 +1557 blockdaemon 0x8a850621... Titan Relay
13804602 5 3395 1839 +1556 everstake 0x8527d16c... Ultra Sound
13805851 0 3327 1772 +1555 everstake 0xb4ce6162... Ultra Sound
13802920 8 3431 1879 +1552 blockdaemon_lido 0x8527d16c... Ultra Sound
13805227 6 3402 1852 +1550 whale_0x8ebd 0x857b0038... Ultra Sound
13802470 5 3385 1839 +1546 whale_0x8ebd Local Local
13802439 5 3382 1839 +1543 whale_0xdc8d Local Local
13801737 0 3314 1772 +1542 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13801185 5 3380 1839 +1541 everstake 0xb26f9666... Titan Relay
13798949 7 3404 1865 +1539 blockdaemon 0x8a850621... Titan Relay
13802801 0 3308 1772 +1536 whale_0x8ebd 0x8a850621... Titan Relay
13805676 7 3400 1865 +1535 blockdaemon 0x856b0004... BloXroute Max Profit
13805235 1 3320 1786 +1534 blockdaemon_lido 0x855b00e6... BloXroute Max Profit
13804134 0 3306 1772 +1534 everstake 0xb26f9666... Titan Relay
13805340 2 3331 1799 +1532 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13803497 0 3302 1772 +1530 everstake 0x88a53ec4... BloXroute Regulated
13799411 6 3378 1852 +1526 0xb26f9666... Titan Relay
13803341 0 3297 1772 +1525 everstake 0xb26f9666... Titan Relay
13801167 4 3349 1826 +1523 blockdaemon 0x857b0038... Ultra Sound
13804486 1 3308 1786 +1522 everstake 0xac23f8cc... BloXroute Max Profit
13805834 0 3292 1772 +1520 kraken 0xb67eaa5e... EthGas
13804832 0 3292 1772 +1520 p2porg 0x8527d16c... Ultra Sound
13802681 1 3304 1786 +1518 blockdaemon 0xb26f9666... Titan Relay
13801347 0 3289 1772 +1517 everstake 0x852b0070... Agnostic Gnosis
13805382 0 3288 1772 +1516 0x91b123d8... BloXroute Regulated
13799912 5 3352 1839 +1513 blockdaemon_lido 0x8527d16c... Ultra Sound
13801800 0 3285 1772 +1513 blockdaemon_lido 0xb26f9666... Titan Relay
13801695 1 3297 1786 +1511 blockdaemon 0x88a53ec4... BloXroute Regulated
13803546 3 3320 1812 +1508 whale_0xdc8d 0xb26f9666... Titan Relay
13800660 5 3346 1839 +1507 blockdaemon_lido 0x855b00e6... Ultra Sound
13799933 3 3319 1812 +1507 mantle 0xb67eaa5e... BloXroute Max Profit
13800002 3 3315 1812 +1503 blockdaemon_lido 0x91b123d8... BloXroute Regulated
13799892 0 3273 1772 +1501 stakely_lido 0xb26f9666... Titan Relay
13800310 0 3273 1772 +1501 blockdaemon 0x91b123d8... BloXroute Regulated
13800321 1 3285 1786 +1499 ether.fi 0xb26f9666... Titan Relay
13805455 0 3267 1772 +1495 everstake 0xb26f9666... Titan Relay
13805432 6 3343 1852 +1491 coinbase 0x8db2a99d... Agnostic Gnosis
13800082 6 3339 1852 +1487 luno 0xa230e2cf... BloXroute Regulated
13798816 11 3405 1919 +1486 blockdaemon_lido 0x8db2a99d... Ultra Sound
13803868 0 3257 1772 +1485 everstake 0x852b0070... Agnostic Gnosis
13805335 0 3254 1772 +1482 revolut 0xb26f9666... Titan Relay
13802247 1 3264 1786 +1478 whale_0xdc8d 0x850b00e0... BloXroute Regulated
13799973 1 3263 1786 +1477 blockdaemon_lido 0x850b00e0... BloXroute Regulated
13799386 6 3328 1852 +1476 everstake 0xb26f9666... Titan Relay
13803196 0 3244 1772 +1472 0x8527d16c... Ultra Sound
13801499 5 3310 1839 +1471 p2porg 0x850b00e0... BloXroute Max Profit
13805206 6 3322 1852 +1470 blockdaemon_lido 0x855b00e6... BloXroute Max Profit
13799517 0 3242 1772 +1470 solo_stakers 0xb26f9666... BloXroute Max Profit
13802048 6 3321 1852 +1469 whale_0x8ebd Local Local
13805699 5 3307 1839 +1468 kraken 0xb67eaa5e... EthGas
13805270 0 3235 1772 +1463 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13801726 6 3314 1852 +1462 blockdaemon 0xb26f9666... Titan Relay
13802772 6 3314 1852 +1462 blockdaemon 0x8527d16c... Ultra Sound
13803912 7 3324 1865 +1459 blockdaemon_lido 0x88857150... Ultra Sound
13802457 1 3244 1786 +1458 p2porg Local Local
13798870 6 3310 1852 +1458 everstake 0x856b0004... Aestus
13800841 3 3270 1812 +1458 blockdaemon 0x88857150... Ultra Sound
13803726 0 3229 1772 +1457 blockdaemon 0x8527d16c... Ultra Sound
13805525 6 3304 1852 +1452 mantle 0xb26f9666... Titan Relay
13804289 6 3302 1852 +1450 everstake 0x855b00e6... BloXroute Max Profit
13800883 0 3222 1772 +1450 blockdaemon 0x853b0078... Ultra Sound
13802824 5 3288 1839 +1449 p2porg Local Local
13802918 0 3221 1772 +1449 blockdaemon 0xb26f9666... Titan Relay
13799899 1 3234 1786 +1448 p2porg 0x855b00e6... Flashbots
13801065 2 3245 1799 +1446 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13799976 7 3311 1865 +1446 stakingfacilities_lido 0x850b00e0... BloXroute Max Profit
13804162 0 3216 1772 +1444 everstake 0x8db2a99d... BloXroute Max Profit
13804153 19 3467 2025 +1442 whale_0xdc8d 0x91b123d8... BloXroute Regulated
13802820 10 3345 1905 +1440 revolut 0x8527d16c... Ultra Sound
13805469 8 3316 1879 +1437 blockdaemon_lido 0x853b0078... BloXroute Max Profit
13801510 0 3209 1772 +1437 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13800168 8 3315 1879 +1436 p2porg 0x8db2a99d... BloXroute Max Profit
13799312 5 3274 1839 +1435 everstake 0x88a53ec4... BloXroute Regulated
13801995 0 3205 1772 +1433 blockdaemon Local Local
13802304 9 3323 1892 +1431 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
13803507 9 3322 1892 +1430 0x88857150... Ultra Sound
13799681 13 3374 1945 +1429 mantle 0x88a53ec4... BloXroute Regulated
13801539 7 3294 1865 +1429 blockdaemon 0x853b0078... Ultra Sound
13805713 5 3263 1839 +1424 everstake 0xb26f9666... Titan Relay
13799399 5 3261 1839 +1422 blockdaemon 0xb26f9666... BloXroute Regulated
13804909 8 3300 1879 +1421 p2porg 0x850b00e0... BloXroute Regulated
13804994 3 3233 1812 +1421 everstake 0x856b0004... Aestus
13799059 0 3193 1772 +1421 everstake 0xb26f9666... Aestus
13800490 0 3193 1772 +1421 0x88a53ec4... BloXroute Regulated
13798813 1 3206 1786 +1420 blockdaemon 0xb26f9666... Titan Relay
13805988 8 3297 1879 +1418 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
13804474 6 3270 1852 +1418 blockdaemon 0x88857150... Ultra Sound
13802835 10 3322 1905 +1417 luno 0x88857150... Ultra Sound
13800610 10 3322 1905 +1417 revolut 0x8527d16c... Ultra Sound
13804348 0 3188 1772 +1416 blockdaemon 0x850b00e0... BloXroute Regulated
13799967 1 3201 1786 +1415 everstake 0x856b0004... Aestus
13800308 1 3200 1786 +1414 whale_0xdc8d 0xb26f9666... Titan Relay
13802222 5 3253 1839 +1414 p2porg Local Local
13799001 7 3279 1865 +1414 revolut 0x88857150... Ultra Sound
13803934 7 3278 1865 +1413 blockdaemon_lido 0x8527d16c... Ultra Sound
13801089 2 3211 1799 +1412 blockdaemon_lido 0x853b0078... Ultra Sound
13803893 6 3263 1852 +1411 everstake 0x823e0146... Agnostic Gnosis
13804576 0 3183 1772 +1411 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13802333 8 3289 1879 +1410 mantle Local Local
13801694 8 3288 1879 +1409 everstake 0x853b0078... Aestus
13805048 11 3325 1919 +1406 p2porg 0xb67eaa5e... BloXroute Regulated
13799144 8 3285 1879 +1406 p2porg 0xb67eaa5e... BloXroute Max Profit
13799515 0 3178 1772 +1406 0x8527d16c... Ultra Sound
13805957 11 3324 1919 +1405 mantle 0xb26f9666... Titan Relay
13799063 0 3176 1772 +1404 gateway.fmas_lido 0x851b00b1... BloXroute Max Profit
13800607 6 3254 1852 +1402 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13799820 0 3174 1772 +1402 whale_0xdc8d 0xb67eaa5e... BloXroute Max Profit
13804208 0 3173 1772 +1401 stakingfacilities_lido 0x852b0070... BloXroute Max Profit
13804848 4 3226 1826 +1400 everstake 0x8db2a99d... BloXroute Max Profit
13801193 0 3172 1772 +1400 whale_0xdc8d 0x8527d16c... Ultra Sound
13802911 0 3172 1772 +1400 gateway.fmas_lido 0x823e0146... Ultra Sound
13802045 1 3185 1786 +1399 p2porg Local Local
13801426 7 3264 1865 +1399 p2porg 0x850b00e0... BloXroute Regulated
13802116 0 3169 1772 +1397 whale_0x8ebd Local Local
13805459 8 3275 1879 +1396 coinbase 0x855b00e6... BloXroute Max Profit
13802248 15 3367 1972 +1395 luno Local Local
13805329 5 3233 1839 +1394 p2porg 0x850b00e0... BloXroute Regulated
13798850 0 3165 1772 +1393 p2porg 0x87cc2536... Agnostic Gnosis
13798950 0 3165 1772 +1393 bitstamp 0x88a53ec4... BloXroute Max Profit
13803715 4 3218 1826 +1392 p2porg 0xb67eaa5e... BloXroute Regulated
13805505 5 3231 1839 +1392 everstake 0x88a53ec4... BloXroute Max Profit
13804790 0 3164 1772 +1392 p2porg 0x850b00e0... Flashbots
13799664 1 3177 1786 +1391 kiln 0xac23f8cc... BloXroute Max Profit
13799746 6 3241 1852 +1389 everstake 0xb26f9666... Titan Relay
13805630 7 3254 1865 +1389 bitstamp 0x8527d16c... Ultra Sound
13804887 1 3174 1786 +1388 revolut 0xb26f9666... Ultra Sound
13801947 8 3267 1879 +1388 revolut Local Local
13804422 9 3278 1892 +1386 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
13805406 5 3222 1839 +1383 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13802712 6 3235 1852 +1383 everstake 0xac23f8cc... Agnostic Gnosis
13804992 3 3195 1812 +1383 senseinode_lido 0x88857150... Ultra Sound
13805818 8 3260 1879 +1381 everstake 0xb67eaa5e... BloXroute Regulated
13805254 12 3312 1932 +1380 everstake 0x856b0004... Aestus
13800116 4 3203 1826 +1377 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
13799199 4 3203 1826 +1377 everstake 0xb26f9666... Aestus
13799611 11 3296 1919 +1377 everstake 0x823e0146... Agnostic Gnosis
13799738 1 3161 1786 +1375 kelp 0x88a53ec4... BloXroute Regulated
13800575 6 3227 1852 +1375 blockdaemon_lido 0xb26f9666... Titan Relay
13805643 1 3159 1786 +1373 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13800615 4 3196 1826 +1370 blockdaemon_lido 0xb26f9666... Titan Relay
13799593 0 3142 1772 +1370 revolut 0x8527d16c... Ultra Sound
13802710 11 3288 1919 +1369 whale_0x8ebd Local Local
13799350 9 3260 1892 +1368 p2porg 0xb67eaa5e... BloXroute Max Profit
13800976 12 3298 1932 +1366 stakingfacilities_lido 0x850b00e0... BloXroute Max Profit
13801685 5 3204 1839 +1365 p2porg 0x850b00e0... BloXroute Regulated
13799072 0 3137 1772 +1365 stakefish_lido 0xb26f9666... Aestus
13802334 0 3134 1772 +1362 whale_0x8ebd 0x8a850621... Ultra Sound
13804119 0 3134 1772 +1362 kiln 0xa0366397... Flashbots
13805328 5 3200 1839 +1361 everstake 0xb26f9666... Titan Relay
13800058 17 3359 1998 +1361 blockdaemon 0x853b0078... Ultra Sound
13799722 0 3130 1772 +1358 ether.fi 0x851b00b1... Flashbots
13805380 7 3222 1865 +1357 p2porg 0x853b0078... BloXroute Regulated
13805420 10 3259 1905 +1354 p2porg 0x853b0078... BloXroute Max Profit
13799660 4 3179 1826 +1353 p2porg 0x850b00e0... BloXroute Regulated
13802973 3 3164 1812 +1352 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
13799804 5 3190 1839 +1351 whale_0x8ebd 0xac23f8cc... BloXroute Max Profit
13802191 0 3122 1772 +1350 p2porg 0x850b00e0... BloXroute Regulated
13802880 0 3119 1772 +1347 whale_0x8ebd 0x851b00b1... BloXroute Max Profit
13805854 4 3172 1826 +1346 p2porg 0x88a53ec4... BloXroute Max Profit
13803301 5 3185 1839 +1346 mantle 0x8db2a99d... Ultra Sound
13804154 0 3116 1772 +1344 kiln 0x8527d16c... Ultra Sound
13803161 20 3380 2038 +1342 p2porg 0xb67eaa5e... BloXroute Max Profit
13805807 11 3260 1919 +1341 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13799124 5 3180 1839 +1341 everstake 0xb26f9666... Titan Relay
13802989 3 3153 1812 +1341 0xb67eaa5e... BloXroute Max Profit
13805003 0 3112 1772 +1340 gateway.fmas_lido 0xba003e46... BloXroute Max Profit
13800748 0 3112 1772 +1340 solo_stakers 0x850b00e0... BloXroute Max Profit
13803583 13 3283 1945 +1338 kiln 0xb67eaa5e... BloXroute Max Profit
13803883 2 3136 1799 +1337 ether.fi 0x823e0146... Ultra Sound
13800548 6 3189 1852 +1337 p2porg 0x88a53ec4... BloXroute Max Profit
13805734 13 3282 1945 +1337 p2porg 0x8527d16c... Ultra Sound
13804499 5 3175 1839 +1336 stakingfacilities_lido 0x823e0146... BloXroute Max Profit
13804657 0 3106 1772 +1334 everstake 0x8db2a99d... Flashbots
13802915 4 3159 1826 +1333 kiln 0x88a53ec4... BloXroute Max Profit
13802325 0 3105 1772 +1333 whale_0x23be Local Local
13802860 19 3355 2025 +1330 blockdaemon_lido 0xb26f9666... Titan Relay
13799778 0 3101 1772 +1329 figment 0x8527d16c... Ultra Sound
13799531 8 3207 1879 +1328 p2porg 0x8527d16c... Ultra Sound
13801654 8 3206 1879 +1327 kiln 0x823e0146... BloXroute Max Profit
13804459 5 3166 1839 +1327 p2porg 0x860d4173... BloXroute Regulated
13805443 5 3165 1839 +1326 kiln 0x853b0078... Aestus
13805599 0 3098 1772 +1326 binance 0x8a850621... Titan Relay
13800753 5 3164 1839 +1325 stakingfacilities_lido 0x850b00e0... BloXroute Max Profit
13802806 0 3097 1772 +1325 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13804362 3 3136 1812 +1324 ether.fi 0xb26f9666... Titan Relay
13799044 0 3092 1772 +1320 p2porg 0x850b00e0... BloXroute Regulated
13805843 1 3105 1786 +1319 everstake 0x855b00e6... BloXroute Max Profit
13803176 1 3104 1786 +1318 p2porg 0x8527d16c... Ultra Sound
13805301 13 3263 1945 +1318 kraken 0xb67eaa5e... EthGas
13805550 3 3128 1812 +1316 p2porg 0x853b0078... Titan Relay
13800031 0 3087 1772 +1315 whale_0x8ebd 0x926b7905... Flashbots
13802675 1 3100 1786 +1314 p2porg 0x8db2a99d... Flashbots
13800159 6 3166 1852 +1314 mantle 0x8db2a99d... Ultra Sound
13805789 10 3218 1905 +1313 mantle 0x8527d16c... Ultra Sound
13805545 1 3098 1786 +1312 mantle 0x8db2a99d... Ultra Sound
13799069 9 3202 1892 +1310 kiln 0xac23f8cc... BloXroute Max Profit
13799875 0 3082 1772 +1310 whale_0x8ebd 0xb26f9666... Titan Relay
13801017 12 3239 1932 +1307 kiln 0xb7c5e609... Flashbots
13803006 0 3079 1772 +1307 kiln 0xb26f9666... Titan Relay
13805435 0 3078 1772 +1306 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13803245 1 3091 1786 +1305 ether.fi 0x8527d16c... Ultra Sound
13805290 6 3157 1852 +1305 p2porg 0x856b0004... Aestus
13799324 1 3090 1786 +1304 ether.fi 0x82c466b9... EthGas
13802686 5 3143 1839 +1304 kiln 0x853b0078... Aestus
13801105 0 3076 1772 +1304 p2porg 0x850b00e0... BloXroute Regulated
13805561 7 3169 1865 +1304 p2porg 0x856b0004... Agnostic Gnosis
13803167 0 3075 1772 +1303 ether.fi 0x99dbe3e8... Agnostic Gnosis
13805274 7 3168 1865 +1303 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
13805861 7 3168 1865 +1303 kiln 0xb67eaa5e... BloXroute Max Profit
13801509 12 3234 1932 +1302 kiln 0xb67eaa5e... BloXroute Regulated
13800324 0 3074 1772 +1302 ether.fi 0x87cc2536... Agnostic Gnosis
13799110 0 3074 1772 +1302 p2porg 0x87cc2536... Ultra Sound
13802695 0 3073 1772 +1301 p2porg 0x852b0070... Aestus
13803839 20 3337 2038 +1299 blockdaemon 0xb26f9666... Titan Relay
13799747 3 3111 1812 +1299 whale_0x8ebd 0x857b0038... Ultra Sound
13800815 0 3071 1772 +1299 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
13802561 0 3071 1772 +1299 p2porg Local Local
13804546 6 3150 1852 +1298 kiln 0x88a53ec4... BloXroute Regulated
13799270 6 3150 1852 +1298 p2porg 0x853b0078... Titan Relay
13804862 0 3069 1772 +1297 p2porg 0xb26f9666... BloXroute Regulated
13801190 5 3135 1839 +1296 0x853b0078... Agnostic Gnosis
13805583 5 3134 1839 +1295 p2porg 0xb67eaa5e... Aestus
13799536 1 3080 1786 +1294 kelp 0x8db2a99d... Ultra Sound
13804795 0 3065 1772 +1293 mantle 0xb26f9666... Titan Relay
13803988 5 3131 1839 +1292 p2porg 0xb26f9666... Titan Relay
13801501 0 3063 1772 +1291 p2porg 0x853b0078... BloXroute Max Profit
13801758 7 3156 1865 +1291 0xb7c5fbdd... BloXroute Max Profit
13805991 6 3141 1852 +1289 0x856b0004... BloXroute Max Profit
13799067 3 3099 1812 +1287 p2porg 0x88a53ec4... BloXroute Max Profit
13801590 0 3059 1772 +1287 kiln 0xb67eaa5e... BloXroute Max Profit
13802352 5 3125 1839 +1286 kiln Local Local
13801303 0 3058 1772 +1286 p2porg 0x855b00e6... BloXroute Max Profit
13805714 5 3124 1839 +1285 nethermind_lido 0x8527d16c... Ultra Sound
13800140 11 3203 1919 +1284 kiln 0x88a53ec4... BloXroute Regulated
13799582 5 3123 1839 +1284 mantle 0x856b0004... Agnostic Gnosis
13805036 0 3056 1772 +1284 everstake 0xba003e46... BloXroute Max Profit
13801199 0 3056 1772 +1284 ether.fi 0xb26f9666... Titan Relay
13801131 6 3135 1852 +1283 mantle 0x8527d16c... Ultra Sound
13801973 4 3106 1826 +1280 everstake Local Local
13802513 3 3091 1812 +1279 p2porg 0xb26f9666... BloXroute Max Profit
13805881 0 3051 1772 +1279 nethermind_lido 0x853b0078... BloXroute Regulated
13804844 21 3330 2052 +1278 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13802996 1 3064 1786 +1278 p2porg 0x853b0078... BloXroute Max Profit
13804936 1 3063 1786 +1277 p2porg 0xb67eaa5e... Aestus
13800202 5 3116 1839 +1277 kelp 0xb26f9666... Aestus
13804604 9 3169 1892 +1277 mantle 0xac23f8cc... BloXroute Max Profit
Total anomalies: 332

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})