Tue, Mar 24, 2026

Propagation anomalies - 2026-03-24

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-24' AND slot_start_date_time < '2026-03-24'::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-24' AND slot_start_date_time < '2026-03-24'::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-24' AND slot_start_date_time < '2026-03-24'::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-24' AND slot_start_date_time < '2026-03-24'::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-24' AND slot_start_date_time < '2026-03-24'::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-24' AND slot_start_date_time < '2026-03-24'::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-24' AND slot_start_date_time < '2026-03-24'::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-24' AND slot_start_date_time < '2026-03-24'::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,187
MEV blocks: 6,631 (92.3%)
Local blocks: 556 (7.7%)

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 = 1805.6 + 18.41 × blob_count (R² = 0.012)
Residual σ = 615.8ms
Anomalies (>2σ slow): 348 (4.8%)
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
13962912 0 6790 1806 +4984 upbit Local Local
13960832 8 6167 1953 +4214 upbit Local Local
13959680 0 5582 1806 +3776 rocketpool Local Local
13962016 1 5555 1824 +3731 upbit Local Local
13963616 0 5140 1806 +3334 upbit Local Local
13964384 0 5099 1806 +3293 upbit Local Local
13963617 0 4078 1806 +2272 ether.fi Local Local
13957926 0 3805 1806 +1999 blockdaemon 0xb4ce6162... Ultra Sound
13961624 2 3839 1842 +1997 luno 0xb26f9666... Titan Relay
13958249 1 3820 1824 +1996 stader 0xb26f9666... Titan Relay
13957297 2 3809 1842 +1967 0xb26f9666... Titan Relay
13960096 0 3753 1806 +1947 blockdaemon_lido Local Local
13961888 0 3704 1806 +1898 stakefish 0xa9bd259c... Ultra Sound
13961233 6 3812 1916 +1896 blockdaemon_lido 0xb67eaa5e... Titan Relay
13961171 0 3693 1806 +1887 ether.fi 0x82c466b9... EthGas
13957363 1 3711 1824 +1887 blockdaemon_lido 0xb26f9666... Titan Relay
13963199 1 3692 1824 +1868 ether.fi 0x88510a78... Ultra Sound
13959158 1 3690 1824 +1866 binance 0x823e0146... Ultra Sound
13958869 0 3654 1806 +1848 whale_0x8ebd 0x88a53ec4... Aestus
13961197 3 3707 1861 +1846 nethermind_lido 0xac23f8cc... Flashbots
13962107 0 3628 1806 +1822 ether.fi 0x853b0078... BloXroute Regulated
13957479 2 3643 1842 +1801 everstake 0x8527d16c... Ultra Sound
13957472 1 3624 1824 +1800 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13962599 5 3687 1898 +1789 blockdaemon_lido 0xb67eaa5e... Titan Relay
13957690 0 3589 1806 +1783 everstake 0xb4ce6162... Ultra Sound
13962233 7 3709 1934 +1775 blockdaemon_lido 0x88857150... Ultra Sound
13961271 13 3818 2045 +1773 p2porg 0xb26f9666... Titan Relay
13962203 0 3578 1806 +1772 ether.fi 0xb67eaa5e... BloXroute Max Profit
13957376 3 3633 1861 +1772 everstake 0x8527d16c... Ultra Sound
13957508 0 3572 1806 +1766 revolut 0xb26f9666... Titan Relay
13961283 0 3569 1806 +1763 blockdaemon_lido 0xb26f9666... Titan Relay
13958342 1 3582 1824 +1758 blockdaemon 0xb26f9666... Titan Relay
13962484 6 3669 1916 +1753 blockdaemon 0xb26f9666... Titan Relay
13958325 10 3738 1990 +1748 blockdaemon 0x88857150... Ultra Sound
13961078 1 3570 1824 +1746 everstake 0xb26f9666... Titan Relay
13962631 1 3570 1824 +1746 everstake 0x8527d16c... Ultra Sound
13957632 0 3551 1806 +1745 gateway.fmas_lido 0x8527d16c... Ultra Sound
13957993 2 3566 1842 +1724 kiln 0xb26f9666... Titan Relay
13961373 4 3602 1879 +1723 stader 0xb26f9666... BloXroute Max Profit
13962751 8 3670 1953 +1717 coinbase 0xb67eaa5e... Aestus
13962434 0 3518 1806 +1712 ether.fi 0x82c466b9... EthGas
13962058 3 3572 1861 +1711 solo_stakers 0xac23f8cc... Ultra Sound
13961889 0 3511 1806 +1705 whale_0x9212 Local Local
13962095 4 3584 1879 +1705 whale_0x8ebd 0xb26f9666... Titan Relay
13961330 0 3505 1806 +1699 everstake 0xb4ce6162... Ultra Sound
13960852 0 3497 1806 +1691 0x8db2a99d... Aestus
13961710 6 3605 1916 +1689 blockdaemon 0x8527d16c... Ultra Sound
13960896 5 3584 1898 +1686 blockdaemon_lido 0x8527d16c... Ultra Sound
13957346 1 3509 1824 +1685 everstake 0xb26f9666... Titan Relay
13958112 0 3483 1806 +1677 revolut 0x855b00e6... Ultra Sound
13961344 0 3480 1806 +1674 revolut 0x88857150... Ultra Sound
13962239 0 3476 1806 +1670 everstake 0x853b0078... BloXroute Max Profit
13962057 6 3582 1916 +1666 p2porg 0x853b0078... Titan Relay
13961803 5 3561 1898 +1663 blockdaemon 0xb67eaa5e... BloXroute Max Profit
13962584 10 3652 1990 +1662 blockdaemon_lido 0xb26f9666... Titan Relay
13962953 5 3553 1898 +1655 whale_0x8ebd 0xb26f9666... Titan Relay
13958906 6 3557 1916 +1641 nethermind_lido 0x855b00e6... Flashbots
13963505 6 3552 1916 +1636 blockdaemon 0xb26f9666... Titan Relay
13961902 0 3432 1806 +1626 everstake 0x8a850621... Titan Relay
13960503 3 3486 1861 +1625 figment 0x93b11bec... Flashbots
13962213 0 3430 1806 +1624 everstake 0xb26f9666... Titan Relay
13963164 1 3446 1824 +1622 everstake 0xb26f9666... Titan Relay
13962850 10 3598 1990 +1608 everstake 0xb4ce6162... Ultra Sound
13960982 1 3430 1824 +1606 blockdaemon_lido 0x82c466b9... Ultra Sound
13957842 1 3427 1824 +1603 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13962903 0 3404 1806 +1598 everstake 0xb26f9666... Titan Relay
13962676 0 3398 1806 +1592 everstake 0xb26f9666... Titan Relay
13958873 5 3486 1898 +1588 blockdaemon 0x82c466b9... Ultra Sound
13960860 0 3391 1806 +1585 blockdaemon 0x8db2a99d... Ultra Sound
13962098 1 3407 1824 +1583 everstake 0xb26f9666... Titan Relay
13962222 1 3405 1824 +1581 ether.fi 0x82c466b9... EthGas
13961884 1 3401 1824 +1577 0x88a53ec4... Aestus
13963425 0 3379 1806 +1573 everstake 0xb26f9666... Titan Relay
13963968 5 3470 1898 +1572 stakingfacilities_lido 0x88a53ec4... BloXroute Regulated
13962704 5 3466 1898 +1568 nethermind_lido 0x8db2a99d... Agnostic Gnosis
13957959 0 3373 1806 +1567 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13959014 7 3496 1934 +1562 blockdaemon_lido 0x855b00e6... BloXroute Max Profit
13960046 0 3367 1806 +1561 blockdaemon_lido 0xb26f9666... Titan Relay
13957614 5 3459 1898 +1561 blockdaemon_lido 0xb4ce6162... Ultra Sound
13957588 10 3551 1990 +1561 whale_0x8ebd 0xac23f8cc... Ultra Sound
13961059 8 3509 1953 +1556 ether.fi 0xb7c5e609... BloXroute Max Profit
13959808 10 3543 1990 +1553 p2porg 0x850b00e0... BloXroute Max Profit
13957523 0 3358 1806 +1552 everstake 0xb26f9666... Titan Relay
13962011 2 3392 1842 +1550 blockdaemon_lido 0x823e0146... Ultra Sound
13957344 5 3447 1898 +1549 stakingfacilities_lido 0xb67eaa5e... BloXroute Max Profit
13961463 20 3722 2174 +1548 revolut 0xb26f9666... Titan Relay
13962891 14 3607 2063 +1544 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
13964070 0 3344 1806 +1538 nethermind_lido 0xb26f9666... Aestus
13957687 5 3433 1898 +1535 everstake 0xb26f9666... Titan Relay
13962376 0 3338 1806 +1532 blockdaemon 0xb26f9666... Titan Relay
13958662 7 3466 1934 +1532 blockdaemon 0x8a850621... Titan Relay
13962343 6 3444 1916 +1528 blockdaemon 0x857b0038... Ultra Sound
13961278 2 3369 1842 +1527 stakefish 0x850b00e0... Ultra Sound
13957811 5 3424 1898 +1526 blockdaemon 0x88a53ec4... BloXroute Regulated
13963882 5 3419 1898 +1521 blockdaemon 0xb67eaa5e... BloXroute Max Profit
13959935 4 3400 1879 +1521 blockdaemon 0x8527d16c... Ultra Sound
13962758 0 3326 1806 +1520 kiln 0xb26f9666... Titan Relay
13963847 3 3381 1861 +1520 solo_stakers 0x88a53ec4... Aestus
13961796 5 3415 1898 +1517 p2porg 0xb67eaa5e... Aestus
13963149 1 3336 1824 +1512 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13957332 5 3409 1898 +1511 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13957318 1 3335 1824 +1511 whale_0xdc8d 0xb26f9666... Titan Relay
13957278 11 3519 2008 +1511 p2porg 0xb67eaa5e... Aestus
13961856 0 3314 1806 +1508 coinbase Local Local
13958818 3 3369 1861 +1508 blockdaemon 0xb67eaa5e... BloXroute Max Profit
13958215 1 3329 1824 +1505 whale_0xdc8d 0x85fb0503... BloXroute Regulated
13963301 0 3302 1806 +1496 0xb67eaa5e... BloXroute Regulated
13962232 6 3407 1916 +1491 ether.fi 0x85fb0503... BloXroute Max Profit
13963116 3 3350 1861 +1489 luno 0x850b00e0... BloXroute Regulated
13957265 1 3313 1824 +1489 whale_0x8ebd 0x823e0146... Flashbots
13961130 7 3421 1934 +1487 blockdaemon_lido 0x850b00e0... BloXroute Regulated
13961513 5 3383 1898 +1485 0xb26f9666... Aestus
13959113 1 3309 1824 +1485 blockdaemon 0xb26f9666... Titan Relay
13959344 3 3342 1861 +1481 blockdaemon_lido 0x853b0078... BloXroute Regulated
13958399 0 3286 1806 +1480 0x85fb0503... BloXroute Regulated
13961231 1 3303 1824 +1479 nethermind_lido 0x88a53ec4... BloXroute Max Profit
13960448 1 3301 1824 +1477 0x853b0078... Agnostic Gnosis
13957900 1 3298 1824 +1474 bitstamp 0x88a53ec4... BloXroute Regulated
13963355 16 3572 2100 +1472 figment 0xb26f9666... Titan Relay
13962200 13 3516 2045 +1471 coinbase 0xb26f9666... Titan Relay
13959529 1 3294 1824 +1470 coinbase 0x8db2a99d... Aestus
13962871 0 3273 1806 +1467 blockdaemon 0x851b00b1... BloXroute Max Profit
13957205 1 3291 1824 +1467 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13961728 0 3272 1806 +1466 p2porg 0xb26f9666... Aestus
13962147 15 3547 2082 +1465 kraken 0xb26f9666... Titan Relay
13959989 3 3326 1861 +1465 whale_0x8ebd 0x8db2a99d... Ultra Sound
13960051 4 3337 1879 +1458 everstake 0xb26f9666... Titan Relay
13962651 5 3355 1898 +1457 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13963688 3 3317 1861 +1456 blockdaemon 0xb67eaa5e... BloXroute Max Profit
13962154 3 3315 1861 +1454 kiln 0x8527d16c... Ultra Sound
13959738 3 3313 1861 +1452 blockdaemon 0xb26f9666... Titan Relay
13960708 0 3255 1806 +1449 whale_0xdc8d 0xb67eaa5e... BloXroute Regulated
13961966 10 3439 1990 +1449 revolut 0x853b0078... BloXroute Regulated
13962397 0 3253 1806 +1447 p2porg 0x88857150... Ultra Sound
13959473 6 3362 1916 +1446 blockdaemon 0x850b00e0... BloXroute Regulated
13957689 0 3251 1806 +1445 coinbase 0x83d6a6ab... BloXroute Max Profit
13958785 0 3247 1806 +1441 stader 0x8527d16c... Ultra Sound
13963607 0 3247 1806 +1441 whale_0x8ebd 0x8db2a99d... Flashbots
13958529 0 3246 1806 +1440 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13963429 0 3246 1806 +1440 blockdaemon 0x88a53ec4... BloXroute Max Profit
13957963 1 3260 1824 +1436 blockdaemon 0x8527d16c... Ultra Sound
13959646 2 3278 1842 +1436 p2porg 0x850b00e0... BloXroute Regulated
13958965 0 3240 1806 +1434 blockdaemon 0x8db2a99d... BloXroute Max Profit
13962330 10 3422 1990 +1432 blockdaemon_lido 0x88a53ec4... BloXroute Regulated
13958677 1 3256 1824 +1432 p2porg 0xb4ce6162... Ultra Sound
13961581 0 3237 1806 +1431 whale_0x8ebd 0x856b0004... BloXroute Max Profit
13960634 0 3234 1806 +1428 blockdaemon_lido 0xb67eaa5e... Titan Relay
13958443 6 3342 1916 +1426 solo_stakers 0x8db2a99d... Aestus
13957931 3 3285 1861 +1424 blockdaemon 0x8527d16c... Ultra Sound
13958213 5 3321 1898 +1423 coinbase 0xb67eaa5e... BloXroute Regulated
13957261 1 3246 1824 +1422 kiln 0xb4ce6162... Ultra Sound
13962024 6 3335 1916 +1419 ether.fi Local Local
13960992 0 3223 1806 +1417 p2porg 0xb26f9666... Titan Relay
13961682 5 3315 1898 +1417 whale_0x8ebd 0xb4ce6162... Ultra Sound
13963054 10 3406 1990 +1416 whale_0x8ebd 0x8527d16c... Ultra Sound
13964225 5 3310 1898 +1412 whale_0xdc8d 0xb26f9666... Titan Relay
13958157 6 3328 1916 +1412 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13958704 1 3234 1824 +1410 blockdaemon 0x8527d16c... Ultra Sound
13959199 5 3306 1898 +1408 blockdaemon 0x8a850621... Titan Relay
13961070 1 3232 1824 +1408 coinbase 0xac23f8cc... BloXroute Max Profit
13961432 8 3358 1953 +1405 gateway.fmas_lido 0x8527d16c... Ultra Sound
13961775 1 3228 1824 +1404 blockdaemon_lido 0x853b0078... BloXroute Regulated
13959054 0 3209 1806 +1403 blockdaemon_lido 0x823e0146... BloXroute Regulated
13960781 0 3206 1806 +1400 blockdaemon_lido 0xb67eaa5e... Titan Relay
13963650 8 3353 1953 +1400 whale_0x8ebd 0x88857150... Ultra Sound
13957309 0 3205 1806 +1399 coinbase 0x8527d16c... Ultra Sound
13962646 1 3222 1824 +1398 blockdaemon_lido 0xb26f9666... Titan Relay
13962162 1 3221 1824 +1397 bitstamp 0x88a53ec4... BloXroute Regulated
13960938 5 3294 1898 +1396 blockdaemon 0x88857150... Ultra Sound
13958110 6 3310 1916 +1394 bitstamp 0x823e0146... BloXroute Max Profit
13959703 5 3291 1898 +1393 luno 0xb26f9666... Titan Relay
13961478 0 3197 1806 +1391 blockdaemon_lido 0xb26f9666... Titan Relay
13962215 0 3196 1806 +1390 whale_0xdc8d 0xb26f9666... Titan Relay
13962910 9 3361 1971 +1390 blockdaemon 0xac23f8cc... BloXroute Regulated
13961207 0 3195 1806 +1389 whale_0x8ebd 0x8a850621... Titan Relay
13963150 0 3193 1806 +1387 gateway.fmas_lido 0x851b00b1... BloXroute Max Profit
13961677 8 3339 1953 +1386 coinbase 0x8c852572... Aestus
13963592 5 3279 1898 +1381 everstake 0xb26f9666... Titan Relay
13959283 0 3186 1806 +1380 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
13957765 5 3278 1898 +1380 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13962070 14 3441 2063 +1378 stakingfacilities_lido 0x8db2a99d... Agnostic Gnosis
13958458 1 3199 1824 +1375 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
13957211 0 3180 1806 +1374 stakingfacilities_lido 0x8527d16c... Ultra Sound
13961859 3 3232 1861 +1371 ether.fi 0xb7c5beef... EthGas
13963298 3 3231 1861 +1370 coinbase 0xb4ce6162... Ultra Sound
13961590 1 3193 1824 +1369 nethermind_lido 0x88857150... Ultra Sound
13957906 0 3170 1806 +1364 renzo_protocol 0xb67eaa5e... Aestus
13963988 0 3170 1806 +1364 blockdaemon 0x8527d16c... Ultra Sound
13957275 1 3187 1824 +1363 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13964205 9 3334 1971 +1363 luno 0xb26f9666... Titan Relay
13962806 6 3276 1916 +1360 coinbase 0xb67eaa5e... BloXroute Max Profit
13961639 5 3257 1898 +1359 ether.fi 0xb7c5beef... EthGas
13958161 7 3293 1934 +1359 whale_0x8ebd 0x8527d16c... Ultra Sound
13958959 0 3163 1806 +1357 blockdaemon 0xb26f9666... Titan Relay
13959536 2 3199 1842 +1357 blockdaemon_lido 0x856b0004... BloXroute Max Profit
13961680 8 3309 1953 +1356 ether.fi 0xb7c5beef... EthGas
13963521 6 3272 1916 +1356 whale_0x8ebd 0x853b0078... Agnostic Gnosis
13958012 7 3290 1934 +1356 coinbase 0x8527d16c... Ultra Sound
13957621 5 3252 1898 +1354 gateway.fmas_lido 0x856b0004... BloXroute Max Profit
13961860 7 3288 1934 +1354 0x82c466b9... EthGas
13962961 0 3158 1806 +1352 coinbase 0x851b00b1... BloXroute Max Profit
13959032 6 3268 1916 +1352 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13957286 1 3175 1824 +1351 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
13958300 5 3247 1898 +1349 coinbase 0xb67eaa5e... BloXroute Regulated
13959085 4 3228 1879 +1349 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13959057 1 3172 1824 +1348 nethermind_lido 0x853b0078... BloXroute Regulated
13961353 4 3227 1879 +1348 nethermind_lido 0x853b0078... BloXroute Max Profit
13960533 5 3245 1898 +1347 stakingfacilities_lido 0x856b0004... Ultra Sound
13959221 1 3170 1824 +1346 p2porg 0xb26f9666... BloXroute Max Profit
13963072 6 3261 1916 +1345 everstake_lido 0x8527d16c... Ultra Sound
13963412 10 3334 1990 +1344 coinbase 0x853b0078... Ultra Sound
13963215 1 3164 1824 +1340 bitstamp 0x88a53ec4... BloXroute Max Profit
13961523 8 3292 1953 +1339 whale_0x8ebd 0x823e0146... Flashbots
13958848 0 3143 1806 +1337 stakefish 0x856b0004... Ultra Sound
13957575 5 3235 1898 +1337 stakingfacilities_lido 0x850b00e0... BloXroute Max Profit
13964224 0 3142 1806 +1336 solo_stakers 0x8db2a99d... Aestus
13962707 0 3141 1806 +1335 whale_0x9bf6 0x88a53ec4... Aestus
13960471 5 3232 1898 +1334 figment 0x8527d16c... Ultra Sound
13961854 5 3230 1898 +1332 blockdaemon_lido 0x856b0004... BloXroute Max Profit
13958095 6 3247 1916 +1331 stakingfacilities_lido 0x8db2a99d... BloXroute Max Profit
13961829 6 3244 1916 +1328 nethermind_lido 0x853b0078... BloXroute Regulated
13958283 2 3170 1842 +1328 nethermind_lido 0x853b0078... BloXroute Max Profit
13960098 5 3225 1898 +1327 stakingfacilities_lido 0x856b0004... Aestus
13964047 0 3132 1806 +1326 gateway.fmas_lido 0x8527d16c... Ultra Sound
13958227 1 3149 1824 +1325 coinbase 0x856b0004... Aestus
13961281 2 3164 1842 +1322 whale_0x8ebd 0x853b0078... BloXroute Max Profit
13957958 6 3237 1916 +1321 blockdaemon_lido 0xac23f8cc... BloXroute Max Profit
13958275 0 3126 1806 +1320 p2porg 0x8527d16c... Ultra Sound
13961055 0 3125 1806 +1319 kiln 0x8a850621... Titan Relay
13961762 1 3143 1824 +1319 stakingfacilities_lido 0x855b00e6... BloXroute Max Profit
13960837 0 3124 1806 +1318 blockdaemon 0x88857150... Ultra Sound
13958332 5 3216 1898 +1318 stakingfacilities_lido 0xb4ce6162... Ultra Sound
13958119 5 3215 1898 +1317 gateway.fmas_lido 0x88857150... Ultra Sound
13963297 8 3270 1953 +1317 stakingfacilities_lido 0x853b0078... BloXroute Max Profit
13963464 0 3122 1806 +1316 gateway.fmas_lido 0x8527d16c... Ultra Sound
13963462 8 3267 1953 +1314 kiln 0x855b00e6... BloXroute Max Profit
13959066 3 3174 1861 +1313 nethermind_lido 0xb67eaa5e... BloXroute Regulated
13962206 1 3136 1824 +1312 whale_0x8ebd 0x853b0078... Agnostic Gnosis
13960650 0 3117 1806 +1311 whale_0x8ebd 0xb26f9666... Titan Relay
13962123 13 3356 2045 +1311 everstake 0xb26f9666... Titan Relay
13963046 1 3134 1824 +1310 everstake 0x856b0004... BloXroute Max Profit
13957221 1 3134 1824 +1310 coinbase Local Local
13958256 2 3150 1842 +1308 0xb26f9666... BloXroute Regulated
13962238 5 3205 1898 +1307 everstake 0x855b00e6... BloXroute Max Profit
13963303 0 3111 1806 +1305 p2porg 0xb67eaa5e... BloXroute Max Profit
13963523 0 3111 1806 +1305 coinbase 0x85fb0503... BloXroute Max Profit
13962653 5 3203 1898 +1305 whale_0x8ebd 0x853b0078... Agnostic Gnosis
13962456 0 3110 1806 +1304 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
13961779 7 3238 1934 +1304 gateway.fmas_lido 0x8db2a99d... Agnostic Gnosis
13958749 4 3180 1879 +1301 p2porg 0x850b00e0... Flashbots
13957832 8 3252 1953 +1299 figment 0x8db2a99d... Ultra Sound
13963131 1 3123 1824 +1299 coinbase 0x856b0004... BloXroute Max Profit
13960354 6 3214 1916 +1298 gateway.fmas_lido 0x8db2a99d... Ultra Sound
13962865 1 3120 1824 +1296 everstake 0xb67eaa5e... BloXroute Max Profit
13959698 1 3120 1824 +1296 blockdaemon 0x853b0078... BloXroute Max Profit
13961974 3 3156 1861 +1295 everstake 0x856b0004... BloXroute Max Profit
13959345 1 3119 1824 +1295 p2porg 0xb26f9666... Titan Relay
13958036 1 3118 1824 +1294 abyss_finance 0x853b0078... Agnostic Gnosis
13958736 2 3135 1842 +1293 0x855b00e6... Flashbots
13960985 0 3097 1806 +1291 p2porg 0x853b0078... BloXroute Max Profit
13958658 5 3189 1898 +1291 everstake 0x8db2a99d... Aestus
13961616 5 3188 1898 +1290 ether.fi 0xb7c5beef... EthGas
13963544 5 3188 1898 +1290 nethermind_lido 0x88857150... Ultra Sound
13963823 4 3168 1879 +1289 p2porg 0x88a53ec4... BloXroute Max Profit
13960048 0 3094 1806 +1288 p2porg 0x850b00e0... BloXroute Regulated
13957961 20 3462 2174 +1288 blockdaemon 0x8c852572... BloXroute Regulated
13961254 1 3112 1824 +1288 solo_stakers 0x85fb0503... BloXroute Max Profit
13957409 5 3185 1898 +1287 everstake 0x88a53ec4... BloXroute Regulated
13959016 3 3147 1861 +1286 blockdaemon 0x8527d16c... Ultra Sound
13958040 2 3128 1842 +1286 everstake 0x853b0078... Agnostic Gnosis
13958969 1 3108 1824 +1284 kiln 0x823e0146... Aestus
13961464 1 3107 1824 +1283 0x853b0078... Ultra Sound
13957539 2 3125 1842 +1283 0xb67eaa5e... Aestus
13957528 6 3198 1916 +1282 everstake 0x856b0004... Agnostic Gnosis
13962863 0 3087 1806 +1281 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
13960479 0 3087 1806 +1281 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13962463 1 3105 1824 +1281 figment 0xb26f9666... BloXroute Max Profit
13960447 0 3086 1806 +1280 coinbase 0xb26f9666... Titan Relay
13962247 11 3287 2008 +1279 p2porg 0x853b0078... BloXroute Max Profit
13957487 12 3304 2027 +1277 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13961274 0 3081 1806 +1275 everstake 0x853b0078... BloXroute Max Profit
13962161 1 3099 1824 +1275 stakingfacilities_lido 0x88a53ec4... BloXroute Max Profit
13962967 11 3282 2008 +1274 gateway.fmas_lido 0x855b00e6... BloXroute Max Profit
13958927 5 3170 1898 +1272 p2porg 0x850b00e0... BloXroute Max Profit
13963406 3 3132 1861 +1271 kiln Local Local
13959211 3 3132 1861 +1271 p2porg 0x850b00e0... BloXroute Regulated
13957844 8 3224 1953 +1271 solo_stakers 0xb26f9666... Aestus
13957491 1 3095 1824 +1271 everstake 0x853b0078... Agnostic Gnosis
13960309 1 3095 1824 +1271 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13959293 0 3076 1806 +1270 coinbase 0xac23f8cc... BloXroute Max Profit
13963165 6 3183 1916 +1267 coinbase 0x8a850621... Titan Relay
13961272 3 3127 1861 +1266 everstake 0x856b0004... BloXroute Max Profit
13959915 2 3108 1842 +1266 whale_0x8ebd 0x857b0038... Ultra Sound
13960823 5 3163 1898 +1265 whale_0x8ebd 0xb4ce6162... Ultra Sound
13962927 10 3254 1990 +1264 p2porg 0x853b0078... Ultra Sound
13957317 2 3104 1842 +1262 coinbase 0xb26f9666... BloXroute Max Profit
13960330 0 3067 1806 +1261 p2porg 0x88a53ec4... BloXroute Max Profit
13958184 5 3159 1898 +1261 everstake 0x853b0078... Agnostic Gnosis
13960735 2 3102 1842 +1260 p2porg 0x88857150... Ultra Sound
13961852 0 3065 1806 +1259 everstake 0xb4ce6162... Ultra Sound
13957237 5 3157 1898 +1259 solo_stakers 0xb26f9666... Ultra Sound
13958463 15 3341 2082 +1259 p2porg 0x8db2a99d... Ultra Sound
13962062 0 3064 1806 +1258 coinbase 0x8a850621... Titan Relay
13957231 3 3118 1861 +1257 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13960527 1 3081 1824 +1257 bitstamp 0x88a53ec4... BloXroute Max Profit
13961088 0 3062 1806 +1256 ether.fi 0xb26f9666... Titan Relay
13957404 8 3209 1953 +1256 gateway.fmas_lido 0x8c852572... Agnostic Gnosis
13957767 7 3190 1934 +1256 p2porg 0x856b0004... Aestus
13961293 8 3208 1953 +1255 0x8db2a99d... BloXroute Max Profit
13964259 1 3079 1824 +1255 p2porg 0x853b0078... BloXroute Max Profit
13962761 6 3171 1916 +1255 everstake 0xb26f9666... Aestus
13957897 0 3060 1806 +1254 blockdaemon_lido 0x88857150... Ultra Sound
13958860 1 3078 1824 +1254 p2porg 0xb26f9666... BloXroute Max Profit
13958541 1 3078 1824 +1254 coinbase 0x88a53ec4... BloXroute Max Profit
13962620 0 3059 1806 +1253 p2porg 0x853b0078... Aestus
13963112 5 3151 1898 +1253 whale_0x8e76 0x850b00e0... BloXroute Regulated
13962064 1 3076 1824 +1252 coinbase 0x823e0146... Flashbots
13963067 6 3168 1916 +1252 stakingfacilities_lido 0x8527d16c... Ultra Sound
13962476 5 3149 1898 +1251 kiln 0xb26f9666... Aestus
13960682 0 3055 1806 +1249 whale_0x8ebd 0x8527d16c... Ultra Sound
13963202 0 3055 1806 +1249 p2porg 0x855b00e6... BloXroute Max Profit
13960530 0 3053 1806 +1247 whale_0x8ebd 0xb26f9666... Titan Relay
13959426 10 3237 1990 +1247 stader 0x8527d16c... Ultra Sound
13960958 9 3217 1971 +1246 p2porg 0xb67eaa5e... BloXroute Regulated
13958920 2 3088 1842 +1246 blockdaemon_lido 0xb26f9666... Titan Relay
13961638 12 3272 2027 +1245 stakingfacilities_lido 0x850b00e0... BloXroute Max Profit
13958481 0 3050 1806 +1244 whale_0x8ebd 0xb4ce6162... Ultra Sound
13961914 1 3068 1824 +1244 p2porg 0x856b0004... Agnostic Gnosis
13962569 3 3104 1861 +1243 bitstamp 0x88857150... Ultra Sound
13962586 1 3067 1824 +1243 p2porg 0x8527d16c... Ultra Sound
13957432 6 3159 1916 +1243 everstake 0x856b0004... BloXroute Max Profit
13957266 12 3269 2027 +1242 whale_0xedc6 0xb67eaa5e... Aestus
13958437 0 3048 1806 +1242 whale_0x8ebd 0x823e0146... Ultra Sound
13962909 0 3046 1806 +1240 0x83d6a6ab... BloXroute Max Profit
13962896 6 3156 1916 +1240 solo_stakers 0x856b0004... BloXroute Max Profit
13961454 0 3045 1806 +1239 p2porg 0xb26f9666... BloXroute Max Profit
13960492 1 3063 1824 +1239 whale_0x8ebd 0x823e0146... Aestus
13959533 0 3044 1806 +1238 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13964102 0 3043 1806 +1237 whale_0xedc6 0x8527d16c... Ultra Sound
13963205 4 3116 1879 +1237 everstake 0x85fb0503... BloXroute Max Profit
13963777 2 3079 1842 +1237 coinbase 0xb26f9666... Titan Relay
13963500 0 3041 1806 +1235 whale_0x23be 0x856b0004... Ultra Sound
13960319 3 3096 1861 +1235 0x823e0146... Flashbots
13961132 0 3040 1806 +1234 everstake 0x853b0078... BloXroute Max Profit
13963268 0 3039 1806 +1233 p2porg 0x853b0078... Agnostic Gnosis
13958599 1 3057 1824 +1233 gateway.fmas_lido 0x88857150... Ultra Sound
13962841 1 3057 1824 +1233 everstake 0x88a53ec4... BloXroute Max Profit
13959691 0 3038 1806 +1232 coinbase 0xb67eaa5e... BloXroute Max Profit
Total anomalies: 348

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