Tue, Apr 28, 2026

Propagation anomalies - 2026-04-28

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-04-28' AND slot_start_date_time < '2026-04-28'::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-04-28' AND slot_start_date_time < '2026-04-28'::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-04-28' AND slot_start_date_time < '2026-04-28'::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-04-28' AND slot_start_date_time < '2026-04-28'::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-04-28' AND slot_start_date_time < '2026-04-28'::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-04-28' AND slot_start_date_time < '2026-04-28'::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-04-28' AND slot_start_date_time < '2026-04-28'::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-04-28' AND slot_start_date_time < '2026-04-28'::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,843 (95.2%)
Local blocks: 344 (4.8%)

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 = 1712.4 + 21.94 × blob_count (R² = 0.012)
Residual σ = 652.1ms
Anomalies (>2σ slow): 343 (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
14213460 1 18109 1734 +16375 solo_stakers Local Local
14211296 0 11422 1712 +9710 whale_0x3212 Local Local
14214335 13 10597 1998 +8599 solo_stakers Local Local
14214623 1 6686 1734 +4952 whale_0x3212 Local Local
14214080 0 6423 1712 +4711 upbit Local Local
14214656 0 5461 1712 +3749 upbit Local Local
14212608 0 4987 1712 +3275 rocketpool Local Local
14212854 1 4328 1734 +2594 solo_stakers Local Local
14210609 0 3885 1712 +2173 blockdaemon_lido 0x851b00b1... Ultra Sound
14209293 1 3807 1734 +2073 blockdaemon 0xa965c911... Ultra Sound
14211159 4 3830 1800 +2030 blockdaemon 0x8527d16c... Ultra Sound
14209312 0 3742 1712 +2030 blockdaemon_lido 0xb26f9666... Titan Relay
14211936 0 3719 1712 +2007 ether.fi 0x85fb0503... Ultra Sound
14212250 5 3797 1822 +1975 blockdaemon_lido 0x88857150... Ultra Sound
14210528 1 3590 1734 +1856 blockdaemon 0xb26f9666... Titan Relay
14213013 1 3586 1734 +1852 blockdaemon_lido 0x850b00e0... BloXroute Regulated
14211326 5 3644 1822 +1822 whale_0x6ddb 0x857b0038... BloXroute Max Profit
14209546 5 3640 1822 +1818 p2porg 0x85fb0503... Ultra Sound
14211601 5 3630 1822 +1808 blockdaemon 0x88857150... Ultra Sound
14214976 7 3630 1866 +1764 whale_0xdbae 0x853b0078... Flashbots
14215840 0 3474 1712 +1762 ether.fi 0x88a53ec4... BloXroute Max Profit
14211522 0 3467 1712 +1755 blockdaemon 0x8a850621... Titan Relay
14216161 0 3463 1712 +1751 blockdaemon 0x8527d16c... Ultra Sound
14210288 2 3498 1756 +1742 blockdaemon 0x857b0038... Ultra Sound
14211232 6 3566 1844 +1722 blockdaemon 0x850b00e0... BloXroute Max Profit
14214432 0 3429 1712 +1717 lido 0xb26f9666... Titan Relay
14211471 2 3440 1756 +1684 blockdaemon_lido 0x8527d16c... Ultra Sound
14216199 0 3396 1712 +1684 ether.fi 0x853b0078... BloXroute Max Profit
14213852 11 3632 1954 +1678 kraken 0xb26f9666... EthGas
14214825 0 3386 1712 +1674 whale_0xdc8d 0x853b0078... Ultra Sound
14212992 0 3385 1712 +1673 bitstamp 0x8db2a99d... BloXroute Max Profit
14213986 0 3376 1712 +1664 blockdaemon 0xb67eaa5e... BloXroute Max Profit
14209490 5 3479 1822 +1657 blockdaemon 0xb26f9666... Titan Relay
14214280 1 3391 1734 +1657 nethermind_lido 0xb26f9666... BloXroute Max Profit
14214173 1 3391 1734 +1657 blockdaemon 0x8527d16c... Ultra Sound
14214219 5 3477 1822 +1655 blockdaemon 0xb67eaa5e... BloXroute Regulated
14211464 5 3476 1822 +1654 luno 0x88a53ec4... BloXroute Regulated
14212931 3 3420 1778 +1642 whale_0x8ebd 0xb4ce6162... Ultra Sound
14214742 0 3354 1712 +1642 coinbase 0xb67eaa5e... BloXroute Regulated
14215881 4 3436 1800 +1636 blockdaemon 0x853b0078... BloXroute Max Profit
14209630 2 3390 1756 +1634 blockdaemon 0x850b00e0... BloXroute Max Profit
14209512 2 3388 1756 +1632 whale_0x8ebd 0xb4ce6162... Ultra Sound
14211548 0 3342 1712 +1630 blockdaemon_lido 0x851b00b1... BloXroute Max Profit
14209275 2 3382 1756 +1626 solo_stakers Local Local
14209266 1 3359 1734 +1625 p2porg 0x857b0038... BloXroute Max Profit
14215194 6 3468 1844 +1624 blockdaemon 0x857b0038... BloXroute Max Profit
14211207 10 3554 1932 +1622 luno 0xb67eaa5e... BloXroute Regulated
14211408 1 3348 1734 +1614 blockdaemon 0x853b0078... BloXroute Max Profit
14211395 0 3321 1712 +1609 whale_0xdc8d 0xb26f9666... Titan Relay
14211707 0 3321 1712 +1609 p2porg 0x88857150... Ultra Sound
14214507 2 3358 1756 +1602 blockdaemon_lido 0x9129eeb4... Ultra Sound
14212174 1 3334 1734 +1600 blockdaemon 0x850b00e0... BloXroute Max Profit
14209571 0 3306 1712 +1594 coinbase 0x85fb0503... Aestus
14209879 6 3436 1844 +1592 blockdaemon_lido 0x88857150... Ultra Sound
14212616 1 3323 1734 +1589 blockdaemon 0x8db2a99d... BloXroute Max Profit
14212347 1 3323 1734 +1589 blockdaemon 0x857b0038... BloXroute Max Profit
14215781 0 3300 1712 +1588 whale_0xdc8d 0xb26f9666... Titan Relay
14215257 13 3584 1998 +1586 coinbase 0x88a53ec4... BloXroute Max Profit
14212030 0 3297 1712 +1585 blockdaemon_lido 0xb67eaa5e... Titan Relay
14213216 2 3339 1756 +1583 0xb67eaa5e... Aestus
14214955 0 3295 1712 +1583 blockdaemon_lido 0xb26f9666... Titan Relay
14210643 1 3309 1734 +1575 blockdaemon_lido 0xb67eaa5e... Ultra Sound
14210741 0 3287 1712 +1575 blockdaemon 0xa965c911... Ultra Sound
14216146 0 3286 1712 +1574 blockdaemon 0x8527d16c... Ultra Sound
14212145 5 3390 1822 +1568 blockdaemon 0x856b0004... BloXroute Max Profit
14216027 0 3279 1712 +1567 0x80ad903b... BloXroute Max Profit
14210524 1 3300 1734 +1566 blockdaemon 0xb26f9666... Titan Relay
14214095 1 3297 1734 +1563 p2porg 0xb67eaa5e... Ultra Sound
14213754 5 3380 1822 +1558 blockdaemon 0xb7c5e609... BloXroute Max Profit
14212570 9 3467 1910 +1557 nethermind_lido 0x856b0004... BloXroute Max Profit
14210313 1 3290 1734 +1556 blockdaemon 0x88857150... Ultra Sound
14215589 6 3394 1844 +1550 luno 0xb26f9666... Titan Relay
14215567 0 3257 1712 +1545 blockdaemon_lido 0x850b00e0... Ultra Sound
14214118 4 3343 1800 +1543 blockdaemon 0xb67eaa5e... Titan Relay
14213634 0 3253 1712 +1541 whale_0xdc8d 0x805e28e6... BloXroute Max Profit
14211143 6 3384 1844 +1540 blockdaemon 0xb7c5e609... BloXroute Max Profit
14209889 1 3274 1734 +1540 solo_stakers 0x85fb0503... Ultra Sound
14215284 0 3251 1712 +1539 blockdaemon 0x8527d16c... Ultra Sound
14211892 5 3359 1822 +1537 0x88857150... Ultra Sound
14211713 2 3291 1756 +1535 ether.fi 0x853b0078... BloXroute Max Profit
14211176 5 3355 1822 +1533 blockdaemon_lido 0x853b0078... BloXroute Regulated
14211895 1 3265 1734 +1531 blockdaemon_lido 0x823e0146... Ultra Sound
14215376 10 3461 1932 +1529 bridgetower_lido 0xb67eaa5e... BloXroute Max Profit
14214324 0 3240 1712 +1528 blockdaemon_lido 0x856b0004... Ultra Sound
14215072 15 3568 2041 +1527 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
14213567 1 3256 1734 +1522 whale_0x8ebd 0x853b0078... Ultra Sound
14215815 5 3342 1822 +1520 luno 0xb26f9666... Titan Relay
14212680 0 3225 1712 +1513 ether.fi 0xb26f9666... BloXroute Max Profit
14213343 2 3268 1756 +1512 blockdaemon_lido 0xb67eaa5e... Titan Relay
14213388 5 3333 1822 +1511 blockdaemon_lido 0x8527d16c... Ultra Sound
14214857 1 3244 1734 +1510 blockdaemon_lido 0x850b00e0... Ultra Sound
14209671 10 3441 1932 +1509 revolut 0xb67eaa5e... BloXroute Regulated
14212346 13 3506 1998 +1508 0x856b0004... Ultra Sound
14209644 1 3236 1734 +1502 blockdaemon_lido 0xb7c5e609... BloXroute Max Profit
14214964 0 3211 1712 +1499 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14214908 5 3318 1822 +1496 luno 0x8527d16c... Ultra Sound
14216218 5 3318 1822 +1496 blockdaemon_lido 0x853b0078... BloXroute Max Profit
14214228 1 3230 1734 +1496 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14214922 9 3404 1910 +1494 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
14215364 3 3272 1778 +1494 whale_0x8914 0x850b00e0... Ultra Sound
14211762 0 3205 1712 +1493 whale_0xdc8d 0x8527d16c... Ultra Sound
14210027 5 3314 1822 +1492 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
14216109 1 3226 1734 +1492 whale_0xfd67 0x850b00e0... Ultra Sound
14213545 0 3204 1712 +1492 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
14209956 1 3223 1734 +1489 gateway.fmas_lido 0x856b0004... BloXroute Max Profit
14212776 2 3244 1756 +1488 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
14212234 2 3243 1756 +1487 gateway.fmas_lido 0x823e0146... BloXroute Max Profit
14215367 1 3221 1734 +1487 revolut 0xb26f9666... Titan Relay
14214402 0 3197 1712 +1485 whale_0x4b5e 0x851b00b1... Ultra Sound
14215965 6 3328 1844 +1484 gateway.fmas_lido 0x88a53ec4... BloXroute Regulated
14211501 1 3214 1734 +1480 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
14214638 3 3256 1778 +1478 blockdaemon 0x856b0004... Ultra Sound
14214817 0 3190 1712 +1478 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14216004 0 3190 1712 +1478 gateway.fmas_lido 0x823e0146... BloXroute Max Profit
14211198 0 3189 1712 +1477 0xb67eaa5e... BloXroute Regulated
14214390 0 3188 1712 +1476 blockdaemon_lido 0x88a53ec4... BloXroute Regulated
14212328 6 3318 1844 +1474 revolut 0xb26f9666... Titan Relay
14214336 0 3184 1712 +1472 whale_0x8ebd 0x851b00b1... Ultra Sound
14210010 0 3183 1712 +1471 blockdaemon 0x851b00b1... BloXroute Max Profit
14211758 2 3226 1756 +1470 gateway.fmas_lido 0x853b0078... BloXroute Max Profit
14213669 0 3178 1712 +1466 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
14214523 0 3174 1712 +1462 whale_0xf273 0x851b00b1... Ultra Sound
14213228 3 3239 1778 +1461 blockdaemon_lido 0xb26f9666... Titan Relay
14213632 3 3238 1778 +1460 whale_0x8914 0xb67eaa5e... Titan Relay
14216256 1 3194 1734 +1460 stakefish 0x8527d16c... Ultra Sound
14216044 0 3172 1712 +1460 whale_0x75ff 0x8db2a99d... Ultra Sound
14215750 0 3172 1712 +1460 blockdaemon_lido 0x88a53ec4... BloXroute Regulated
14216026 1 3193 1734 +1459 kiln 0x88a53ec4... BloXroute Regulated
14210275 0 3171 1712 +1459 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
14216180 2 3213 1756 +1457 whale_0x8914 0x823e0146... Flashbots
14216195 1 3189 1734 +1455 whale_0x8914 0xa965c911... Ultra Sound
14213010 0 3167 1712 +1455 solo_stakers 0xba003e46... Ultra Sound
14215126 7 3320 1866 +1454 whale_0x4b5e 0xb67eaa5e... BloXroute Regulated
14215996 3 3231 1778 +1453 p2porg 0x850b00e0... BloXroute Regulated
14210586 1 3186 1734 +1452 gateway.fmas_lido 0x8527d16c... Ultra Sound
14211115 2 3207 1756 +1451 gateway.fmas_lido 0x88857150... Ultra Sound
14210131 8 3338 1888 +1450 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
14209755 7 3315 1866 +1449 gateway.fmas_lido 0x8527d16c... Ultra Sound
14210695 3 3226 1778 +1448 whale_0xfd67 0x856b0004... BloXroute Max Profit
14213453 1 3182 1734 +1448 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
14216111 9 3357 1910 +1447 blockdaemon_lido 0xb67eaa5e... Titan Relay
14212620 7 3311 1866 +1445 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
14211153 7 3310 1866 +1444 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14215444 1 3178 1734 +1444 whale_0xfd67 0xb67eaa5e... BloXroute Max Profit
14213470 5 3263 1822 +1441 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
14212871 1 3174 1734 +1440 whale_0x8914 0xa965c911... Ultra Sound
14214247 5 3260 1822 +1438 whale_0x8914 0xb67eaa5e... Titan Relay
14215522 5 3260 1822 +1438 blockdaemon_lido 0x88a53ec4... BloXroute Regulated
14210721 1 3171 1734 +1437 gateway.fmas_lido 0x856b0004... Agnostic Gnosis
14215982 1 3171 1734 +1437 blockdaemon_lido 0x853b0078... Ultra Sound
14213045 0 3147 1712 +1435 Local Local
14213022 5 3256 1822 +1434 whale_0x8ebd 0x856b0004... Ultra Sound
14210299 0 3146 1712 +1434 gateway.fmas_lido 0x8db2a99d... Flashbots
14212554 5 3253 1822 +1431 blockdaemon_lido 0xb26f9666... Titan Relay
14210625 2 3187 1756 +1431 p2porg 0x850b00e0... BloXroute Regulated
14209488 1 3165 1734 +1431 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14213573 9 3338 1910 +1428 whale_0xdc8d 0x853b0078... BloXroute Regulated
14210150 5 3249 1822 +1427 0x856b0004... BloXroute Max Profit
14215135 3 3205 1778 +1427 gateway.fmas_lido 0x856b0004... Ultra Sound
14209707 1 3159 1734 +1425 kiln Local Local
14215999 0 3137 1712 +1425 gateway.fmas_lido 0x88857150... Ultra Sound
14212282 0 3133 1712 +1421 whale_0x8ebd 0x8527d16c... Ultra Sound
14212933 5 3241 1822 +1419 coinbase 0x8527d16c... Ultra Sound
14215154 5 3241 1822 +1419 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14212555 1 3152 1734 +1418 gateway.fmas_lido 0x823e0146... BloXroute Max Profit
14212327 0 3129 1712 +1417 p2porg 0xb67eaa5e... BloXroute Regulated
14215942 1 3149 1734 +1415 p2porg 0xb26f9666... Titan Relay
14210419 0 3127 1712 +1415 whale_0xfd67 0x85fb0503... Ultra Sound
14213007 6 3258 1844 +1414 p2porg 0x850b00e0... BloXroute Regulated
14213483 5 3236 1822 +1414 blockdaemon 0x850b00e0... BloXroute Max Profit
14215401 2 3167 1756 +1411 p2porg 0xb26f9666... Titan Relay
14209373 0 3123 1712 +1411 0x8db2a99d... Ultra Sound
14212490 1 3144 1734 +1410 p2porg 0xb67eaa5e... Aestus
14210389 1 3142 1734 +1408 p2porg 0x8db2a99d... Titan Relay
14211704 6 3251 1844 +1407 p2porg 0x850b00e0... BloXroute Regulated
14212943 0 3119 1712 +1407 whale_0x8ebd 0x8527d16c... Ultra Sound
14214106 6 3249 1844 +1405 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14215175 2 3161 1756 +1405 gateway.fmas_lido 0x823e0146... Flashbots
14215058 0 3117 1712 +1405 whale_0xfd67 0x823e0146... Aestus
14214899 0 3115 1712 +1403 gateway.fmas_lido 0x853b0078... BloXroute Max Profit
14213767 0 3113 1712 +1401 whale_0x8914 0x851b00b1... Ultra Sound
14213888 3 3178 1778 +1400 p2porg 0xb26f9666... BloXroute Max Profit
14214764 0 3112 1712 +1400 gateway.fmas_lido 0x8527d16c... Ultra Sound
14215715 0 3111 1712 +1399 p2porg 0x853b0078... BloXroute Max Profit
14209582 11 3351 1954 +1397 p2porg 0x856b0004... BloXroute Max Profit
14215197 2 3152 1756 +1396 coinbase 0x88a53ec4... BloXroute Regulated
14213059 1 3126 1734 +1392 coinbase 0xb26f9666... Titan Relay
14210565 3 3169 1778 +1391 figment 0xb67eaa5e... Ultra Sound
14209715 5 3212 1822 +1390 gateway.fmas_lido 0x8527d16c... Ultra Sound
14210289 1 3124 1734 +1390 whale_0x8ebd 0x8527d16c... Ultra Sound
14215450 0 3102 1712 +1390 kiln 0xb67eaa5e... BloXroute Regulated
14209243 0 3102 1712 +1390 whale_0x8ebd 0x8527d16c... Ultra Sound
14212929 2 3143 1756 +1387 whale_0x8ebd 0x8527d16c... Ultra Sound
14216281 2 3143 1756 +1387 p2porg 0x853b0078... BloXroute Max Profit
14215128 5 3206 1822 +1384 blockdaemon 0xb7c5e609... BloXroute Max Profit
14212873 1 3117 1734 +1383 whale_0x8ebd 0xb7c5e609... BloXroute Max Profit
14210901 1 3117 1734 +1383 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14210993 0 3095 1712 +1383 p2porg 0xb67eaa5e... BloXroute Max Profit
14214924 0 3095 1712 +1383 p2porg 0x850b00e0... BloXroute Regulated
14209219 1 3116 1734 +1382 whale_0x8ebd 0x8527d16c... Ultra Sound
14215983 1 3116 1734 +1382 whale_0x8ebd 0x8527d16c... Ultra Sound
14216226 1 3115 1734 +1381 everstake 0x9129eeb4... Ultra Sound
14211251 0 3091 1712 +1379 0x851b00b1... BloXroute Max Profit
14210644 11 3332 1954 +1378 everstake 0xb5a65d00... Ultra Sound
14210134 5 3200 1822 +1378 coinbase 0x88a53ec4... BloXroute Max Profit
14213128 0 3089 1712 +1377 whale_0x8ebd 0x8527d16c... Ultra Sound
14214311 0 3088 1712 +1376 blockdaemon 0x8db2a99d... BloXroute Max Profit
14213367 0 3087 1712 +1375 coinbase 0x853b0078... Ultra Sound
14212578 0 3087 1712 +1375 coinbase 0xb26f9666... Titan Relay
14215418 6 3218 1844 +1374 coinbase 0xb67eaa5e... Ultra Sound
14210729 5 3196 1822 +1374 p2porg 0xb67eaa5e... Aestus
14211563 5 3196 1822 +1374 whale_0xfd67 0x88a53ec4... BloXroute Regulated
14212501 5 3196 1822 +1374 whale_0x8ebd Local Local
14210110 0 3085 1712 +1373 p2porg 0xb26f9666... Titan Relay
14209428 0 3085 1712 +1373 coinbase 0xb67eaa5e... BloXroute Max Profit
14211880 1 3106 1734 +1372 coinbase 0xb4ce6162... Ultra Sound
14212014 1 3106 1734 +1372 0xb67eaa5e... Ultra Sound
14215712 0 3084 1712 +1372 stakefish 0x8db2a99d... Flashbots
14211242 8 3259 1888 +1371 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14216207 5 3193 1822 +1371 whale_0xfd67 0x823e0146... Aestus
14210518 3 3149 1778 +1371 coinbase 0xb26f9666... BloXroute Regulated
14210631 1 3105 1734 +1371 coinbase 0xb67eaa5e... BloXroute Max Profit
14213027 9 3280 1910 +1370 0x9129eeb4... Ultra Sound
14210458 2 3126 1756 +1370 0xb67eaa5e... Aestus
14209934 0 3082 1712 +1370 coinbase 0xb4ce6162... Ultra Sound
14213023 0 3081 1712 +1369 coinbase 0xb26f9666... BloXroute Regulated
14209479 6 3212 1844 +1368 kiln 0xb67eaa5e... Aestus
14214493 1 3100 1734 +1366 p2porg 0xb26f9666... Titan Relay
14214487 0 3078 1712 +1366 p2porg 0x853b0078... BloXroute Regulated
14214259 5 3187 1822 +1365 gateway.fmas_lido 0x856b0004... Ultra Sound
14211328 3 3143 1778 +1365 0x857b0038... BloXroute Regulated
14215127 0 3076 1712 +1364 p2porg 0x856b0004... Ultra Sound
14209842 0 3076 1712 +1364 p2porg 0x850b00e0... BloXroute Regulated
14212167 1 3097 1734 +1363 p2porg 0xb26f9666... Titan Relay
14213947 2 3118 1756 +1362 coinbase 0xb26f9666... Titan Relay
14212589 4 3161 1800 +1361 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14210924 0 3072 1712 +1360 coinbase 0x823e0146... Ultra Sound
14212918 1 3093 1734 +1359 whale_0x8914 0x88a53ec4... BloXroute Regulated
14212506 5 3180 1822 +1358 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14216090 1 3092 1734 +1358 coinbase 0xb67eaa5e... Ultra Sound
14211269 0 3070 1712 +1358 0x805e28e6... BloXroute Regulated
14209398 6 3201 1844 +1357 whale_0x8ebd 0xb67eaa5e... Ultra Sound
14215640 3 3135 1778 +1357 coinbase 0x850b00e0... Flashbots
14210563 0 3069 1712 +1357 whale_0x8ebd 0xb26f9666... Titan Relay
14209425 11 3310 1954 +1356 gateway.fmas_lido 0x823e0146... Flashbots
14209408 9 3266 1910 +1356 coinbase 0xb67eaa5e... BloXroute Max Profit
14216019 2 3112 1756 +1356 0xb7c5c39a... BloXroute Max Profit
14212970 0 3068 1712 +1356 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14214204 0 3068 1712 +1356 coinbase 0xb67eaa5e... BloXroute Regulated
14210956 0 3068 1712 +1356 coinbase 0xb67eaa5e... BloXroute Regulated
14213510 2 3111 1756 +1355 coinbase 0xb26f9666... BloXroute Regulated
14210142 1 3089 1734 +1355 p2porg 0xb5a65d00... Ultra Sound
14212408 8 3242 1888 +1354 coinbase 0x88a53ec4... BloXroute Max Profit
14213684 0 3065 1712 +1353 p2porg 0xb26f9666... Titan Relay
14212478 0 3065 1712 +1353 whale_0x8ebd 0xb26f9666... Titan Relay
14215488 5 3174 1822 +1352 whale_0x8ebd 0x856b0004... Ultra Sound
14214519 7 3216 1866 +1350 gateway.fmas_lido 0x8527d16c... Ultra Sound
14213025 2 3106 1756 +1350 coinbase 0xb26f9666... Titan Relay
14210834 0 3062 1712 +1350 kiln 0xb26f9666... BloXroute Regulated
14212852 0 3061 1712 +1349 coinbase 0xb26f9666... BloXroute Regulated
14214165 4 3148 1800 +1348 kiln 0x88a53ec4... BloXroute Regulated
14212659 2 3104 1756 +1348 coinbase 0x856b0004... Ultra Sound
14211755 0 3059 1712 +1347 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14209282 6 3190 1844 +1346 whale_0x8914 0x88a53ec4... BloXroute Max Profit
14210953 1 3080 1734 +1346 coinbase 0xb67eaa5e... Ultra Sound
14215132 0 3058 1712 +1346 coinbase 0xb26f9666... BloXroute Regulated
14213076 6 3189 1844 +1345 whale_0x8ebd 0x8db2a99d... Ultra Sound
14211989 1 3079 1734 +1345 kiln 0x8527d16c... Ultra Sound
14214790 6 3188 1844 +1344 p2porg 0xb67eaa5e... BloXroute Regulated
14209422 0 3055 1712 +1343 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14215449 1 3076 1734 +1342 coinbase 0xb26f9666... Titan Relay
14212850 0 3054 1712 +1342 coinbase 0xb26f9666... Titan Relay
14211761 0 3054 1712 +1342 0x88a53ec4... Aestus
14210837 0 3053 1712 +1341 0x8db2a99d... Flashbots
14210000 1 3074 1734 +1340 blockdaemon 0x8527d16c... Ultra Sound
14212189 5 3161 1822 +1339 gateway.fmas_lido 0x8db2a99d... Ultra Sound
14211479 3 3117 1778 +1339 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14216389 0 3051 1712 +1339 figment 0xa965c911... Ultra Sound
14210857 1 3072 1734 +1338 p2porg 0xb5a65d00... Ultra Sound
14211613 0 3050 1712 +1338 coinbase 0xb26f9666... Titan Relay
14214024 1 3071 1734 +1337 coinbase 0xb67eaa5e... BloXroute Max Profit
14209712 1 3071 1734 +1337 whale_0x8ebd 0xb26f9666... Titan Relay
14213164 1 3071 1734 +1337 p2porg 0x8db2a99d... BloXroute Max Profit
14215403 1 3070 1734 +1336 0xb67eaa5e... BloXroute Regulated
14212286 0 3048 1712 +1336 0x8db2a99d... Flashbots
14209371 4 3135 1800 +1335 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14213407 0 3047 1712 +1335 coinbase 0x9129eeb4... Agnostic Gnosis
14216282 0 3047 1712 +1335 coinbase 0x8527d16c... Ultra Sound
14216346 7 3199 1866 +1333 whale_0x8914 0x8db2a99d... Flashbots
14215443 1 3067 1734 +1333 p2porg 0x8db2a99d... Titan Relay
14214620 0 3045 1712 +1333 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14210958 0 3045 1712 +1333 kiln 0xb67eaa5e... BloXroute Regulated
14210269 0 3045 1712 +1333 coinbase 0xb26f9666... BloXroute Regulated
14209763 0 3045 1712 +1333 p2porg 0x85fb0503... Aestus
14209854 5 3154 1822 +1332 whale_0xedc6 0xb26f9666... BloXroute Max Profit
14211250 1 3066 1734 +1332 kiln 0xb67eaa5e... BloXroute Max Profit
14212741 0 3044 1712 +1332 0xb26f9666... BloXroute Max Profit
14210779 0 3044 1712 +1332 figment 0xb5a65d00... Ultra Sound
14210776 9 3240 1910 +1330 everstake 0x88857150... Ultra Sound
14209881 8 3218 1888 +1330 whale_0x8ebd 0x85fb0503... Ultra Sound
14213279 7 3195 1866 +1329 blockdaemon_lido 0x856b0004... Ultra Sound
14213476 5 3151 1822 +1329 figment 0x853b0078... Ultra Sound
14210692 8 3214 1888 +1326 p2porg 0x853b0078... Titan Relay
14210965 1 3059 1734 +1325 coinbase 0xb67eaa5e... Ultra Sound
14213103 1 3059 1734 +1325 coinbase 0x8db2a99d... Flashbots
14211349 0 3036 1712 +1324 kiln 0xb67eaa5e... BloXroute Regulated
14215451 0 3036 1712 +1324 p2porg 0x9129eeb4... Agnostic Gnosis
14210432 0 3036 1712 +1324 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14209710 0 3035 1712 +1323 coinbase 0x8527d16c... Ultra Sound
14215021 0 3035 1712 +1323 0xb7c5e609... BloXroute Max Profit
14211389 0 3035 1712 +1323 coinbase 0x88a53ec4... BloXroute Regulated
14211994 5 3144 1822 +1322 coinbase 0xb67eaa5e... BloXroute Max Profit
14213884 2 3078 1756 +1322 kiln 0x93b11bec... Flashbots
14211737 1 3056 1734 +1322 coinbase 0xb26f9666... Titan Relay
14209990 1 3056 1734 +1322 coinbase 0x8527d16c... Ultra Sound
14210751 7 3187 1866 +1321 0x88a53ec4... BloXroute Max Profit
14212422 5 3143 1822 +1321 coinbase 0xb26f9666... BloXroute Regulated
14213899 1 3055 1734 +1321 whale_0x8ebd 0x8527d16c... Ultra Sound
14211468 0 3032 1712 +1320 p2porg 0x8527d16c... Ultra Sound
14214379 6 3162 1844 +1318 whale_0x8ebd 0x856b0004... Ultra Sound
14211509 0 3030 1712 +1318 coinbase 0x88857150... Ultra Sound
14211488 5 3139 1822 +1317 nethermind_lido 0x8db2a99d... BloXroute Max Profit
14212110 1 3051 1734 +1317 coinbase 0xb26f9666... BloXroute Regulated
14212485 9 3226 1910 +1316 whale_0xfd67 0x85fb0503... Ultra Sound
14210737 5 3138 1822 +1316 gateway.fmas_lido 0x88857150... Ultra Sound
14213670 4 3116 1800 +1316 p2porg 0x853b0078... BloXroute Regulated
14210309 0 3028 1712 +1316 whale_0x8ebd 0x8db2a99d... Titan Relay
14213294 0 3027 1712 +1315 coinbase 0x88a53ec4... BloXroute Max Profit
14210832 0 3027 1712 +1315 coinbase 0x88857150... Ultra Sound
14216125 6 3158 1844 +1314 whale_0xfd67 0x853b0078... Aestus
14213537 0 3026 1712 +1314 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14214341 0 3026 1712 +1314 coinbase 0xb26f9666... Titan Relay
14209357 0 3024 1712 +1312 kiln 0xb67eaa5e... BloXroute Regulated
14210144 0 3023 1712 +1311 renzo_protocol 0x8527d16c... Ultra Sound
14213625 1 3043 1734 +1309 coinbase 0x8db2a99d... BloXroute Max Profit
14212061 0 3021 1712 +1309 whale_0x8ebd 0x8527d16c... Ultra Sound
14216119 0 3021 1712 +1309 whale_0x8ebd 0x853b0078... BloXroute Max Profit
14211746 0 3020 1712 +1308 0x851b00b1... BloXroute Max Profit
14212077 7 3173 1866 +1307 coinbase 0x8db2a99d... Ultra Sound
14211890 0 3019 1712 +1307 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14212170 10 3238 1932 +1306 whale_0x8914 0xb67eaa5e... Titan Relay
14214814 6 3150 1844 +1306 p2porg 0x857b0038... BloXroute Max Profit
14213369 5 3128 1822 +1306 coinbase 0xb67eaa5e... BloXroute Max Profit
Total anomalies: 343

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