Tue, Feb 10, 2026

Propagation anomalies - 2026-02-10

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

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

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

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

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

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

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

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

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

-- Column arrival timing: first arrival per column, then min/max of those
column_gossip AS (
    SELECT
        slot,
        min(first_seen) AS first_column_first_seen,
        max(first_seen) AS last_column_first_seen
    FROM (
        SELECT
            slot,
            column_index,
            min(event_date_time) AS first_seen
        FROM libp2p_gossipsub_data_column_sidecar
        WHERE meta_network_name = 'mainnet'
          AND slot_start_date_time >= '2026-02-10' AND slot_start_date_time < '2026-02-10'::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,167
MEV blocks: 6,688 (93.3%)
Local blocks: 479 (6.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 = 1770.5 + 22.16 × blob_count (R² = 0.019)
Residual σ = 651.0ms
Anomalies (>2σ slow): 212 (3.0%)
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
13658313 5 8056 1881 +6175 whale_0x3212 Local Local
13655296 0 7051 1771 +5280 Local Local
13661024 0 6508 1771 +4737 abyss_finance Local Local
13656833 0 6440 1771 +4669 dappnode Local Local
13661440 0 4802 1771 +3031 Local Local
13656256 0 4707 1771 +2936 stakefish Local Local
13659929 0 4704 1771 +2933 solo_stakers Local Local
13657280 0 4212 1771 +2441 csm_operator259_lido Local Local
13658150 6 4229 1904 +2325 0xb67eaa5e... Titan Relay
13659466 0 3826 1771 +2055 ether.fi Local Local
13660893 2 3756 1815 +1941 abyss_finance 0x82c466b9... Flashbots
13661959 9 3839 1970 +1869 ether.fi 0x8527d16c... Ultra Sound
13661696 8 3810 1948 +1862 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
13661952 0 3597 1771 +1826 0x88857150... Ultra Sound
13659861 0 3586 1771 +1815 0xb26f9666... Titan Relay
13661492 1 3601 1793 +1808 0x850b00e0... BloXroute Regulated
13659566 0 3567 1771 +1796 blockdaemon 0xa1da2978... Ultra Sound
13654994 4 3649 1859 +1790 whale_0xba8f Local Local
13660690 1 3553 1793 +1760 0x91b123d8... BloXroute Regulated
13661109 5 3631 1881 +1750 0x853b0078... Ultra Sound
13657446 2 3563 1815 +1748 ether.fi 0x88a53ec4... BloXroute Regulated
13655856 0 3515 1771 +1744 0xb26f9666... Titan Relay
13658818 3 3576 1837 +1739 0x8527d16c... Ultra Sound
13658291 9 3692 1970 +1722 everstake 0x88a53ec4... BloXroute Max Profit
13660302 5 3597 1881 +1716 0xb67eaa5e... Titan Relay
13655325 0 3483 1771 +1712 ether.fi 0x852b0070... BloXroute Max Profit
13661815 9 3682 1970 +1712 kelp 0xb26f9666... Titan Relay
13657352 1 3503 1793 +1710 blockdaemon 0x857b0038... Ultra Sound
13661183 5 3587 1881 +1706 revolut 0x8527d16c... Ultra Sound
13657152 6 3600 1904 +1696 luno 0x8527d16c... Ultra Sound
13656623 7 3621 1926 +1695 0x8527d16c... Ultra Sound
13655969 4 3554 1859 +1695 blockdaemon 0x857b0038... Ultra Sound
13657846 0 3451 1771 +1680 0x91a8729e... Ultra Sound
13655041 1 3470 1793 +1677 ether.fi 0xb26f9666... Titan Relay
13658505 5 3558 1881 +1677 blockdaemon 0x8527d16c... Ultra Sound
13661522 3 3509 1837 +1672 0x8a850621... Ultra Sound
13654924 2 3485 1815 +1670 nethermind_lido 0xb26f9666... Titan Relay
13660862 0 3437 1771 +1666 blockdaemon 0xb4ce6162... Ultra Sound
13659651 1 3438 1793 +1645 0x850b00e0... BloXroute Max Profit
13661372 11 3649 2014 +1635 0x853b0078... Ultra Sound
13657003 6 3538 1904 +1634 revolut 0x8527d16c... Ultra Sound
13657937 8 3580 1948 +1632 0x850b00e0... BloXroute Regulated
13656640 0 3400 1771 +1629 0xb26f9666... Titan Relay
13659387 2 3441 1815 +1626 blockdaemon 0xb26f9666... Titan Relay
13659799 3 3460 1837 +1623 0xb26f9666... Titan Relay
13656563 4 3478 1859 +1619 ether.fi 0x8527d16c... Ultra Sound
13657696 3 3454 1837 +1617 bitstamp 0x8527d16c... Ultra Sound
13661529 12 3649 2037 +1612 0x8527d16c... Ultra Sound
13661344 0 3378 1771 +1607 everstake 0x8527d16c... Ultra Sound
13656709 3 3418 1837 +1581 nethermind_lido 0xb26f9666... Titan Relay
13656512 1 3371 1793 +1578 bitstamp 0xb26f9666... Titan Relay
13661777 11 3583 2014 +1569 figment 0xb26f9666... BloXroute Regulated
13655090 13 3627 2059 +1568 ether.fi 0x8db2a99d... BloXroute Max Profit
13661020 4 3427 1859 +1568 nethermind_lido 0xb26f9666... Titan Relay
13656427 7 3492 1926 +1566 0x8527d16c... Ultra Sound
13661209 3 3399 1837 +1562 blockdaemon 0x8a850621... Titan Relay
13661584 5 3439 1881 +1558 ether.fi 0x8527d16c... Ultra Sound
13657587 5 3437 1881 +1556 ether.fi 0x860d4173... BloXroute Max Profit
13660996 0 3323 1771 +1552 everstake 0xb26f9666... Titan Relay
13661852 0 3318 1771 +1547 0xb26f9666... Aestus
13658485 3 3384 1837 +1547 luno 0x88a53ec4... BloXroute Regulated
13654981 5 3427 1881 +1546 ether.fi 0x855b00e6... BloXroute Max Profit
13661532 8 3487 1948 +1539 0x8a850621... Titan Relay
13658925 4 3397 1859 +1538 0x850b00e0... BloXroute Max Profit
13655704 2 3349 1815 +1534 everstake 0x853b0078... Agnostic Gnosis
13657185 4 3393 1859 +1534 whale_0xdd6c 0x8527d16c... Ultra Sound
13661346 9 3502 1970 +1532 nethermind_lido 0xb26f9666... Titan Relay
13661780 5 3412 1881 +1531 blockdaemon 0xb26f9666... Titan Relay
13656430 5 3409 1881 +1528 blockdaemon_lido 0xb67eaa5e... Titan Relay
13656046 0 3297 1771 +1526 0xb26f9666... Titan Relay
13657537 2 3337 1815 +1522 blockdaemon 0xb26f9666... Titan Relay
13658854 0 3291 1771 +1520 whale_0xdd6c 0xb26f9666... BloXroute Max Profit
13655508 2 3333 1815 +1518 everstake 0x8527d16c... Ultra Sound
13659617 1 3306 1793 +1513 blockdaemon_lido 0xb67eaa5e... Titan Relay
13656539 1 3303 1793 +1510 everstake 0x860d4173... Flashbots
13657610 9 3479 1970 +1509 0x8a850621... BloXroute Regulated
13656284 4 3364 1859 +1505 everstake 0xb26f9666... Titan Relay
13655491 3 3339 1837 +1502 nethermind_lido 0xb67eaa5e... BloXroute Regulated
13654919 3 3338 1837 +1501 blockdaemon_lido 0x850b00e0... BloXroute Regulated
13657654 11 3508 2014 +1494 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
13657780 9 3462 1970 +1492 everstake 0x856b0004... Ultra Sound
13661697 0 3261 1771 +1490 stakingfacilities_lido 0x852b0070... Aestus
13661874 8 3438 1948 +1490 stakely_lido 0xb26f9666... Titan Relay
13659302 6 3388 1904 +1484 blockdaemon_lido 0x855b00e6... Ultra Sound
13661455 6 3386 1904 +1482 0x8527d16c... Ultra Sound
13660896 0 3244 1771 +1473 ether.fi 0x88857150... Ultra Sound
13661086 7 3396 1926 +1470 0xb26f9666... Titan Relay
13660602 3 3302 1837 +1465 0x853b0078... Ultra Sound
13661119 5 3344 1881 +1463 blockdaemon 0xb26f9666... Titan Relay
13656457 3 3299 1837 +1462 0x8527d16c... Ultra Sound
13660480 5 3342 1881 +1461 bridgetower_lido 0x8527d16c... Ultra Sound
13655631 0 3229 1771 +1458 everstake 0x852b0070... BloXroute Max Profit
13656041 5 3337 1881 +1456 blockdaemon 0x853b0078... Ultra Sound
13660517 3 3292 1837 +1455 ether.fi 0x823e0146... Flashbots
13656815 8 3402 1948 +1454 0xb4ce6162... Ultra Sound
13659763 8 3400 1948 +1452 nethermind_lido 0x853b0078... Aestus
13659014 0 3222 1771 +1451 everstake 0xa1da2978... Ultra Sound
13656321 1 3244 1793 +1451 everstake 0x88857150... Ultra Sound
13654804 3 3288 1837 +1451 0xb4ce6162... Ultra Sound
13658529 0 3219 1771 +1448 0x852b0070... BloXroute Max Profit
13659171 3 3284 1837 +1447 p2porg 0xb26f9666... Aestus
13659360 8 3394 1948 +1446 stakingfacilities_lido 0x8db2a99d... BloXroute Max Profit
13661655 3 3279 1837 +1442 revolut 0x8527d16c... Ultra Sound
13657040 3 3278 1837 +1441 luno 0x8527d16c... Ultra Sound
13657921 5 3321 1881 +1440 blockdaemon_lido 0x850b00e0... BloXroute Regulated
13660088 4 3296 1859 +1437 blockdaemon 0x8527d16c... Ultra Sound
13660414 7 3361 1926 +1435 0xb26f9666... Titan Relay
13661782 7 3356 1926 +1430 everstake 0x8db2a99d... BloXroute Max Profit
13659700 6 3330 1904 +1426 blockdaemon 0x8a850621... Titan Relay
13656847 5 3305 1881 +1424 blockdaemon_lido 0xb26f9666... Titan Relay
13657358 3 3257 1837 +1420 everstake 0x8527d16c... Ultra Sound
13658163 6 3323 1904 +1419 0x88a53ec4... BloXroute Max Profit
13659714 2 3232 1815 +1417 everstake 0xb26f9666... Titan Relay
13655398 10 3408 1992 +1416 blockdaemon 0xb26f9666... Titan Relay
13661498 0 3184 1771 +1413 everstake 0x8527d16c... Ultra Sound
13657609 0 3182 1771 +1411 everstake 0x91a8729e... BloXroute Max Profit
13659008 10 3403 1992 +1411 0x856b0004... Ultra Sound
13661866 12 3447 2037 +1410 blockdaemon_lido 0x88857150... Ultra Sound
13658372 6 3314 1904 +1410 everstake 0xb26f9666... Titan Relay
13658668 8 3355 1948 +1407 blockdaemon 0xb26f9666... Titan Relay
13660616 2 3222 1815 +1407 blockdaemon_lido 0x853b0078... Ultra Sound
13655880 6 3309 1904 +1405 0xb26f9666... Titan Relay
13659720 0 3173 1771 +1402 nethermind_lido 0x853b0078... Aestus
13660372 11 3416 2014 +1402 0x856b0004... Ultra Sound
13658176 0 3172 1771 +1401 ether.fi 0x853b0078... Agnostic Gnosis
13660693 14 3482 2081 +1401 blockdaemon_lido 0xb67eaa5e... Titan Relay
13657414 8 3347 1948 +1399 blockdaemon 0x853b0078... Ultra Sound
13658077 3 3234 1837 +1397 everstake 0xa230e2cf... Agnostic Gnosis
13654861 10 3387 1992 +1395 blockdaemon_lido 0xb26f9666... Titan Relay
13660039 13 3453 2059 +1394 everstake 0xb67eaa5e... BloXroute Max Profit
13656666 4 3253 1859 +1394 revolut 0x8527d16c... Ultra Sound
13657899 0 3164 1771 +1393 everstake 0xb26f9666... Aestus
13654971 8 3339 1948 +1391 kelp 0x853b0078... Aestus
13655072 8 3332 1948 +1384 0x823e0146... BloXroute Max Profit
13659672 8 3332 1948 +1384 0x850b00e0... BloXroute Regulated
13661706 5 3264 1881 +1383 stakingfacilities_lido 0x853b0078... Agnostic Gnosis
13660457 0 3151 1771 +1380 0xb26f9666... Aestus
13655422 5 3261 1881 +1380 coinbase 0x856b0004... Aestus
13657639 5 3257 1881 +1376 everstake 0xb26f9666... Titan Relay
13660808 5 3257 1881 +1376 lido Local Local
13660315 8 3322 1948 +1374 blockdaemon 0xb26f9666... Titan Relay
13658116 8 3322 1948 +1374 revolut 0x850b00e0... BloXroute Regulated
13661946 0 3143 1771 +1372 p2porg 0x853b0078... Agnostic Gnosis
13658180 1 3162 1793 +1369 0x857b0038... Ultra Sound
13658804 12 3402 2037 +1365 blockdaemon 0xb26f9666... Titan Relay
13655841 0 3135 1771 +1364 0x852b0070... Agnostic Gnosis
13656897 7 3288 1926 +1362 blockdaemon 0x88857150... Ultra Sound
13658238 3 3198 1837 +1361 everstake 0xb26f9666... Titan Relay
13660863 1 3153 1793 +1360 0xb67eaa5e... BloXroute Max Profit
13660022 1 3151 1793 +1358 everstake 0x860d4173... Flashbots
13657526 0 3128 1771 +1357 everstake 0xb67eaa5e... BloXroute Max Profit
13655696 0 3127 1771 +1356 0x91a8729e... BloXroute Max Profit
13656962 10 3347 1992 +1355 0x850b00e0... BloXroute Regulated
13657549 11 3369 2014 +1355 everstake 0x88a53ec4... BloXroute Max Profit
13657441 0 3125 1771 +1354 p2porg 0x805e28e6... BloXroute Max Profit
13655400 12 3389 2037 +1352 0x88a53ec4... BloXroute Max Profit
13658354 0 3123 1771 +1352 0xb4ce6162... Ultra Sound
13659688 11 3365 2014 +1351 everstake 0xb26f9666... Titan Relay
13659613 6 3254 1904 +1350 0xb67eaa5e... BloXroute Regulated
13658606 0 3121 1771 +1350 coinbase 0xb26f9666... Aestus
13658808 8 3296 1948 +1348 0x853b0078... Agnostic Gnosis
13655804 0 3118 1771 +1347 everstake 0xb26f9666... Titan Relay
13654858 8 3294 1948 +1346 everstake 0x8527d16c... Ultra Sound
13657495 3 3181 1837 +1344 everstake 0xb26f9666... Titan Relay
13654910 17 3491 2147 +1344 nethermind_lido 0x853b0078... Ultra Sound
13659857 8 3291 1948 +1343 blockdaemon 0x853b0078... Ultra Sound
13656147 6 3246 1904 +1342 bitstamp 0x8527d16c... Ultra Sound
13655549 3 3176 1837 +1339 ether.fi 0x8527d16c... Ultra Sound
13654883 0 3108 1771 +1337 nethermind_lido 0x852b0070... BloXroute Max Profit
13660929 3 3174 1837 +1337 stakingfacilities_lido 0x8527d16c... Ultra Sound
13656784 14 3416 2081 +1335 everstake 0x850b00e0... BloXroute Max Profit
13660194 0 3105 1771 +1334 0x853b0078... Agnostic Gnosis
13657855 5 3215 1881 +1334 0xac23f8cc... BloXroute Max Profit
13655729 0 3104 1771 +1333 ether.fi 0x99dbe3e8... Ultra Sound
13656810 3 3170 1837 +1333 stakingfacilities_lido 0x8527d16c... Ultra Sound
13655095 3 3170 1837 +1333 0x856b0004... Agnostic Gnosis
13661628 3 3167 1837 +1330 solo_stakers 0x857b0038... Ultra Sound
13660443 10 3322 1992 +1330 blockdaemon 0x8527d16c... Ultra Sound
13660297 4 3189 1859 +1330 everstake 0xb67eaa5e... BloXroute Regulated
13659284 3 3164 1837 +1327 everstake 0xb26f9666... Titan Relay
13658561 8 3273 1948 +1325 0x88857150... Ultra Sound
13659563 4 3182 1859 +1323 everstake 0xb26f9666... BloXroute Max Profit
13656856 9 3292 1970 +1322 ether.fi 0x8527d16c... Ultra Sound
13660843 2 3135 1815 +1320 ether.fi 0xb26f9666... Titan Relay
13660560 11 3333 2014 +1319 stakingfacilities_lido 0x856b0004... Ultra Sound
13657623 3 3155 1837 +1318 everstake 0xb26f9666... Titan Relay
13660499 5 3199 1881 +1318 0x853b0078... Ultra Sound
13654935 0 3088 1771 +1317 0x8a850621... Ultra Sound
13661938 5 3198 1881 +1317 stakingfacilities_lido 0x8527d16c... Ultra Sound
13655086 8 3264 1948 +1316 0xb26f9666... BloXroute Regulated
13661494 4 3174 1859 +1315 0x853b0078... BloXroute Max Profit
13655579 8 3262 1948 +1314 p2porg 0x856b0004... Ultra Sound
13658332 9 3284 1970 +1314 0x853b0078... Agnostic Gnosis
13657568 14 3394 2081 +1313 stakefish 0x850b00e0... BloXroute Regulated
13657566 5 3194 1881 +1313 0x853b0078... Aestus
13659336 0 3083 1771 +1312 p2porg 0x8527d16c... Ultra Sound
13661870 8 3258 1948 +1310 0xb26f9666... Titan Relay
13656545 3 3147 1837 +1310 whale_0x7c1b 0x8527d16c... Ultra Sound
13659892 5 3190 1881 +1309 ether.fi 0x823e0146... Flashbots
13654835 1 3101 1793 +1308 ether.fi 0xb26f9666... Aestus
13657408 2 3123 1815 +1308 0x8527d16c... Ultra Sound
13655580 3 3145 1837 +1308 figment 0x8527d16c... Ultra Sound
13661846 0 3078 1771 +1307 0xa230e2cf... BloXroute Max Profit
13658959 0 3078 1771 +1307 0x850b00e0... BloXroute Regulated
13657496 0 3078 1771 +1307 0x8527d16c... Ultra Sound
13661487 6 3210 1904 +1306 p2porg 0x856b0004... Ultra Sound
13659164 0 3077 1771 +1306 0xb67eaa5e... BloXroute Max Profit
13655793 11 3319 2014 +1305 everstake 0x8527d16c... Ultra Sound
13657714 16 3429 2125 +1304 blockdaemon 0x856b0004... Ultra Sound
13655644 8 3251 1948 +1303 everstake 0x850b00e0... BloXroute Max Profit
13658405 0 3073 1771 +1302 0xb4ce6162... Ultra Sound
13661155 1 3095 1793 +1302 p2porg 0x8527d16c... Ultra Sound
Total anomalies: 212

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