Sat, Mar 7, 2026

Propagation anomalies - 2026-03-07

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-07' AND slot_start_date_time < '2026-03-07'::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-07' AND slot_start_date_time < '2026-03-07'::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-07' AND slot_start_date_time < '2026-03-07'::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-07' AND slot_start_date_time < '2026-03-07'::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-07' AND slot_start_date_time < '2026-03-07'::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-07' AND slot_start_date_time < '2026-03-07'::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-07' AND slot_start_date_time < '2026-03-07'::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-07' AND slot_start_date_time < '2026-03-07'::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,176
MEV blocks: 6,645 (92.6%)
Local blocks: 531 (7.4%)

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 = 1761.2 + 14.41 × blob_count (R² = 0.006)
Residual σ = 660.9ms
Anomalies (>2σ slow): 328 (4.6%)
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
13839071 0 16569 1761 +14808 solo_stakers Local Local
13836481 0 7304 1761 +5543 consensyscodefi_lido Local Local
13840256 0 5899 1761 +4138 upbit Local Local
13838752 9 4766 1891 +2875 upbit Local Local
13835200 5 4519 1833 +2686 upbit Local Local
13839264 0 4433 1761 +2672 upbit Local Local
13838081 0 4401 1761 +2640 everstake Local Local
13839198 0 4202 1761 +2441 stakefish Local Local
13836521 0 4178 1761 +2417 ether.fi Local Local
13835008 0 4146 1761 +2385 upbit Local Local
13836393 0 4132 1761 +2371 whale_0x8ebd Local Local
13835456 0 4107 1761 +2346 coinbase Local Local
13836480 0 4107 1761 +2346 luno 0xb26f9666... Titan Relay
13836768 0 4096 1761 +2335 blockdaemon 0xb26f9666... Titan Relay
13837555 0 4050 1761 +2289 whale_0x8ebd 0x8527d16c... Ultra Sound
13840064 0 4014 1761 +2253 nethermind_lido Local Local
13836928 1 4002 1776 +2226 bitstamp 0x855b00e6... BloXroute Max Profit
13836892 0 3968 1761 +2207 luno Local Local
13837627 0 3960 1761 +2199 kraken Local Local
13836288 0 3948 1761 +2187 whale_0x8e69 0x853b0078... BloXroute Max Profit
13836792 0 3929 1761 +2168 everstake Local Local
13835003 0 3908 1761 +2147 stakefish Local Local
13836640 0 3889 1761 +2128 coinbase Local Local
13836544 0 3876 1761 +2115 nethermind_lido 0x8db2a99d... Ultra Sound
13837661 0 3817 1761 +2056 whale_0x8ebd 0x8527d16c... Ultra Sound
13835123 0 3793 1761 +2032 coinbase 0x88a53ec4... Aestus
13837849 8 3895 1876 +2019 0xb26f9666... Titan Relay
13836473 1 3794 1776 +2018 everstake 0xb26f9666... Titan Relay
13836680 0 3737 1761 +1976 revolut 0xb26f9666... Titan Relay
13837102 16 3956 1992 +1964 blockdaemon 0x857b0038... Ultra Sound
13836478 1 3739 1776 +1963 blockdaemon_lido 0xb26f9666... Titan Relay
13839904 5 3789 1833 +1956 stakefish 0x8527d16c... Ultra Sound
13836927 6 3801 1848 +1953 0x8a850621... Ultra Sound
13837869 5 3775 1833 +1942 blockdaemon_lido 0xb67eaa5e... Titan Relay
13837635 1 3708 1776 +1932 whale_0x8ebd 0x850b00e0... Flashbots
13838020 0 3691 1761 +1930 kraken 0xb26f9666... Titan Relay
13836606 1 3697 1776 +1921 kraken 0xb26f9666... EthGas
13837090 5 3738 1833 +1905 everstake 0x856b0004... Aestus
13836891 13 3852 1948 +1904 whale_0x8ebd 0x856b0004... BloXroute Max Profit
13836937 0 3664 1761 +1903 whale_0x8ebd 0xb26f9666... Titan Relay
13839365 1 3674 1776 +1898 stakefish Local Local
13835019 8 3765 1876 +1889 nethermind_lido 0xb26f9666... Titan Relay
13836620 8 3750 1876 +1874 kraken 0xb26f9666... EthGas
13836889 0 3633 1761 +1872 everstake Local Local
13836683 0 3632 1761 +1871 blockdaemon 0xb4ce6162... Ultra Sound
13836762 0 3622 1761 +1861 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13836727 6 3705 1848 +1857 whale_0x8ebd 0x88857150... Ultra Sound
13838259 6 3705 1848 +1857 nethermind_lido 0x850b00e0... BloXroute Max Profit
13837157 5 3664 1833 +1831 whale_0x8ebd Local Local
13837137 3 3633 1804 +1829 everstake 0xb26f9666... Titan Relay
13838121 2 3618 1790 +1828 everstake 0x856b0004... BloXroute Max Profit
13837202 5 3648 1833 +1815 blockdaemon 0xb26f9666... Titan Relay
13837625 6 3652 1848 +1804 ether.fi 0xb26f9666... EthGas
13836599 0 3562 1761 +1801 coinbase 0x8db2a99d... Aestus
13838632 2 3573 1790 +1783 stakefish Local Local
13836607 10 3683 1905 +1778 nethermind_lido 0x88a53ec4... BloXroute Max Profit
13836462 1 3549 1776 +1773 everstake 0x8527d16c... Ultra Sound
13836597 1 3539 1776 +1763 solo_stakers 0x8527d16c... Ultra Sound
13838108 1 3532 1776 +1756 stakefish Local Local
13837648 7 3615 1862 +1753 everstake 0x853b0078... Agnostic Gnosis
13837183 5 3581 1833 +1748 nethermind_lido 0x855b00e6... BloXroute Max Profit
13836717 3 3551 1804 +1747 blockdaemon_lido 0x88857150... Ultra Sound
13839754 3 3546 1804 +1742 nethermind_lido 0x88a53ec4... BloXroute Max Profit
13837335 1 3517 1776 +1741 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13836432 9 3632 1891 +1741 blockdaemon_lido 0xb4ce6162... Ultra Sound
13838598 4 3559 1819 +1740 whale_0x8ebd 0x8527d16c... Ultra Sound
13838067 0 3495 1761 +1734 staked.us 0xb26f9666... Titan Relay
13835253 0 3492 1761 +1731 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
13836894 8 3603 1876 +1727 kiln 0xb26f9666... Titan Relay
13841856 1 3502 1776 +1726 blockdaemon 0x88857150... Ultra Sound
13841879 10 3629 1905 +1724 stakefish Local Local
13840958 1 3480 1776 +1704 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
13836819 5 3534 1833 +1701 stader 0x88a53ec4... BloXroute Regulated
13834885 0 3461 1761 +1700 nethermind_lido 0x8db2a99d... Ultra Sound
13837870 6 3544 1848 +1696 ether.fi 0xb26f9666... Titan Relay
13839633 7 3557 1862 +1695 stakefish Local Local
13839176 6 3542 1848 +1694 stakefish Local Local
13837610 8 3570 1876 +1694 stakingfacilities_lido 0xb26f9666... Titan Relay
13838496 0 3454 1761 +1693 blockdaemon 0xb26f9666... Titan Relay
13838348 5 3523 1833 +1690 whale_0x8ebd 0x857b0038... Ultra Sound
13838343 5 3515 1833 +1682 nethermind_lido 0x850b00e0... Flashbots
13840799 5 3511 1833 +1678 whale_0x8ebd 0xb4ce6162... Ultra Sound
13839648 3 3473 1804 +1669 blockdaemon 0x8a850621... Titan Relay
13839812 6 3515 1848 +1667 blockdaemon 0xb4ce6162... Ultra Sound
13837812 12 3598 1934 +1664 nethermind_lido 0x88a53ec4... BloXroute Max Profit
13838480 0 3424 1761 +1663 nethermind_lido 0xb26f9666... Titan Relay
13835936 11 3578 1920 +1658 blockdaemon_lido 0x8527d16c... Ultra Sound
13839527 1 3433 1776 +1657 lido 0x853b0078... BloXroute Max Profit
13840045 6 3505 1848 +1657 blockdaemon_lido 0x8527d16c... Ultra Sound
13836303 11 3577 1920 +1657 whale_0x8ebd 0x823e0146... Flashbots
13837120 3 3457 1804 +1653 stakingfacilities_lido 0x88a53ec4... BloXroute Max Profit
13841202 8 3529 1876 +1653 whale_0xad1d Local Local
13841314 9 3530 1891 +1639 nethermind_lido 0x856b0004... BloXroute Max Profit
13837189 5 3469 1833 +1636 whale_0x8ebd 0x8a850621... Titan Relay
13841038 5 3463 1833 +1630 stakefish Local Local
13841538 0 3388 1761 +1627 whale_0x8ebd 0x8db2a99d... Ultra Sound
13838105 4 3444 1819 +1625 whale_0x8ebd 0xb4ce6162... Ultra Sound
13836885 9 3516 1891 +1625 nethermind_lido 0x850b00e0... BloXroute Max Profit
13837626 0 3384 1761 +1623 blockdaemon 0x853b0078... Ultra Sound
13836975 1 3395 1776 +1619 ether.fi 0x823e0146... Flashbots
13836780 9 3501 1891 +1610 whale_0x7791 0xb26f9666... Titan Relay
13836617 0 3367 1761 +1606 everstake 0x8db2a99d... BloXroute Max Profit
13839145 0 3361 1761 +1600 whale_0x8ebd 0x8a850621... Titan Relay
13838831 6 3447 1848 +1599 stakefish Local Local
13840160 0 3360 1761 +1599 nethermind_lido 0x88a53ec4... BloXroute Max Profit
13834848 5 3432 1833 +1599 bitstamp 0x88a53ec4... BloXroute Max Profit
13836090 3 3399 1804 +1595 everstake 0x853b0078... BloXroute Max Profit
13838035 10 3498 1905 +1593 blockdaemon 0x8527d16c... Ultra Sound
13838266 0 3353 1761 +1592 everstake 0x853b0078... Agnostic Gnosis
13835250 1 3367 1776 +1591 whale_0x8ebd 0xac23f8cc... Ultra Sound
13836136 5 3424 1833 +1591 nethermind_lido 0xb26f9666... Titan Relay
13834942 0 3351 1761 +1590 blockdaemon_lido 0xb26f9666... Titan Relay
13836289 0 3348 1761 +1587 gateway.fmas_lido 0x852b0070... BloXroute Max Profit
13837338 0 3342 1761 +1581 0x8a850621... Titan Relay
13841346 0 3342 1761 +1581 blockdaemon 0xb67eaa5e... BloXroute Max Profit
13837198 5 3413 1833 +1580 p2porg 0xb26f9666... Titan Relay
13840296 10 3485 1905 +1580 nethermind_lido 0x850b00e0... BloXroute Max Profit
13840626 6 3426 1848 +1578 coinbase 0x91b123d8... Aestus
13835532 3 3377 1804 +1573 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13835934 9 3463 1891 +1572 whale_0x8ebd 0x8a850621... Titan Relay
13835468 5 3402 1833 +1569 everstake 0x853b0078... BloXroute Regulated
13839420 5 3398 1833 +1565 stakefish Local Local
13840832 3 3363 1804 +1559 bitstamp 0x856b0004... BloXroute Max Profit
13836608 0 3316 1761 +1555 abyss_finance 0x83cae7e5... Titan Relay
13841689 1 3328 1776 +1552 luno 0xb26f9666... Titan Relay
13840502 0 3312 1761 +1551 blockdaemon 0xb67eaa5e... BloXroute Regulated
13841206 3 3355 1804 +1551 whale_0x8ebd 0xb4ce6162... Ultra Sound
13838409 2 3340 1790 +1550 blockdaemon 0xb26f9666... Titan Relay
13838900 0 3309 1761 +1548 luno 0xb26f9666... Titan Relay
13840086 6 3395 1848 +1547 blockdaemon 0xb26f9666... Titan Relay
13837406 5 3380 1833 +1547 everstake 0x8527d16c... Ultra Sound
13841924 5 3378 1833 +1545 blockdaemon_lido 0x853b0078... Ultra Sound
13840897 3 3342 1804 +1538 blockdaemon 0x855b00e6... BloXroute Max Profit
13836542 2 3327 1790 +1537 luno 0x8527d16c... Ultra Sound
13840372 0 3296 1761 +1535 whale_0x8ebd 0x8527d16c... Ultra Sound
13837243 0 3295 1761 +1534 whale_0x8ebd 0x8527d16c... Ultra Sound
13839799 5 3367 1833 +1534 ether.fi 0x853b0078... Agnostic Gnosis
13837839 1 3309 1776 +1533 kiln 0xb26f9666... Titan Relay
13838532 6 3381 1848 +1533 blockdaemon_lido 0x8527d16c... Ultra Sound
13838355 6 3381 1848 +1533 whale_0xdc8d 0x88510a78... BloXroute Regulated
13836871 3 3337 1804 +1533 blockdaemon 0x850b00e0... BloXroute Regulated
13839203 7 3394 1862 +1532 whale_0x8ebd 0x8527d16c... Ultra Sound
13835255 5 3364 1833 +1531 whale_0x8ebd 0x8db2a99d... Ultra Sound
13838265 5 3361 1833 +1528 everstake 0x856b0004... BloXroute Max Profit
13837895 3 3331 1804 +1527 blockdaemon 0x8a850621... Titan Relay
13841556 4 3345 1819 +1526 luno 0x88a53ec4... BloXroute Regulated
13835463 0 3287 1761 +1526 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
13835534 6 3373 1848 +1525 blockdaemon_lido 0x88a53ec4... BloXroute Regulated
13841373 6 3373 1848 +1525 stakefish Local Local
13834932 0 3285 1761 +1524 stakefish Local Local
13835865 7 3384 1862 +1522 blockdaemon 0xb7c5fbdd... BloXroute Max Profit
13840234 5 3355 1833 +1522 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13834979 5 3353 1833 +1520 stakefish Local Local
13837265 3 3322 1804 +1518 luno 0x850b00e0... BloXroute Regulated
13837899 6 3363 1848 +1515 everstake 0x853b0078... BloXroute Regulated
13836993 9 3403 1891 +1512 blockdaemon 0x8a850621... Titan Relay
13838692 6 3358 1848 +1510 whale_0xdc8d 0x850b00e0... BloXroute Regulated
13834969 10 3413 1905 +1508 blockdaemon_lido 0x88a53ec4... BloXroute Regulated
13839579 2 3297 1790 +1507 nethermind_lido 0xb26f9666... Titan Relay
13839680 0 3267 1761 +1506 everstake 0xac23f8cc... Aestus
13836434 0 3267 1761 +1506 kraken 0xb26f9666... EthGas
13837128 11 3423 1920 +1503 0xb67eaa5e... BloXroute Regulated
13835266 4 3322 1819 +1503 stakefish Local Local
13840150 5 3336 1833 +1503 blockdaemon 0xb4ce6162... Ultra Sound
13836258 0 3263 1761 +1502 solo_stakers 0x852b0070... Agnostic Gnosis
13838530 7 3361 1862 +1499 whale_0x8ebd 0x8527d16c... Ultra Sound
13835054 5 3332 1833 +1499 nethermind_lido 0x8527d16c... Ultra Sound
13841425 3 3303 1804 +1499 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
13836774 6 3346 1848 +1498 bitstamp 0xb67eaa5e... BloXroute Regulated
13839826 0 3259 1761 +1498 stakefish Local Local
13839697 0 3259 1761 +1498 blockdaemon_lido 0x855b00e6... Ultra Sound
13837880 0 3256 1761 +1495 ether.fi 0x8a850621... EthGas
13837487 1 3269 1776 +1493 revolut 0xb26f9666... Titan Relay
13838551 0 3253 1761 +1492 kiln 0x8db2a99d... Aestus
13841121 0 3252 1761 +1491 whale_0x8ebd 0x8a850621... Titan Relay
13835886 6 3337 1848 +1489 stakefish Local Local
13836314 3 3293 1804 +1489 0x850b00e0... BloXroute Regulated
13836062 0 3248 1761 +1487 solo_stakers 0x8db2a99d... Aestus
13836410 1 3261 1776 +1485 blockdaemon_lido 0x88857150... Ultra Sound
13839289 1 3260 1776 +1484 blockdaemon 0xb67eaa5e... BloXroute Regulated
13836180 0 3241 1761 +1480 blockdaemon_lido 0x8527d16c... Ultra Sound
13841071 6 3327 1848 +1479 p2porg 0xb67eaa5e... BloXroute Regulated
13839017 4 3297 1819 +1478 revolut 0xb26f9666... Titan Relay
13838548 0 3236 1761 +1475 0xb67eaa5e... BloXroute Regulated
13839892 0 3236 1761 +1475 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13840516 5 3307 1833 +1474 blockdaemon 0xb4ce6162... Ultra Sound
13837682 0 3232 1761 +1471 everstake 0x8527d16c... Ultra Sound
13838474 0 3232 1761 +1471 stakefish Local Local
13840166 1 3246 1776 +1470 whale_0x8ebd 0x8db2a99d... Flashbots
13839129 3 3274 1804 +1470 blockdaemon_lido 0x853b0078... Ultra Sound
13835605 0 3229 1761 +1468 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13837515 3 3272 1804 +1468 everstake 0xb26f9666... Titan Relay
13835221 1 3243 1776 +1467 revolut 0x853b0078... Ultra Sound
13840216 6 3314 1848 +1466 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13838935 6 3313 1848 +1465 blockdaemon 0xb26f9666... Titan Relay
13835606 0 3225 1761 +1464 blockdaemon 0x8527d16c... Ultra Sound
13835110 11 3383 1920 +1463 revolut 0xb67eaa5e... BloXroute Regulated
13836962 6 3309 1848 +1461 kraken 0xb26f9666... Titan Relay
13837948 4 3279 1819 +1460 everstake 0xb26f9666... Titan Relay
13839462 0 3220 1761 +1459 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13835983 1 3234 1776 +1458 blockdaemon_lido 0x82c466b9... Ultra Sound
13839035 6 3306 1848 +1458 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13837153 12 3392 1934 +1458 stakingfacilities_lido 0x850b00e0... BloXroute Max Profit
13837444 3 3262 1804 +1458 whale_0x8ebd 0x88a53ec4... Aestus
13835256 0 3214 1761 +1453 whale_0x8ebd 0x85fb0503... BloXroute Max Profit
13840138 7 3314 1862 +1452 blockdaemon 0x853b0078... Ultra Sound
13837119 10 3357 1905 +1452 stakingfacilities_lido 0x88a53ec4... BloXroute Max Profit
13836666 0 3211 1761 +1450 whale_0x8ebd 0x8527d16c... Ultra Sound
13839829 8 3324 1876 +1448 blockdaemon_lido 0xb4ce6162... Ultra Sound
13836787 1 3223 1776 +1447 ether.fi 0xb26f9666... EthGas
13835157 1 3222 1776 +1446 everstake 0x85fb0503... BloXroute Max Profit
13835121 8 3321 1876 +1445 luno 0x853b0078... BloXroute Regulated
13836702 10 3347 1905 +1442 kraken 0xb26f9666... Titan Relay
13837949 3 3246 1804 +1442 whale_0xdc8d 0x850b00e0... BloXroute Max Profit
13839512 9 3332 1891 +1441 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
13836923 0 3200 1761 +1439 whale_0xdc8d 0x853b0078... BloXroute Regulated
13835671 13 3387 1948 +1439 0x855b00e6... BloXroute Max Profit
13841448 5 3271 1833 +1438 p2porg 0x850b00e0... BloXroute Regulated
13838138 5 3268 1833 +1435 kiln 0xb67eaa5e... Aestus
13835720 6 3282 1848 +1434 revolut 0xb26f9666... Titan Relay
13836782 1 3209 1776 +1433 ether.fi 0xb26f9666... Titan Relay
13838504 10 3338 1905 +1433 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13836788 9 3319 1891 +1428 p2porg 0x850b00e0... BloXroute Regulated
13836145 0 3188 1761 +1427 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13837609 5 3260 1833 +1427 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13838116 3 3231 1804 +1427 everstake 0xb26f9666... Titan Relay
13838866 1 3201 1776 +1425 everstake 0xb26f9666... Aestus
13837886 2 3214 1790 +1424 everstake 0xac23f8cc... Flashbots
13840913 1 3199 1776 +1423 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
13839989 0 3183 1761 +1422 blockdaemon_lido 0xb26f9666... Titan Relay
13836340 13 3368 1948 +1420 revolut 0x853b0078... BloXroute Regulated
13836854 19 3454 2035 +1419 0xb4ce6162... Ultra Sound
13840347 2 3204 1790 +1414 blockdaemon_lido 0xac23f8cc... Ultra Sound
13836286 0 3175 1761 +1414 everstake 0x8527d16c... Ultra Sound
13836935 4 3231 1819 +1412 upbit 0x8a850621... Titan Relay
13835013 5 3245 1833 +1412 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
13835779 0 3171 1761 +1410 stakingfacilities_lido 0xb67eaa5e... BloXroute Max Profit
13836941 0 3170 1761 +1409 kraken 0x82c466b9... EthGas
13837019 6 3256 1848 +1408 blockdaemon_lido 0xb26f9666... Titan Relay
13838023 5 3241 1833 +1408 whale_0x8ebd 0x8527d16c... Ultra Sound
13840090 8 3282 1876 +1406 whale_0x8ebd 0xac23f8cc... BloXroute Max Profit
13838169 11 3325 1920 +1405 0x8527d16c... Ultra Sound
13837336 1 3180 1776 +1404 0xb26f9666... EthGas
13840823 6 3248 1848 +1400 nethermind_lido 0xb67eaa5e... BloXroute Regulated
13836967 5 3232 1833 +1399 bitstamp 0x853b0078... BloXroute Max Profit
13836821 3 3202 1804 +1398 upbit 0xb4ce6162... Ultra Sound
13839193 9 3288 1891 +1397 0x850b00e0... BloXroute Regulated
13837646 0 3158 1761 +1397 kiln 0xb26f9666... Aestus
13835753 10 3300 1905 +1395 blockdaemon 0xb26f9666... Titan Relay
13837161 3 3197 1804 +1393 p2porg 0x850b00e0... BloXroute Regulated
13840660 13 3340 1948 +1392 p2porg 0x850b00e0... BloXroute Regulated
13838824 5 3223 1833 +1390 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13837762 7 3251 1862 +1389 0x88a53ec4... BloXroute Max Profit
13835176 8 3265 1876 +1389 everstake 0x8527d16c... Ultra Sound
13840466 1 3164 1776 +1388 nethermind_lido 0x823e0146... BloXroute Max Profit
13835277 1 3164 1776 +1388 blockdaemon 0x88a53ec4... BloXroute Max Profit
13841309 5 3220 1833 +1387 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13841596 5 3219 1833 +1386 figment 0x823e0146... Ultra Sound
13835331 5 3219 1833 +1386 kiln 0x88a53ec4... BloXroute Max Profit
13839936 10 3291 1905 +1386 0xb26f9666... BloXroute Max Profit
13838030 1 3159 1776 +1383 kraken 0xb26f9666... EthGas
13835636 11 3300 1920 +1380 whale_0xdc8d 0x855b00e6... BloXroute Max Profit
13836624 0 3140 1761 +1379 whale_0x8713 0x850b00e0... BloXroute Max Profit
13835876 4 3196 1819 +1377 whale_0x8ebd 0x8a850621... Titan Relay
13835340 0 3138 1761 +1377 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
13839109 6 3224 1848 +1376 blockdaemon 0x823e0146... BloXroute Max Profit
13840033 0 3136 1761 +1375 blockdaemon_lido 0x8527d16c... Ultra Sound
13837315 10 3280 1905 +1375 everstake 0x853b0078... BloXroute Max Profit
13837179 0 3135 1761 +1374 stakingfacilities_lido 0xb67eaa5e... BloXroute Max Profit
13836318 8 3250 1876 +1374 blockdaemon 0xb4ce6162... Ultra Sound
13839879 0 3134 1761 +1373 figment 0x852b0070... Ultra Sound
13837672 10 3277 1905 +1372 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13836804 0 3131 1761 +1370 everstake 0x8527d16c... Ultra Sound
13839493 3 3173 1804 +1369 gateway.fmas_lido 0x8527d16c... Ultra Sound
13841730 1 3144 1776 +1368 whale_0x8ebd 0x8527d16c... Ultra Sound
13841926 7 3230 1862 +1368 stakefish_lido 0x853b0078... BloXroute Regulated
13840021 0 3129 1761 +1368 p2porg 0x88510a78... BloXroute Regulated
13841257 6 3214 1848 +1366 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13837671 0 3127 1761 +1366 whale_0x8ebd 0x83bee517... Flashbots
13840543 10 3271 1905 +1366 blockdaemon_lido 0xb26f9666... Titan Relay
13836705 7 3226 1862 +1364 blockdaemon_lido 0x853b0078... Ultra Sound
13840706 0 3122 1761 +1361 stader 0x88857150... Ultra Sound
13836867 5 3194 1833 +1361 stakingfacilities_lido 0x855b00e6... BloXroute Max Profit
13841900 0 3121 1761 +1360 gateway.fmas_lido 0x8527d16c... Ultra Sound
13841601 0 3119 1761 +1358 p2porg 0xb26f9666... Titan Relay
13841045 0 3119 1761 +1358 blockdaemon_lido 0xb26f9666... Titan Relay
13839510 0 3118 1761 +1357 blockdaemon_lido 0xba003e46... BloXroute Regulated
13836458 0 3117 1761 +1356 blockdaemon 0x853b0078... BloXroute Max Profit
13836307 4 3174 1819 +1355 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
13837021 0 3114 1761 +1353 everstake 0xb26f9666... Titan Relay
13838264 7 3214 1862 +1352 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13838950 0 3112 1761 +1351 gateway.fmas_lido 0xb4ce6162... Ultra Sound
13839022 7 3212 1862 +1350 bitstamp 0x88857150... Ultra Sound
13834868 0 3111 1761 +1350 everstake 0xb26f9666... Titan Relay
13834941 5 3181 1833 +1348 everstake 0xb26f9666... Titan Relay
13837495 1 3123 1776 +1347 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13837840 0 3108 1761 +1347 p2porg 0x88510a78... BloXroute Regulated
13838089 4 3164 1819 +1345 stakingfacilities_lido 0x88a53ec4... BloXroute Max Profit
13838059 0 3105 1761 +1344 ether.fi 0xb67eaa5e... EthGas
13836080 1 3119 1776 +1343 ether.fi 0x8527d16c... Ultra Sound
13836920 10 3248 1905 +1343 kiln 0x8db2a99d... Aestus
13838191 1 3118 1776 +1342 figment 0x855b00e6... BloXroute Max Profit
13841462 1 3118 1776 +1342 figment 0x823e0146... BloXroute Max Profit
13838351 6 3190 1848 +1342 whale_0x8ebd 0x93b11bec... Flashbots
13840371 8 3217 1876 +1341 whale_0x8ebd 0xb4ce6162... Ultra Sound
13840746 7 3202 1862 +1340 blockdaemon_lido 0x850b00e0... BloXroute Regulated
13836552 1 3115 1776 +1339 p2porg 0x856b0004... Agnostic Gnosis
13839069 6 3187 1848 +1339 whale_0x8ebd 0x93b11bec... Flashbots
13835631 1 3113 1776 +1337 p2porg 0x82c466b9... BloXroute Regulated
13838839 6 3185 1848 +1337 whale_0x8ebd 0xb7c5e609... BloXroute Max Profit
13835862 6 3184 1848 +1336 blockdaemon_lido 0xb7c5fbdd... BloXroute Max Profit
13838873 4 3152 1819 +1333 p2porg 0x850b00e0... BloXroute Regulated
13840779 5 3166 1833 +1333 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
13835490 5 3165 1833 +1332 figment 0x853b0078... Ultra Sound
13841453 3 3136 1804 +1332 everstake 0x856b0004... Agnostic Gnosis
13841479 1 3106 1776 +1330 ether.fi 0x8db2a99d... Flashbots
13835363 11 3250 1920 +1330 p2porg 0x88a53ec4... BloXroute Regulated
13838018 5 3163 1833 +1330 p2porg 0x8527d16c... Ultra Sound
13840756 0 3090 1761 +1329 p2porg 0xb26f9666... BloXroute Max Profit
13835352 5 3161 1833 +1328 everstake 0xb26f9666... Titan Relay
13837115 1 3103 1776 +1327 solo_stakers Local Local
13838268 0 3088 1761 +1327 ether.fi 0xb26f9666... Titan Relay
13837333 0 3087 1761 +1326 bitstamp 0x851b00b1... BloXroute Max Profit
13837541 0 3086 1761 +1325 everstake 0x8527d16c... Ultra Sound
13836292 0 3085 1761 +1324 ether.fi 0x88857150... Ultra Sound
13834957 5 3157 1833 +1324 bitstamp 0x88a53ec4... BloXroute Regulated
13840235 1 3099 1776 +1323 kiln 0xb26f9666... Aestus
13840586 1 3098 1776 +1322 p2porg 0x850b00e0... BloXroute Regulated
Total anomalies: 328

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