Tue, Mar 3, 2026

Propagation anomalies - 2026-03-03

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-03' AND slot_start_date_time < '2026-03-03'::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-03' AND slot_start_date_time < '2026-03-03'::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-03' AND slot_start_date_time < '2026-03-03'::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-03' AND slot_start_date_time < '2026-03-03'::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-03' AND slot_start_date_time < '2026-03-03'::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-03' AND slot_start_date_time < '2026-03-03'::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-03' AND slot_start_date_time < '2026-03-03'::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-03' AND slot_start_date_time < '2026-03-03'::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,207
MEV blocks: 6,682 (92.7%)
Local blocks: 525 (7.3%)

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 = 1787.0 + 16.59 × blob_count (R² = 0.012)
Residual σ = 639.4ms
Anomalies (>2σ slow): 338 (4.7%)
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
13811104 5 4887 1870 +3017 bridgetower_lido Local Local
13807168 0 4767 1787 +2980 upbit Local Local
13809117 0 4434 1787 +2647 stakefish Local Local
13809965 0 4431 1787 +2644 lido Local Local
13808471 0 4399 1787 +2612 stakefish Local Local
13812255 7 4505 1903 +2602 ether.fi 0xb67eaa5e... EthGas
13806918 0 4262 1787 +2475 ether.fi Local Local
13810371 0 4194 1787 +2407 piertwo Local Local
13813120 0 4188 1787 +2401 whale_0x9212 Local Local
13810427 0 4162 1787 +2375 stakefish Local Local
13810713 0 4128 1787 +2341 stakefish Local Local
13810452 0 3966 1787 +2179 lido Local Local
13811200 0 3960 1787 +2173 whale_0xe389 Local Local
13808090 0 3945 1787 +2158 everstake Local Local
13811754 0 3927 1787 +2140 stakefish Local Local
13807725 7 3974 1903 +2071 stakefish Local Local
13811285 0 3836 1787 +2049 everstake Local Local
13808109 4 3893 1853 +2040 lido Local Local
13811105 0 3807 1787 +2020 kiln Local Local
13809170 2 3827 1820 +2007 whale_0xad1d Local Local
13806102 11 3965 1969 +1996 stakefish Local Local
13806715 6 3869 1886 +1983 everstake 0xb26f9666... Titan Relay
13809159 6 3858 1886 +1972 solo_stakers Local Local
13812034 0 3747 1787 +1960 blockdaemon 0xb26f9666... Titan Relay
13806714 0 3739 1787 +1952 everstake 0x99dbe3e8... Agnostic Gnosis
13811946 6 3813 1886 +1927 stakefish Local Local
13806303 0 3693 1787 +1906 everstake 0xb26f9666... Titan Relay
13809180 8 3815 1920 +1895 stakefish Local Local
13808473 0 3668 1787 +1881 everstake 0x88857150... Ultra Sound
13807873 6 3756 1886 +1870 stakefish Local Local
13810932 5 3736 1870 +1866 everstake 0xb26f9666... Aestus
13806769 6 3728 1886 +1842 blockdaemon_lido 0x88857150... Ultra Sound
13811402 1 3634 1804 +1830 everstake 0xb26f9666... Aestus
13808339 0 3617 1787 +1830 0x88857150... Ultra Sound
13809907 3 3659 1837 +1822 stakefish Local Local
13806057 3 3652 1837 +1815 ether.fi 0xb26f9666... EthGas
13812795 7 3712 1903 +1809 solo_stakers Local Local
13811022 0 3577 1787 +1790 ether.fi 0xb67eaa5e... EthGas
13811828 8 3701 1920 +1781 stakefish Local Local
13807307 3 3615 1837 +1778 stakefish Local Local
13813056 9 3705 1936 +1769 blockdaemon_lido 0x823e0146... Ultra Sound
13812014 0 3554 1787 +1767 nethermind_lido 0x8527d16c... Ultra Sound
13812257 0 3540 1787 +1753 everstake 0xb26f9666... Aestus
13813193 3 3589 1837 +1752 stakefish Local Local
13810848 0 3529 1787 +1742 everstake 0x8527d16c... Ultra Sound
13810934 11 3703 1969 +1734 kraken 0xb26f9666... EthGas
13809137 6 3604 1886 +1718 everstake 0xb26f9666... Aestus
13811808 5 3584 1870 +1714 whale_0x8ebd Local Local
13808832 10 3666 1953 +1713 blockdaemon 0x850b00e0... BloXroute Max Profit
13813168 5 3566 1870 +1696 blockdaemon 0x8527d16c... Ultra Sound
13807965 3 3529 1837 +1692 whale_0x8ebd Local Local
13811840 5 3560 1870 +1690 coinbase 0xb67eaa5e... BloXroute Regulated
13807003 10 3639 1953 +1686 everstake 0xb26f9666... Aestus
13813117 5 3553 1870 +1683 figment 0xb26f9666... BloXroute Regulated
13811299 8 3601 1920 +1681 whale_0x8ebd 0xb4ce6162... Ultra Sound
13810826 9 3614 1936 +1678 whale_0x8ebd 0x8527d16c... Ultra Sound
13807770 3 3512 1837 +1675 stakefish Local Local
13811187 7 3578 1903 +1675 ether.fi 0x8527d16c... EthGas
13808160 0 3455 1787 +1668 bridgetower_lido Local Local
13811505 1 3458 1804 +1654 everstake 0xb26f9666... Titan Relay
13811401 5 3523 1870 +1653 everstake 0x8a850621... Titan Relay
13812985 6 3535 1886 +1649 nethermind_lido 0xb26f9666... Titan Relay
13807216 1 3450 1804 +1646 stakefish Local Local
13806164 0 3433 1787 +1646 everstake 0x8a850621... Titan Relay
13811394 6 3531 1886 +1645 solo_stakers 0x88857150... Ultra Sound
13812500 3 3472 1837 +1635 blockdaemon_lido 0x88857150... Ultra Sound
13810368 2 3454 1820 +1634 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
13806200 5 3502 1870 +1632 ether.fi 0x8527d16c... EthGas
13808592 11 3592 1969 +1623 figment 0x853b0078... Ultra Sound
13812031 0 3409 1787 +1622 everstake 0x88a53ec4... BloXroute Regulated
13807195 10 3566 1953 +1613 whale_0x8ebd Local Local
13807000 6 3498 1886 +1612 0x88857150... EthGas
13806654 5 3478 1870 +1608 whale_0x8ebd 0xb26f9666... Titan Relay
13810185 1 3405 1804 +1601 whale_0x8ebd Local Local
13812526 0 3384 1787 +1597 blockdaemon_lido 0x88857150... Ultra Sound
13810500 3 3428 1837 +1591 whale_0x8ebd Local Local
13811732 0 3377 1787 +1590 everstake 0x852b0070... BloXroute Max Profit
13806343 0 3376 1787 +1589 whale_0xad1d Local Local
13806788 6 3470 1886 +1584 blockdaemon 0x823e0146... BloXroute Max Profit
13806935 7 3484 1903 +1581 coinbase 0x88857150... Ultra Sound
13808515 5 3449 1870 +1579 p2porg 0xb26f9666... BloXroute Max Profit
13810764 10 3530 1953 +1577 nethermind_lido 0x853b0078... Aestus
13812635 7 3478 1903 +1575 whale_0x8ebd Local Local
13808190 6 3457 1886 +1571 luno 0xb67eaa5e... BloXroute Regulated
13806921 0 3356 1787 +1569 mantle 0xb26f9666... Titan Relay
13807040 0 3350 1787 +1563 ether.fi 0x852b0070... BloXroute Max Profit
13812580 0 3350 1787 +1563 whale_0xc541 0xa0366397... Titan Relay
13807776 0 3349 1787 +1562 everstake 0x850b00e0... BloXroute Max Profit
13807394 0 3346 1787 +1559 blockdaemon 0x88857150... Ultra Sound
13812677 6 3442 1886 +1556 nethermind_lido 0xb26f9666... Titan Relay
13808788 8 3472 1920 +1552 everstake 0x850b00e0... BloXroute Max Profit
13808900 3 3380 1837 +1543 everstake 0x853b0078... Ultra Sound
13811533 3 3379 1837 +1542 blockdaemon 0xb4ce6162... Ultra Sound
13812461 4 3395 1853 +1542 everstake 0x88a53ec4... BloXroute Regulated
13807469 0 3321 1787 +1534 luno 0xb26f9666... Titan Relay
13813156 4 3382 1853 +1529 blockdaemon 0x8a850621... Titan Relay
13806307 10 3480 1953 +1527 whale_0x9212 0x8527d16c... Ultra Sound
13807442 0 3313 1787 +1526 blockdaemon 0xb67eaa5e... BloXroute Regulated
13813146 0 3312 1787 +1525 everstake 0xb26f9666... Titan Relay
13810849 18 3610 2086 +1524 kraken 0x8527d16c... EthGas
13811749 5 3393 1870 +1523 everstake 0xb26f9666... Titan Relay
13806288 0 3309 1787 +1522 ether.fi 0xb26f9666... Titan Relay
13806588 5 3390 1870 +1520 mantle 0xb26f9666... Titan Relay
13812020 1 3321 1804 +1517 revolut 0xb67eaa5e... BloXroute Regulated
13808720 1 3315 1804 +1511 whale_0xdc8d 0x850b00e0... BloXroute Regulated
13811442 3 3347 1837 +1510 blockdaemon_lido 0x8527d16c... Ultra Sound
13811038 0 3297 1787 +1510 p2porg 0xb211df49... Ultra Sound
13810203 7 3409 1903 +1506 luno 0x8db2a99d... Ultra Sound
13806595 10 3458 1953 +1505 whale_0xdc8d 0x850b00e0... BloXroute Regulated
13810683 0 3290 1787 +1503 everstake 0xb26f9666... Titan Relay
13812789 5 3370 1870 +1500 everstake 0x853b0078... BloXroute Max Profit
13812762 5 3368 1870 +1498 blockdaemon_lido 0x88857150... Ultra Sound
13812051 6 3380 1886 +1494 blockdaemon 0x850b00e0... BloXroute Max Profit
13811273 9 3427 1936 +1491 everstake 0xb26f9666... Titan Relay
13806564 0 3277 1787 +1490 ether.fi 0xa1da2978... Ultra Sound
13806908 7 3390 1903 +1487 ether.fi 0x8527d16c... EthGas
13813155 1 3290 1804 +1486 blockdaemon_lido 0x8527d16c... Ultra Sound
13812010 8 3406 1920 +1486 ether.fi 0xb26f9666... Titan Relay
13810181 4 3339 1853 +1486 blockdaemon_lido 0x88857150... Ultra Sound
13809666 20 3604 2119 +1485 everstake 0x88a53ec4... BloXroute Regulated
13807339 0 3272 1787 +1485 luno 0x88a53ec4... BloXroute Regulated
13806207 6 3371 1886 +1485 everstake 0xb4ce6162... Ultra Sound
13806381 0 3269 1787 +1482 kelp 0xb26f9666... Titan Relay
13809891 9 3418 1936 +1482 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13808620 0 3268 1787 +1481 everstake 0xb26f9666... Titan Relay
13812190 4 3334 1853 +1481 whale_0xdc8d 0x853b0078... BloXroute Regulated
13811546 3 3315 1837 +1478 whale_0xdc8d 0x853b0078... BloXroute Max Profit
13810540 10 3430 1953 +1477 whale_0x8ebd Local Local
13810369 20 3595 2119 +1476 0x850b00e0... BloXroute Regulated
13810060 10 3428 1953 +1475 whale_0x8ebd Local Local
13806272 13 3477 2003 +1474 0x82c466b9... EthGas
13812416 6 3359 1886 +1473 bitstamp 0x8db2a99d... Agnostic Gnosis
13809305 9 3408 1936 +1472 blockdaemon 0x8a850621... Titan Relay
13811859 4 3325 1853 +1472 blockdaemon_lido 0x853b0078... Ultra Sound
13810211 0 3255 1787 +1468 blockdaemon 0xb4ce6162... Ultra Sound
13807198 5 3337 1870 +1467 blockdaemon_lido 0x88a53ec4... BloXroute Regulated
13810678 6 3353 1886 +1467 blockdaemon 0x853b0078... Ultra Sound
13806713 1 3269 1804 +1465 kiln 0xb26f9666... Titan Relay
13811085 4 3315 1853 +1462 stakingfacilities_lido 0x856b0004... BloXroute Max Profit
13812455 5 3330 1870 +1460 blockdaemon_lido 0x88a53ec4... BloXroute Regulated
13810734 0 3247 1787 +1460 nethermind_lido 0x852b0070... BloXroute Max Profit
13809280 4 3312 1853 +1459 ether.fi 0xb26f9666... Titan Relay
13806206 13 3460 2003 +1457 kraken 0x88857150... EthGas
13811121 12 3442 1986 +1456 whale_0x8ebd 0x853b0078... BloXroute Regulated
13806755 8 3374 1920 +1454 whale_0x8ebd Local Local
13807108 2 3272 1820 +1452 blockdaemon_lido 0xac23f8cc... Ultra Sound
13805999 12 3437 1986 +1451 kraken 0xb67eaa5e... EthGas
13810135 5 3319 1870 +1449 blockdaemon_lido 0xb26f9666... Titan Relay
13807026 0 3236 1787 +1449 luno 0xb4ce6162... Ultra Sound
13807571 0 3235 1787 +1448 everstake 0xb26f9666... Titan Relay
13812221 5 3314 1870 +1444 nethermind_lido 0xb67eaa5e... BloXroute Regulated
13812518 0 3231 1787 +1444 revolut 0x8db2a99d... Ultra Sound
13806260 9 3380 1936 +1444 whale_0x8ebd 0xa230e2cf... BloXroute Max Profit
13809999 14 3461 2019 +1442 revolut 0x82c466b9... BloXroute Regulated
13807574 0 3228 1787 +1441 everstake 0x88a53ec4... BloXroute Max Profit
13811780 0 3227 1787 +1440 ether.fi 0x82c466b9... EthGas
13810596 0 3227 1787 +1440 everstake 0x852b0070... BloXroute Max Profit
13806943 3 3276 1837 +1439 0x856b0004... BloXroute Max Profit
13811167 5 3309 1870 +1439 p2porg 0x91b123d8... BloXroute Regulated
13806999 0 3226 1787 +1439 solo_stakers 0x8a850621... Titan Relay
13812054 0 3225 1787 +1438 0x850b00e0... Flashbots
13809761 0 3225 1787 +1438 mantle 0x99dbe3e8... Titan Relay
13811023 0 3224 1787 +1437 stakingfacilities_lido 0x851b00b1... BloXroute Max Profit
13807371 5 3306 1870 +1436 whale_0x8ebd 0xb4ce6162... Ultra Sound
13807975 0 3220 1787 +1433 blockdaemon 0x8527d16c... Ultra Sound
13809769 13 3435 2003 +1432 solo_stakers 0x8db2a99d... BloXroute Max Profit
13812259 0 3218 1787 +1431 coinbase 0x8a850621... Titan Relay
13807960 2 3251 1820 +1431 whale_0xdc8d 0x8527d16c... Ultra Sound
13808069 6 3317 1886 +1431 everstake 0x853b0078... Ultra Sound
13806447 5 3297 1870 +1427 blockdaemon 0x88857150... Ultra Sound
13808913 5 3297 1870 +1427 everstake 0xb26f9666... Titan Relay
13810818 0 3214 1787 +1427 whale_0x8ebd 0xba003e46... Flashbots
13811746 3 3263 1837 +1426 nethermind_lido 0x8db2a99d... Flashbots
13806193 5 3294 1870 +1424 kiln 0x856b0004... Agnostic Gnosis
13806024 0 3210 1787 +1423 p2porg 0x851b00b1... Flashbots
13808494 1 3225 1804 +1421 stakingfacilities_lido 0x88a53ec4... BloXroute Regulated
13810928 8 3340 1920 +1420 everstake 0x823e0146... Agnostic Gnosis
13808007 5 3288 1870 +1418 blockdaemon 0x8527d16c... Ultra Sound
13807815 0 3204 1787 +1417 everstake 0x8527d16c... Ultra Sound
13808676 17 3483 2069 +1414 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13808579 7 3317 1903 +1414 bitstamp 0x850b00e0... BloXroute Max Profit
13810234 9 3350 1936 +1414 kelp 0x91b123d8... BloXroute Regulated
13812746 5 3283 1870 +1413 p2porg 0x8db2a99d... BloXroute Max Profit
13809909 0 3200 1787 +1413 blockdaemon 0x8527d16c... Ultra Sound
13806876 0 3197 1787 +1410 whale_0x8ebd 0x8527d16c... Ultra Sound
13811272 0 3197 1787 +1410 blockscape_lido 0x853b0078... Titan Relay
13810512 6 3293 1886 +1407 nethermind_lido 0x88a53ec4... BloXroute Regulated
13810860 6 3293 1886 +1407 kraken 0x8527d16c... EthGas
13811779 3 3242 1837 +1405 ether.fi 0xb26f9666... EthGas
13806899 11 3374 1969 +1405 whale_0x8ebd 0x8527d16c... Ultra Sound
13808506 6 3291 1886 +1405 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13808850 0 3190 1787 +1403 whale_0xdd6c 0x852b0070... Agnostic Gnosis
13809894 0 3190 1787 +1403 p2porg 0x823e0146... Flashbots
13812017 0 3190 1787 +1403 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13809087 5 3271 1870 +1401 everstake 0x856b0004... BloXroute Max Profit
13812308 3 3236 1837 +1399 p2porg 0xb26f9666... Aestus
13806324 5 3269 1870 +1399 whale_0x8ebd 0x8527d16c... Ultra Sound
13811316 0 3184 1787 +1397 kiln 0xa9bd259c... Flashbots
13806199 11 3365 1969 +1396 everstake 0xb26f9666... Titan Relay
13812590 5 3265 1870 +1395 blockdaemon_lido 0x88857150... Ultra Sound
13807441 0 3182 1787 +1395 everstake 0xb26f9666... Aestus
13807998 0 3182 1787 +1395 revolut 0x8527d16c... Ultra Sound
13812267 0 3180 1787 +1393 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
13811009 0 3180 1787 +1393 whale_0x8ebd 0x8527d16c... Ultra Sound
13808576 7 3296 1903 +1393 ether.fi 0x8db2a99d... BloXroute Max Profit
13811508 14 3411 2019 +1392 everstake 0xb26f9666... Titan Relay
13812477 7 3294 1903 +1391 revolut 0x88510a78... BloXroute Regulated
13811134 6 3273 1886 +1387 stakingfacilities_lido 0x853b0078... BloXroute Regulated
13811566 0 3173 1787 +1386 solo_stakers 0xa412c4b8... Flashbots
13806305 7 3289 1903 +1386 bitstamp 0x88a53ec4... BloXroute Max Profit
13811474 6 3270 1886 +1384 blockdaemon_lido 0x8527d16c... Ultra Sound
13811199 6 3269 1886 +1383 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
13807820 11 3351 1969 +1382 everstake 0xb26f9666... Aestus
13811190 5 3251 1870 +1381 kraken 0x8527d16c... EthGas
13806012 0 3168 1787 +1381 revolut 0x850b00e0... BloXroute Regulated
13811549 0 3168 1787 +1381 blockdaemon 0x8527d16c... Ultra Sound
13811607 7 3284 1903 +1381 stakingfacilities_lido 0x855b00e6... BloXroute Max Profit
13810053 0 3167 1787 +1380 blockdaemon_lido 0x852b0070... BloXroute Max Profit
13806333 0 3164 1787 +1377 everstake 0xb26f9666... Titan Relay
13809476 2 3196 1820 +1376 whale_0x8ebd 0xb4ce6162... Ultra Sound
13807246 5 3245 1870 +1375 everstake 0xb26f9666... Titan Relay
13810944 4 3227 1853 +1374 mantle 0xb26f9666... Aestus
13811642 5 3243 1870 +1373 bitstamp 0x856b0004... BloXroute Max Profit
13806123 1 3176 1804 +1372 blockdaemon_lido 0x856b0004... Ultra Sound
13811784 0 3159 1787 +1372 solo_stakers 0xb4ce6162... Ultra Sound
13806688 2 3192 1820 +1372 ether.fi 0x855b00e6... BloXroute Max Profit
13807446 6 3258 1886 +1372 blockdaemon 0x8db2a99d... BloXroute Max Profit
13807086 4 3224 1853 +1371 bitstamp 0x850b00e0... Flashbots
13812283 5 3239 1870 +1369 blockdaemon_lido 0x88a53ec4... BloXroute Regulated
13810101 12 3355 1986 +1369 blockdaemon 0x853b0078... Ultra Sound
13808145 7 3272 1903 +1369 everstake 0xb4ce6162... Ultra Sound
13809543 16 3420 2052 +1368 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
13811491 11 3337 1969 +1368 stader 0xb67eaa5e... BloXroute Regulated
13806225 1 3171 1804 +1367 stakingfacilities_lido 0x8527d16c... Ultra Sound
13808924 5 3237 1870 +1367 blockdaemon_lido 0x853b0078... BloXroute Regulated
13806763 5 3237 1870 +1367 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
13809466 5 3235 1870 +1365 ether.fi 0x850b00e0... Flashbots
13808359 6 3251 1886 +1365 blockdaemon_lido 0xb26f9666... Titan Relay
13807841 0 3149 1787 +1362 gateway.fmas_lido 0x8527d16c... Ultra Sound
13813087 1 3165 1804 +1361 blockdaemon_lido 0x88a53ec4... BloXroute Regulated
13809270 0 3148 1787 +1361 blockdaemon 0x852b0070... BloXroute Max Profit
13812822 0 3147 1787 +1360 blockdaemon 0x852b0070... BloXroute Max Profit
13811047 5 3229 1870 +1359 ether.fi 0x850b00e0... Flashbots
13807607 6 3245 1886 +1359 everstake 0x853b0078... Agnostic Gnosis
13810504 1 3162 1804 +1358 p2porg 0x91b123d8... BloXroute Regulated
13810999 0 3143 1787 +1356 kiln 0xa0366397... Flashbots
13811057 9 3291 1936 +1355 kiln 0xb26f9666... Titan Relay
13811129 6 3241 1886 +1355 everstake 0xb67eaa5e... BloXroute Max Profit
13806786 0 3141 1787 +1354 mantle 0x8527d16c... Ultra Sound
13808848 4 3206 1853 +1353 whale_0x0000 0x850b00e0... BloXroute Regulated
13812320 1 3156 1804 +1352 everstake 0xb26f9666... Aestus
13806065 0 3138 1787 +1351 everstake 0x856b0004... BloXroute Max Profit
13807096 6 3237 1886 +1351 whale_0x8ebd 0xb4ce6162... Ultra Sound
13811322 12 3336 1986 +1350 everstake 0x88a53ec4... BloXroute Regulated
13806874 0 3135 1787 +1348 bitstamp 0x8527d16c... Ultra Sound
13811118 11 3317 1969 +1348 kraken 0xb26f9666... EthGas
13811217 1 3151 1804 +1347 kraken 0xb26f9666... EthGas
13809153 1 3151 1804 +1347 blockdaemon 0x8db2a99d... BloXroute Max Profit
13806112 10 3300 1953 +1347 ether.fi 0x88a53ec4... BloXroute Max Profit
13808301 7 3250 1903 +1347 everstake 0x853b0078... Aestus
13812099 3 3183 1837 +1346 p2porg 0x850b00e0... BloXroute Regulated
13810949 3 3181 1837 +1344 p2porg 0x853b0078... BloXroute Regulated
13807217 0 3129 1787 +1342 whale_0x8ebd 0x853b0078... BloXroute Max Profit
13808670 6 3227 1886 +1341 revolut 0xb26f9666... Titan Relay
13811151 1 3144 1804 +1340 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13806251 11 3307 1969 +1338 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
13812683 6 3224 1886 +1338 whale_0x7c58 0xb26f9666... Titan Relay
13811068 6 3224 1886 +1338 kraken 0xb26f9666... EthGas
13807360 8 3256 1920 +1336 bridgetower_lido 0xb4ce6162... Ultra Sound
13808210 1 3138 1804 +1334 p2porg 0x855b00e6... Flashbots
13813139 5 3204 1870 +1334 everstake 0x856b0004... BloXroute Max Profit
13807726 5 3204 1870 +1334 bitstamp 0xb67eaa5e... BloXroute Max Profit
13806038 8 3251 1920 +1331 p2porg 0x850b00e0... BloXroute Regulated
13812083 0 3118 1787 +1331 bitstamp 0xba003e46... BloXroute Max Profit
13810256 1 3134 1804 +1330 0x850b00e0... BloXroute Max Profit
13806194 0 3117 1787 +1330 stakingfacilities_lido 0xba003e46... Flashbots
13811297 0 3116 1787 +1329 ether.fi 0x8db2a99d... Flashbots
13811399 5 3198 1870 +1328 ether.fi 0xb26f9666... EthGas
13808067 0 3113 1787 +1326 blockdaemon 0x88a53ec4... BloXroute Regulated
13810910 1 3128 1804 +1324 p2porg 0xb26f9666... Titan Relay
13811755 5 3193 1870 +1323 kelp 0xaf40d0ff... Agnostic Gnosis
13811034 0 3110 1787 +1323 everstake 0x88a53ec4... BloXroute Regulated
13810837 3 3159 1837 +1322 stakingfacilities_lido 0x850b00e0... BloXroute Max Profit
13811469 2 3142 1820 +1322 stakingfacilities_lido 0x88a53ec4... BloXroute Max Profit
13810042 11 3291 1969 +1322 blockdaemon_lido 0x8db2a99d... BloXroute Max Profit
13807220 1 3125 1804 +1321 kiln 0x88a53ec4... BloXroute Regulated
13812814 5 3191 1870 +1321 blockdaemon 0x853b0078... BloXroute Max Profit
13806811 6 3207 1886 +1321 mantle 0x850b00e0... BloXroute Max Profit
13806378 5 3190 1870 +1320 p2porg 0x88a53ec4... BloXroute Regulated
13811842 1 3123 1804 +1319 p2porg 0x850b00e0... BloXroute Regulated
13808079 7 3220 1903 +1317 everstake 0xb26f9666... Titan Relay
13812837 0 3103 1787 +1316 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
13807663 0 3103 1787 +1316 kiln 0xb67eaa5e... BloXroute Regulated
13808399 0 3102 1787 +1315 whale_0x8ebd 0x8527d16c... Ultra Sound
13807326 5 3184 1870 +1314 blockdaemon 0xac23f8cc... BloXroute Max Profit
13809146 0 3100 1787 +1313 p2porg 0x823e0146... Flashbots
13807471 9 3248 1936 +1312 figment 0x88857150... Ultra Sound
13809670 1 3115 1804 +1311 p2porg 0x850b00e0... BloXroute Max Profit
13806620 5 3181 1870 +1311 p2porg 0xb26f9666... BloXroute Max Profit
13811341 3 3147 1837 +1310 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13812662 5 3180 1870 +1310 p2porg 0x850b00e0... BloXroute Max Profit
13806593 5 3180 1870 +1310 solo_stakers 0x857b0038... Ultra Sound
13812163 1 3112 1804 +1308 everstake 0x88857150... Ultra Sound
13808770 5 3178 1870 +1308 bitstamp 0x8527d16c... Ultra Sound
13806810 3 3144 1837 +1307 p2porg 0x8db2a99d... Agnostic Gnosis
13806282 7 3210 1903 +1307 kraken 0xb67eaa5e... EthGas
13806865 4 3156 1853 +1303 p2porg 0x853b0078... Titan Relay
13812529 5 3172 1870 +1302 kiln 0x88a53ec4... BloXroute Regulated
13808920 3 3137 1837 +1300 kiln 0xb26f9666... BloXroute Regulated
13806144 0 3087 1787 +1300 p2porg 0xb26f9666... BloXroute Max Profit
13812055 0 3087 1787 +1300 0x8527d16c... EthGas
13808298 10 3251 1953 +1298 whale_0x23be 0x850b00e0... BloXroute Max Profit
13808563 1 3101 1804 +1297 kiln 0xb67eaa5e... BloXroute Regulated
13806681 14 3315 2019 +1296 bitstamp 0x850b00e0... BloXroute Max Profit
13811991 2 3115 1820 +1295 coinbase 0xac23f8cc... Ultra Sound
13812272 5 3163 1870 +1293 whale_0x8ebd 0x8527d16c... Ultra Sound
13807421 0 3080 1787 +1293 p2porg 0x853b0078... Agnostic Gnosis
13806074 0 3080 1787 +1293 p2porg 0xb26f9666... Titan Relay
13809278 10 3245 1953 +1292 everstake 0x853b0078... Aestus
13806657 5 3161 1870 +1291 0x88857150... EthGas
13811069 1 3094 1804 +1290 gateway.fmas_lido 0x88a53ec4... BloXroute Regulated
13811719 8 3210 1920 +1290 kraken 0xb26f9666... EthGas
13807964 0 3076 1787 +1289 p2porg 0x91b123d8... BloXroute Regulated
13808695 0 3076 1787 +1289 blockdaemon_lido 0x8527d16c... Ultra Sound
13810314 16 3341 2052 +1289 everstake 0xb26f9666... Titan Relay
13811628 8 3208 1920 +1288 everstake 0xb26f9666... Aestus
13808064 0 3075 1787 +1288 ether.fi 0x88a53ec4... BloXroute Max Profit
13807673 0 3074 1787 +1287 whale_0x3212 Local Local
13811499 5 3156 1870 +1286 whale_0x6940 0x8a850621... Titan Relay
13806427 6 3172 1886 +1286 ether.fi 0x853b0078... Agnostic Gnosis
13808249 6 3172 1886 +1286 stakingfacilities_lido 0x8527d16c... Ultra Sound
13807676 1 3088 1804 +1284 p2porg 0x850b00e0... BloXroute Max Profit
13811498 6 3169 1886 +1283 mantle 0x8527d16c... Ultra Sound
13810046 1 3086 1804 +1282 kelp 0x88a53ec4... BloXroute Max Profit
13811089 1 3085 1804 +1281 kelp 0x8db2a99d... Ultra Sound
13811979 0 3067 1787 +1280 whale_0xdd6c 0x852b0070... Ultra Sound
13811810 0 3067 1787 +1280 kraken 0xb26f9666... Titan Relay
13806211 0 3067 1787 +1280 p2porg 0x8527d16c... Ultra Sound
Total anomalies: 338

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