Sun, Mar 29, 2026

Propagation anomalies - 2026-03-29

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-29' AND slot_start_date_time < '2026-03-29'::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-29' AND slot_start_date_time < '2026-03-29'::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-29' AND slot_start_date_time < '2026-03-29'::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-29' AND slot_start_date_time < '2026-03-29'::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-29' AND slot_start_date_time < '2026-03-29'::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-29' AND slot_start_date_time < '2026-03-29'::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-29' AND slot_start_date_time < '2026-03-29'::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-29' AND slot_start_date_time < '2026-03-29'::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,184
MEV blocks: 6,597 (91.8%)
Local blocks: 587 (8.2%)

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 = 1708.4 + 9.60 × blob_count (R² = 0.003)
Residual σ = 632.0ms
Anomalies (>2σ slow): 353 (4.9%)
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
13994056 0 19252 1708 +17544 solo_stakers Local Local
13995328 0 6513 1708 +4805 solo_stakers Local Local
13995525 0 6088 1708 +4380 solo_stakers Local Local
13996320 0 5876 1708 +4168 upbit Local Local
13996256 0 4760 1708 +3052 upbit Local Local
13993423 0 4213 1708 +2505 ether.fi Local Local
13993952 0 4082 1708 +2374 upbit Local Local
13997724 0 4079 1708 +2371 rocketpool Local Local
13997848 0 3923 1708 +2215 ether.fi Local Local
13994304 0 3827 1708 +2119 upbit Local Local
13993696 0 3774 1708 +2066 solo_stakers Local Local
13994240 0 3674 1708 +1966 solo_stakers Local Local
13996995 8 3610 1785 +1825 blockdaemon 0x88857150... Ultra Sound
13998880 2 3551 1728 +1823 blockdaemon_lido 0xac23f8cc... Ultra Sound
14000051 19 3707 1891 +1816 solo_stakers Local Local
13995987 1 3492 1718 +1774 blockdaemon 0x853b0078... BloXroute Regulated
13999998 4 3515 1747 +1768 ether.fi 0x853b0078... BloXroute Max Profit
13999743 10 3549 1804 +1745 ether.fi 0x88857150... Ultra Sound
13999035 0 3440 1708 +1732 ether.fi 0xb67eaa5e... Titan Relay
13997399 6 3494 1766 +1728 p2porg 0x8527d16c... Ultra Sound
13997919 4 3468 1747 +1721 nethermind_lido 0x8db2a99d... Ultra Sound
13995208 2 3434 1728 +1706 nethermind_lido 0x8527d16c... Ultra Sound
13993366 0 3402 1708 +1694 stader 0x8527d16c... Ultra Sound
13995803 5 3442 1756 +1686 nethermind_lido 0xb26f9666... Aestus
13998524 5 3440 1756 +1684 blockdaemon 0x8527d16c... Ultra Sound
14000123 2 3404 1728 +1676 nethermind_lido 0x853b0078... Agnostic Gnosis
13999548 14 3516 1843 +1673 blockdaemon 0x855b00e6... BloXroute Max Profit
13998740 6 3436 1766 +1670 blockdaemon_lido 0x8527d16c... Ultra Sound
13999228 0 3370 1708 +1662 blockdaemon 0x8db2a99d... Ultra Sound
13999068 0 3368 1708 +1660 nethermind_lido 0xb26f9666... Aestus
13995878 7 3432 1776 +1656 lido 0x855b00e6... BloXroute Max Profit
13997702 6 3421 1766 +1655 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13997440 8 3435 1785 +1650 bitstamp 0x88a53ec4... BloXroute Max Profit
13994912 0 3355 1708 +1647 bitstamp 0x8db2a99d... BloXroute Max Profit
13999477 2 3374 1728 +1646 solo_stakers 0x8db2a99d... Aestus
13993767 1 3364 1718 +1646 ether.fi 0x823e0146... BloXroute Max Profit
13995661 9 3440 1795 +1645 nethermind_lido 0x88857150... Ultra Sound
13993479 5 3401 1756 +1645 ether.fi 0x853b0078... Agnostic Gnosis
13999561 0 3350 1708 +1642 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13994578 1 3357 1718 +1639 nethermind_lido 0xb26f9666... Aestus
13999149 1 3355 1718 +1637 luno 0xb26f9666... Titan Relay
13994494 1 3347 1718 +1629 nethermind_lido 0x88857150... Ultra Sound
13996349 1 3345 1718 +1627 whale_0xdc8d 0xb26f9666... Titan Relay
13998314 0 3332 1708 +1624 blockdaemon_lido 0x8db2a99d... BloXroute Regulated
13998946 2 3349 1728 +1621 whale_0xdc8d 0x853b0078... Ultra Sound
13998357 1 3335 1718 +1617 blockdaemon 0x8a850621... Titan Relay
13999984 5 3373 1756 +1617 nethermind_lido 0xb26f9666... Aestus
13997242 1 3334 1718 +1616 0x8db2a99d... Ultra Sound
13998478 0 3321 1708 +1613 blockdaemon_lido 0xb211df49... Ultra Sound
13997350 1 3325 1718 +1607 whale_0x8ebd 0x856b0004... Agnostic Gnosis
13995653 0 3314 1708 +1606 blockdaemon 0x8a850621... Titan Relay
13997032 5 3362 1756 +1606 p2porg 0x88857150... Ultra Sound
13998614 2 3331 1728 +1603 0x88a53ec4... BloXroute Regulated
13997921 12 3425 1824 +1601 revolut 0x850b00e0... BloXroute Regulated
13993459 1 3318 1718 +1600 blockdaemon 0x823e0146... BloXroute Regulated
13994095 5 3351 1756 +1595 blockdaemon 0x8a850621... Titan Relay
13997129 4 3340 1747 +1593 0xb26f9666... Titan Relay
13993434 5 3348 1756 +1592 nethermind_lido 0x853b0078... Aestus
13993760 2 3315 1728 +1587 blockdaemon_lido 0x8527d16c... Ultra Sound
13997299 5 3341 1756 +1585 nethermind_lido 0xac23f8cc... Flashbots
13997743 1 3300 1718 +1582 0xb26f9666... Titan Relay
13995903 1 3300 1718 +1582 0xb26f9666... Titan Relay
13997966 1 3298 1718 +1580 blockdaemon 0xb67eaa5e... BloXroute Regulated
13995001 2 3306 1728 +1578 whale_0xdc8d 0x853b0078... Ultra Sound
13994921 1 3294 1718 +1576 nethermind_lido 0x8527d16c... Ultra Sound
13998937 5 3332 1756 +1576 blockdaemon_lido 0x88857150... Ultra Sound
13997581 6 3335 1766 +1569 nethermind_lido 0x8527d16c... Ultra Sound
14000333 8 3354 1785 +1569 ether.fi 0xb26f9666... Titan Relay
13998356 1 3284 1718 +1566 luno 0x8527d16c... Ultra Sound
13996465 1 3284 1718 +1566 solo_stakers 0x8db2a99d... Aestus
13998922 7 3341 1776 +1565 coinbase 0x8db2a99d... Aestus
13998771 1 3282 1718 +1564 whale_0xdc8d 0xb26f9666... Titan Relay
13993407 5 3319 1756 +1563 luno 0x8527d16c... Ultra Sound
13994856 0 3266 1708 +1558 0xac23f8cc... Ultra Sound
13997037 4 3302 1747 +1555 blockdaemon 0xb26f9666... Titan Relay
13999135 3 3290 1737 +1553 luno 0x8527d16c... Ultra Sound
13995270 4 3299 1747 +1552 luno 0xb26f9666... Titan Relay
13995924 4 3299 1747 +1552 luno 0xac23f8cc... Ultra Sound
13996026 6 3315 1766 +1549 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
13999746 0 3257 1708 +1549 whale_0xdc8d 0x8527d16c... Ultra Sound
13996587 3 3285 1737 +1548 blockdaemon 0xb26f9666... Titan Relay
13993336 9 3342 1795 +1547 whale_0xdc8d 0xb7c5c39a... Ultra Sound
13999552 1 3263 1718 +1545 figment 0x8527d16c... Ultra Sound
13999911 8 3327 1785 +1542 whale_0xdc8d 0x853b0078... Ultra Sound
13997889 5 3293 1756 +1537 whale_0xdc8d 0xb26f9666... BloXroute Max Profit
13994166 10 3341 1804 +1537 revolut 0xb67eaa5e... BloXroute Regulated
13996974 4 3283 1747 +1536 p2porg 0x82c466b9... Ultra Sound
14000312 2 3263 1728 +1535 revolut 0x853b0078... Ultra Sound
13999783 5 3287 1756 +1531 luno 0xb26f9666... Titan Relay
13997475 0 3236 1708 +1528 whale_0xbfd8 0x99dbe3e8... Agnostic Gnosis
13999128 6 3293 1766 +1527 blockdaemon 0x853b0078... BloXroute Regulated
13997837 2 3249 1728 +1521 revolut 0xb26f9666... Titan Relay
13999452 0 3228 1708 +1520 p2porg 0x8527d16c... Ultra Sound
13994497 0 3226 1708 +1518 staked.us 0x851b00b1... Flashbots
13996399 0 3223 1708 +1515 blockdaemon 0x8527d16c... Ultra Sound
13997075 1 3226 1718 +1508 whale_0x8ebd 0x8527d16c... Ultra Sound
13997122 0 3213 1708 +1505 blockdaemon_lido 0x88857150... Ultra Sound
13997759 1 3222 1718 +1504 revolut 0xb26f9666... Titan Relay
13999485 11 3318 1814 +1504 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13994436 1 3221 1718 +1503 blockdaemon_lido 0x855b00e6... BloXroute Max Profit
13999714 1 3221 1718 +1503 blockdaemon 0xb26f9666... Titan Relay
14000122 0 3202 1708 +1494 blockdaemon 0x99dbe3e8... Ultra Sound
13996118 13 3325 1833 +1492 blockdaemon_lido 0xb26f9666... Titan Relay
13994227 3 3227 1737 +1490 blockdaemon 0x8527d16c... Ultra Sound
13994554 0 3198 1708 +1490 0xb67eaa5e... BloXroute Regulated
13994580 6 3255 1766 +1489 whale_0x8ebd 0x8db2a99d... Ultra Sound
13995446 3 3226 1737 +1489 revolut 0xb26f9666... Titan Relay
13997170 8 3274 1785 +1489 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13999994 5 3243 1756 +1487 p2porg 0x88857150... Ultra Sound
13997704 2 3213 1728 +1485 gateway.fmas_lido 0x855b00e6... Flashbots
13997394 0 3182 1708 +1474 whale_0x8ebd 0x93b11bec... Flashbots
13996493 4 3220 1747 +1473 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
13993786 0 3181 1708 +1473 blockdaemon 0x88857150... Ultra Sound
13993848 5 3225 1756 +1469 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14000253 2 3196 1728 +1468 blockdaemon_lido 0x856b0004... Ultra Sound
13999540 0 3176 1708 +1468 whale_0x8ebd 0x853b0078... BloXroute Max Profit
13994416 1 3178 1718 +1460 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
13999982 1 3176 1718 +1458 coinbase 0x8db2a99d... Aestus
13998282 0 3165 1708 +1457 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
13994603 0 3165 1708 +1457 blockdaemon 0x8527d16c... Ultra Sound
13996526 0 3160 1708 +1452 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
13998528 6 3217 1766 +1451 p2porg 0x856b0004... Agnostic Gnosis
13995179 0 3156 1708 +1448 blockdaemon 0xb26f9666... Titan Relay
13996674 1 3163 1718 +1445 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
13997691 0 3153 1708 +1445 0xb4ce6162... Ultra Sound
13999383 2 3170 1728 +1442 whale_0xedc6 0x8db2a99d... Ultra Sound
13995898 6 3207 1766 +1441 whale_0x8ebd 0x8527d16c... Ultra Sound
13997339 1 3158 1718 +1440 coinbase 0x93b11bec... Flashbots
13996784 5 3196 1756 +1440 p2porg 0x850b00e0... BloXroute Regulated
13997888 1 3157 1718 +1439 coinbase 0x823e0146... Aestus
13999314 0 3146 1708 +1438 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
13995639 0 3145 1708 +1437 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13993334 6 3201 1766 +1435 whale_0x8ebd 0x8527d16c... Ultra Sound
13996074 5 3191 1756 +1435 0xb67eaa5e... BloXroute Max Profit
13993364 15 3287 1852 +1435 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
13998444 0 3142 1708 +1434 blockdaemon_lido 0x8527d16c... Ultra Sound
13996746 2 3160 1728 +1432 blockdaemon 0xb67eaa5e... BloXroute Regulated
13996528 0 3140 1708 +1432 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13998542 0 3139 1708 +1431 p2porg 0x853b0078... Titan Relay
13998931 0 3137 1708 +1429 revolut 0x8527d16c... Ultra Sound
13998035 1 3146 1718 +1428 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13997208 0 3135 1708 +1427 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
13996801 0 3134 1708 +1426 p2porg 0x850b00e0... Flashbots
13998849 2 3153 1728 +1425 bitstamp 0x8db2a99d... BloXroute Max Profit
13995766 7 3201 1776 +1425 coinbase 0x8db2a99d... BloXroute Max Profit
14000029 16 3286 1862 +1424 kiln 0x88a53ec4... BloXroute Regulated
13993262 3 3161 1737 +1424 gateway.fmas_lido 0x8db2a99d... Flashbots
13995035 5 3178 1756 +1422 whale_0x8ebd 0x88857150... Ultra Sound
13994050 1 3139 1718 +1421 figment 0x88a53ec4... BloXroute Regulated
13993463 6 3187 1766 +1421 p2porg 0x850b00e0... BloXroute Max Profit
13999364 0 3128 1708 +1420 p2porg 0x850b00e0... Flashbots
13998730 2 3147 1728 +1419 0x8db2a99d... Ultra Sound
13996997 0 3127 1708 +1419 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
13995915 5 3174 1756 +1418 p2porg 0xb67eaa5e... BloXroute Max Profit
13996599 1 3134 1718 +1416 whale_0x8ebd 0x88857150... Ultra Sound
13996459 0 3124 1708 +1416 blockdaemon 0x851b00b1... BloXroute Max Profit
13997307 7 3189 1776 +1413 p2porg 0x8db2a99d... Ultra Sound
13999259 0 3120 1708 +1412 p2porg 0x850b00e0... BloXroute Regulated
13993635 2 3136 1728 +1408 kiln 0xb67eaa5e... BloXroute Max Profit
13996802 2 3135 1728 +1407 whale_0x8ebd 0x8a850621... Titan Relay
13997216 1 3125 1718 +1407 ether.fi 0x88a53ec4... BloXroute Regulated
13998119 0 3115 1708 +1407 gateway.fmas_lido 0x855b00e6... BloXroute Max Profit
13996249 1 3124 1718 +1406 p2porg 0x850b00e0... Flashbots
13998720 5 3161 1756 +1405 ether.fi 0xb67eaa5e... BloXroute Max Profit
13995817 0 3112 1708 +1404 whale_0x994c 0x823e0146... Aestus
13997653 0 3109 1708 +1401 gateway.fmas_lido 0x8527d16c... Ultra Sound
13997034 5 3157 1756 +1401 coinbase 0x88a53ec4... BloXroute Max Profit
13995892 0 3107 1708 +1399 kiln 0x88a53ec4... BloXroute Regulated
13998869 0 3107 1708 +1399 gateway.fmas_lido 0x8db2a99d... Ultra Sound
13996044 5 3155 1756 +1399 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13995014 3 3134 1737 +1397 kiln 0x8527d16c... Ultra Sound
13994439 1 3114 1718 +1396 p2porg 0x855b00e6... BloXroute Max Profit
13997639 0 3101 1708 +1393 p2porg 0x850b00e0... BloXroute Regulated
13997851 7 3166 1776 +1390 0x8527d16c... Ultra Sound
13993571 0 3098 1708 +1390 figment 0x853b0078... BloXroute Max Profit
13994434 0 3098 1708 +1390 everstake 0x88857150... Ultra Sound
13996990 5 3146 1756 +1390 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13993927 5 3146 1756 +1390 p2porg 0x823e0146... Ultra Sound
13998313 6 3154 1766 +1388 whale_0x8ebd 0xb4ce6162... Ultra Sound
13997501 0 3096 1708 +1388 figment 0xb26f9666... Titan Relay
13999712 1 3105 1718 +1387 ether.fi 0xb67eaa5e... BloXroute Max Profit
13995282 0 3095 1708 +1387 gateway.fmas_lido 0x8527d16c... Ultra Sound
13999199 1 3104 1718 +1386 gateway.fmas_lido 0x8527d16c... Ultra Sound
13996490 4 3132 1747 +1385 everstake 0x823e0146... BloXroute Max Profit
13993343 0 3093 1708 +1385 p2porg 0xb26f9666... Titan Relay
13999245 5 3141 1756 +1385 whale_0x8ebd 0xb26f9666... Titan Relay
13995717 7 3160 1776 +1384 0x853b0078... Aestus
13993293 0 3092 1708 +1384 p2porg 0xb26f9666... Titan Relay
13995424 2 3111 1728 +1383 0x855b00e6... BloXroute Max Profit
13994418 5 3139 1756 +1383 p2porg 0x850b00e0... BloXroute Regulated
13999261 1 3100 1718 +1382 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13998961 10 3186 1804 +1382 blockdaemon 0x853b0078... Ultra Sound
13999919 0 3087 1708 +1379 gateway.fmas_lido 0x8527d16c... Ultra Sound
13999172 2 3106 1728 +1378 whale_0x8ebd 0x853b0078... Aestus
13995644 0 3084 1708 +1376 whale_0x8ebd 0xb4ce6162... Ultra Sound
13993473 7 3150 1776 +1374 bitstamp 0x8527d16c... Ultra Sound
13997981 0 3082 1708 +1374 solo_stakers 0x8527d16c... Ultra Sound
14000280 7 3148 1776 +1372 p2porg 0x88a53ec4... BloXroute Regulated
13995086 1 3089 1718 +1371 p2porg 0x855b00e6... BloXroute Max Profit
13997306 5 3127 1756 +1371 blockdaemon 0x88857150... Ultra Sound
13997442 5 3125 1756 +1369 coinbase 0x88857150... Ultra Sound
13998927 5 3124 1756 +1368 gateway.fmas_lido 0x8527d16c... Ultra Sound
13996828 10 3172 1804 +1368 coinbase 0x88a53ec4... BloXroute Regulated
13996576 6 3133 1766 +1367 ether.fi 0x850b00e0... BloXroute Max Profit
13999044 0 3072 1708 +1364 kiln 0xb26f9666... Titan Relay
13998678 5 3120 1756 +1364 figment 0x8527d16c... Ultra Sound
13999589 3 3100 1737 +1363 whale_0x8ebd 0x853b0078... Aestus
13994195 0 3071 1708 +1363 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13998133 8 3147 1785 +1362 p2porg 0xb26f9666... Titan Relay
13999632 0 3066 1708 +1358 p2porg 0x853b0078... Agnostic Gnosis
13997410 1 3075 1718 +1357 coinbase 0xb67eaa5e... BloXroute Regulated
14000273 7 3132 1776 +1356 everstake 0x855b00e6... BloXroute Max Profit
13999386 1 3074 1718 +1356 whale_0x8ebd 0x88857150... Ultra Sound
13995914 0 3063 1708 +1355 p2porg 0x8527d16c... Ultra Sound
13999762 1 3072 1718 +1354 coinbase 0x88a53ec4... BloXroute Regulated
13996860 9 3148 1795 +1353 whale_0x8ebd 0xb26f9666... Titan Relay
13994679 1 3070 1718 +1352 kiln 0xb26f9666... Aestus
13996463 6 3118 1766 +1352 p2porg 0x855b00e6... BloXroute Max Profit
13994709 5 3107 1756 +1351 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13996280 14 3193 1843 +1350 blockdaemon 0x8527d16c... Ultra Sound
13999326 1 3068 1718 +1350 p2porg 0x850b00e0... BloXroute Max Profit
14000351 0 3057 1708 +1349 0xb26f9666... Ultra Sound
13995617 0 3056 1708 +1348 0xb26f9666... BloXroute Max Profit
13997726 6 3113 1766 +1347 figment 0x8527d16c... Ultra Sound
13998452 6 3112 1766 +1346 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
13994680 1 3063 1718 +1345 0xb67eaa5e... BloXroute Regulated
13994787 4 3091 1747 +1344 p2porg 0x850b00e0... BloXroute Max Profit
14000327 0 3052 1708 +1344 whale_0xedc6 0x853b0078... Agnostic Gnosis
13996140 1 3061 1718 +1343 coinbase 0xac23f8cc... Aestus
13995415 1 3060 1718 +1342 p2porg 0x8db2a99d... Ultra Sound
13998003 3 3078 1737 +1341 coinbase 0x856b0004... Aestus
13999505 1 3058 1718 +1340 p2porg 0x853b0078... Ultra Sound
14000242 0 3047 1708 +1339 whale_0x8ebd 0x8527d16c... Ultra Sound
13995640 1 3056 1718 +1338 0xb26f9666... Titan Relay
13996611 6 3104 1766 +1338 figment 0x856b0004... Agnostic Gnosis
13995043 0 3046 1708 +1338 p2porg 0xb26f9666... BloXroute Max Profit
13998328 6 3103 1766 +1337 p2porg 0x853b0078... Agnostic Gnosis
13996608 1 3054 1718 +1336 whale_0x8ebd 0x88857150... Ultra Sound
13998176 15 3188 1852 +1336 whale_0x8ebd 0x8a850621... Titan Relay
13999593 1 3053 1718 +1335 p2porg 0x853b0078... Agnostic Gnosis
13993723 0 3043 1708 +1335 everstake 0x8db2a99d... Flashbots
13993199 1 3052 1718 +1334 p2porg 0x8db2a99d... Ultra Sound
14000291 5 3088 1756 +1332 everstake 0x8527d16c... Ultra Sound
13998842 1 3049 1718 +1331 everstake 0x823e0146... Ultra Sound
13995469 16 3193 1862 +1331 p2porg 0x8527d16c... Ultra Sound
14000196 0 3039 1708 +1331 p2porg 0x856b0004... BloXroute Max Profit
13997761 0 3039 1708 +1331 p2porg 0xb7c5c39a... BloXroute Max Profit
13998312 10 3135 1804 +1331 coinbase 0x856b0004... Agnostic Gnosis
13993996 6 3095 1766 +1329 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13994947 3 3066 1737 +1329 whale_0x8ebd 0xb26f9666... Titan Relay
13999927 6 3094 1766 +1328 whale_0x8ebd 0x853b0078... Ultra Sound
13996308 0 3035 1708 +1327 0xb26f9666... Titan Relay
13996575 1 3044 1718 +1326 p2porg 0x853b0078... Agnostic Gnosis
13993292 5 3082 1756 +1326 whale_0x8ebd 0x856b0004... Agnostic Gnosis
13998155 6 3091 1766 +1325 bitstamp 0x853b0078... Agnostic Gnosis
13996103 8 3110 1785 +1325 kiln 0x8db2a99d... BloXroute Max Profit
13997328 0 3033 1708 +1325 whale_0xedc6 0x853b0078... Ultra Sound
13996028 0 3033 1708 +1325 whale_0xedc6 Local Local
13995581 5 3081 1756 +1325 p2porg 0x88857150... Ultra Sound
13993367 1 3042 1718 +1324 everstake 0x857b0038... Ultra Sound
13993645 0 3032 1708 +1324 coinbase 0x88a53ec4... BloXroute Max Profit
14000388 2 3051 1728 +1323 coinbase 0xb67eaa5e... BloXroute Regulated
13993766 8 3108 1785 +1323 everstake 0x855b00e6... Flashbots
13993982 1 3040 1718 +1322 coinbase 0x85fb0503... BloXroute Max Profit
13999288 6 3088 1766 +1322 coinbase 0x8db2a99d... Aestus
13994275 3 3058 1737 +1321 kiln 0xb67eaa5e... BloXroute Max Profit
13994528 3 3058 1737 +1321 coinbase 0x8527d16c... Ultra Sound
13994279 0 3029 1708 +1321 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
13997784 5 3077 1756 +1321 coinbase 0x856b0004... Aestus
13999656 5 3076 1756 +1320 p2porg 0xb26f9666... BloXroute Max Profit
13994406 8 3103 1785 +1318 stader 0x8527d16c... Ultra Sound
13995900 1 3035 1718 +1317 everstake 0x850b00e0... BloXroute Max Profit
13996018 2 3043 1728 +1315 0x850b00e0... BloXroute Max Profit
13998215 8 3100 1785 +1315 0x88a53ec4... Aestus
13999236 0 3023 1708 +1315 p2porg 0x8527d16c... Ultra Sound
13998839 2 3042 1728 +1314 p2porg 0x8db2a99d... Ultra Sound
13995170 1 3032 1718 +1314 p2porg 0x8db2a99d... Ultra Sound
13999697 0 3022 1708 +1314 everstake 0x8a850621... Titan Relay
13994903 1 3030 1718 +1312 everstake 0x855b00e6... Flashbots
13995583 0 3020 1708 +1312 coinbase 0xb26f9666... Titan Relay
13996160 6 3077 1766 +1311 coinbase 0x88857150... Ultra Sound
13996498 3 3048 1737 +1311 p2porg 0x8527d16c... Ultra Sound
14000163 0 3018 1708 +1310 coinbase 0xb67eaa5e... BloXroute Regulated
13999106 0 3018 1708 +1310 coinbase 0x856b0004... Agnostic Gnosis
13995060 3 3045 1737 +1308 p2porg 0x8527d16c... Ultra Sound
13998173 5 3064 1756 +1308 p2porg 0x8527d16c... Ultra Sound
14000363 10 3112 1804 +1308 kiln 0x853b0078... Agnostic Gnosis
13997061 0 3015 1708 +1307 coinbase 0x88a53ec4... BloXroute Max Profit
13995703 6 3071 1766 +1305 coinbase 0x855b00e6... BloXroute Max Profit
13997333 0 3013 1708 +1305 whale_0x8ebd 0xb26f9666... Titan Relay
13994108 1 3022 1718 +1304 kiln 0xac23f8cc... Ultra Sound
13999495 5 3060 1756 +1304 kiln 0x8527d16c... Ultra Sound
13994326 6 3069 1766 +1303 0x853b0078... Agnostic Gnosis
13995369 1 3020 1718 +1302 everstake 0x8a850621... Titan Relay
13999118 3 3039 1737 +1302 0x8527d16c... Ultra Sound
13996853 5 3058 1756 +1302 coinbase 0xb26f9666... Titan Relay
13998104 5 3058 1756 +1302 whale_0x8ebd 0x8527d16c... Ultra Sound
13995667 1 3017 1718 +1299 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
13996205 6 3065 1766 +1299 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
13994659 6 3065 1766 +1299 everstake 0x8a850621... Titan Relay
13993418 11 3113 1814 +1299 whale_0x8ebd 0x8527d16c... Ultra Sound
13997523 0 3005 1708 +1297 0x88857150... Ultra Sound
13994172 0 3005 1708 +1297 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13997645 0 3005 1708 +1297 p2porg 0x8527d16c... Ultra Sound
14000369 1 3013 1718 +1295 kiln 0x88a53ec4... BloXroute Regulated
13997883 1 3013 1718 +1295 solo_stakers 0xb67eaa5e... Aestus
13994200 7 3070 1776 +1294 p2porg 0x853b0078... Flashbots
13993300 1 3012 1718 +1294 whale_0xedc6 0xb26f9666... BloXroute Max Profit
13995233 5 3050 1756 +1294 coinbase 0xb26f9666... Titan Relay
13996348 1 3010 1718 +1292 p2porg 0x8527d16c... Ultra Sound
13993290 0 3000 1708 +1292 p2porg 0x88857150... Ultra Sound
13994637 2 3019 1728 +1291 bitstamp 0x88857150... Ultra Sound
13995190 0 2999 1708 +1291 kiln 0xb26f9666... Titan Relay
13993803 0 2999 1708 +1291 everstake 0x8527d16c... Ultra Sound
13996125 2 3018 1728 +1290 whale_0x8ebd 0x853b0078... Agnostic Gnosis
13997659 0 2998 1708 +1290 everstake 0x855b00e6... BloXroute Max Profit
13996016 7 3065 1776 +1289 whale_0x8ebd 0x8527d16c... Ultra Sound
13994990 0 2995 1708 +1287 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13995305 5 3043 1756 +1287 everstake 0x8a850621... Titan Relay
13995036 4 3033 1747 +1286 p2porg 0x856b0004... Agnostic Gnosis
13994020 14 3129 1843 +1286 p2porg 0x8527d16c... Ultra Sound
14000135 3 3023 1737 +1286 whale_0x8ebd 0xb26f9666... BloXroute Regulated
13997782 0 2994 1708 +1286 abyss_finance 0xb26f9666... BloXroute Max Profit
13999138 6 3051 1766 +1285 everstake 0xb26f9666... Titan Relay
13993333 0 2993 1708 +1285 kiln 0xb26f9666... Titan Relay
13993588 5 3041 1756 +1285 kiln 0x8527d16c... Ultra Sound
13998162 5 3041 1756 +1285 whale_0x8ebd 0xb26f9666... Titan Relay
13994269 9 3078 1795 +1283 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
13996068 0 2991 1708 +1283 coinbase 0xb26f9666... Aestus
13997828 11 3096 1814 +1282 kiln 0x856b0004... Aestus
13999007 10 3086 1804 +1282 gateway.fmas_lido 0x8527d16c... Ultra Sound
13997654 2 3009 1728 +1281 coinbase 0x853b0078... Agnostic Gnosis
13993444 5 3037 1756 +1281 kiln 0xb67eaa5e... BloXroute Max Profit
13998926 2 3008 1728 +1280 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
13998308 6 3046 1766 +1280 kiln 0x8527d16c... Ultra Sound
13998085 0 2988 1708 +1280 everstake 0x8a850621... Titan Relay
13994460 5 3035 1756 +1279 coinbase 0x8db2a99d... Ultra Sound
13998062 7 3054 1776 +1278 coinbase 0x856b0004... Aestus
13998067 5 3034 1756 +1278 coinbase 0xac23f8cc... Aestus
13993846 5 3034 1756 +1278 coinbase 0xb4ce6162... Ultra Sound
13994907 7 3052 1776 +1276 everstake 0x857b0038... Ultra Sound
14000379 1 2994 1718 +1276 coinbase 0xb4ce6162... Ultra Sound
13993458 5 3032 1756 +1276 whale_0x8ebd 0x853b0078... Agnostic Gnosis
13999301 0 2983 1708 +1275 coinbase 0xb26f9666... Aestus
13996197 0 2983 1708 +1275 whale_0x8ebd 0x88857150... Ultra Sound
13996615 2 3001 1728 +1273 kiln 0x853b0078... Agnostic Gnosis
13998339 1 2991 1718 +1273 0x850b00e0... BloXroute Max Profit
13996834 2 2999 1728 +1271 everstake 0x88a53ec4... BloXroute Regulated
13999319 5 3027 1756 +1271 coinbase 0xb26f9666... Titan Relay
13995872 1 2988 1718 +1270 stakingfacilities_lido 0x853b0078... Aestus
13996556 3 3006 1737 +1269 kiln 0x8527d16c... Ultra Sound
13996129 0 2976 1708 +1268 stakingfacilities_lido 0x8527d16c... Ultra Sound
13999461 6 3032 1766 +1266 kiln 0xb26f9666... BloXroute Max Profit
Total anomalies: 353

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