Tue, Feb 17, 2026

Propagation anomalies - 2026-02-17

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

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

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

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

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

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

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

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

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

-- Column arrival timing: first arrival per column, then min/max of those
column_gossip AS (
    SELECT
        slot,
        min(first_seen) AS first_column_first_seen,
        max(first_seen) AS last_column_first_seen
    FROM (
        SELECT
            slot,
            column_index,
            min(event_date_time) AS first_seen
        FROM libp2p_gossipsub_data_column_sidecar
        WHERE meta_network_name = 'mainnet'
          AND slot_start_date_time >= '2026-02-17' AND slot_start_date_time < '2026-02-17'::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,182
MEV blocks: 6,689 (93.1%)
Local blocks: 493 (6.9%)

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 = 1726.5 + 18.45 × blob_count (R² = 0.013)
Residual σ = 645.6ms
Anomalies (>2σ slow): 361 (5.0%)
Show code
# Create scatter plot with regression band
x_range = np.array([0, int(max_blobs)])
y_pred = intercept + slope * x_range
y_upper = y_pred + 2 * residual_std
y_lower = y_pred - 2 * residual_std

fig = go.Figure()

# Add ±2σ band
fig.add_trace(go.Scatter(
    x=np.concatenate([x_range, x_range[::-1]]),
    y=np.concatenate([y_upper, y_lower[::-1]]),
    fill="toself",
    fillcolor="rgba(100,100,100,0.2)",
    line=dict(width=0),
    name="±2σ band",
    hoverinfo="skip",
))

# Add regression line
fig.add_trace(go.Scatter(
    x=x_range,
    y=y_pred,
    mode="lines",
    line=dict(color="white", width=2, dash="dash"),
    name="Expected",
))

# Normal points (sample to avoid overplotting)
df_normal = df_anomaly[~df_anomaly["is_anomaly"]]
if len(df_normal) > 2000:
    df_normal = df_normal.sample(2000, random_state=42)

fig.add_trace(go.Scatter(
    x=df_normal["blob_count"],
    y=df_normal["block_first_seen_ms"],
    mode="markers",
    marker=dict(size=4, color="rgba(100,150,200,0.4)"),
    name=f"Normal ({len(df_anomaly) - n_anomalies:,})",
    hoverinfo="skip",
))

# Anomaly points
fig.add_trace(go.Scatter(
    x=df_outliers["blob_count"],
    y=df_outliers["block_first_seen_ms"],
    mode="markers",
    marker=dict(
        size=7,
        color="#e74c3c",
        line=dict(width=1, color="white"),
    ),
    name=f"Anomalies ({n_anomalies:,})",
    customdata=np.column_stack([
        df_outliers["slot"],
        df_outliers["residual_ms"].round(0),
        df_outliers["relay"],
    ]),
    hovertemplate="<b>Slot %{customdata[0]}</b><br>Blobs: %{x}<br>Actual: %{y:.0f}ms<br>+%{customdata[1]}ms vs expected<br>Relay: %{customdata[2]}<extra></extra>",
))

fig.update_layout(
    margin=dict(l=60, r=30, t=30, b=60),
    xaxis=dict(title="Blob count", range=[-0.5, int(max_blobs) + 0.5]),
    yaxis=dict(title="Block first seen (ms from slot start)"),
    legend=dict(orientation="h", yanchor="bottom", y=1.02, xanchor="right", x=1),
    height=500,
)
fig.show(config={"responsive": True})

All propagation anomalies

Blocks that propagated much slower than expected given their blob count, sorted by residual (worst first).

Show code
# All anomalies table with selectable text and Lab links
if n_anomalies > 0:
    df_table = df_outliers.sort_values("residual_ms", ascending=False)[
        ["slot", "blob_count", "block_first_seen_ms", "expected_ms", "residual_ms", "proposer", "builder", "relay"]
    ].copy()
    df_table["block_first_seen_ms"] = df_table["block_first_seen_ms"].round(0).astype(int)
    df_table["expected_ms"] = df_table["expected_ms"].round(0).astype(int)
    df_table["residual_ms"] = df_table["residual_ms"].round(0).astype(int)
    
    # Build HTML table
    html = '''
    <style>
    .anomaly-table { border-collapse: collapse; width: 100%; font-family: monospace; font-size: 13px; }
    .anomaly-table th { background: #2c3e50; color: white; padding: 8px 12px; text-align: left; position: sticky; top: 0; }
    .anomaly-table td { padding: 6px 12px; border-bottom: 1px solid #eee; }
    .anomaly-table tr:hover { background: #f5f5f5; }
    .anomaly-table .num { text-align: right; }
    .anomaly-table .delta { background: #ffebee; color: #c62828; font-weight: bold; }
    .anomaly-table a { color: #1976d2; text-decoration: none; }
    .anomaly-table a:hover { text-decoration: underline; }
    .table-container { max-height: 600px; overflow-y: auto; }
    </style>
    <div class="table-container">
    <table class="anomaly-table">
    <thead>
    <tr><th>Slot</th><th class="num">Blobs</th><th class="num">Actual (ms)</th><th class="num">Expected (ms)</th><th class="num">Δ (ms)</th><th>Proposer</th><th>Builder</th><th>Relay</th></tr>
    </thead>
    <tbody>
    '''
    
    for _, row in df_table.iterrows():
        slot_link = f'<a href="https://lab.ethpandaops.io/ethereum/slots/{row["slot"]}" target="_blank">{row["slot"]}</a>'
        html += f'''<tr>
            <td>{slot_link}</td>
            <td class="num">{row["blob_count"]}</td>
            <td class="num">{row["block_first_seen_ms"]}</td>
            <td class="num">{row["expected_ms"]}</td>
            <td class="num delta">+{row["residual_ms"]}</td>
            <td>{row["proposer"]}</td>
            <td>{row["builder"]}</td>
            <td>{row["relay"]}</td>
        </tr>'''
    
    html += '</tbody></table></div>'
    display(HTML(html))
    print(f"\nTotal anomalies: {len(df_table):,}")
else:
    print("No anomalies detected.")
SlotBlobsActual (ms)Expected (ms)Δ (ms)ProposerBuilderRelay
13709434 0 6341 1727 +4614 csm_operator162_lido Local Local
13710624 0 6252 1727 +4525 abyss_finance Local Local
13707296 0 5512 1727 +3785 abyss_finance Local Local
13710912 5 4628 1819 +2809 upbit Local Local
13709984 0 4381 1727 +2654 upbit Local Local
13709152 0 4166 1727 +2439 nethermind_lido Local Local
13706365 0 4071 1727 +2344 solo_stakers Local Local
13709770 0 4046 1727 +2319 everstake Local Local
13707200 0 4026 1727 +2299 everstake_lido Local Local
13706848 0 3946 1727 +2219 blockdaemon_lido Local Local
13710866 0 3852 1727 +2125 nethermind_lido Local Local
13705697 3 3831 1782 +2049 nethermind_lido 0xa230e2cf... BloXroute Max Profit
13709914 4 3830 1800 +2030 nethermind_lido 0x856b0004... Aestus
13711075 1 3752 1745 +2007 csm_operator171_lido 0x8db2a99d... Aestus
13710664 3 3783 1782 +2001 whale_0xdd6c 0xb26f9666... Titan Relay
13711360 0 3699 1727 +1972 blockdaemon_lido Local Local
13707744 8 3832 1874 +1958 blockdaemon_lido 0xb67eaa5e... Titan Relay
13710087 10 3811 1911 +1900 nethermind_lido 0xb26f9666... Titan Relay
13710150 0 3552 1727 +1825 0x8527d16c... Ultra Sound
13708075 8 3690 1874 +1816 0xb67eaa5e... Titan Relay
13709449 12 3750 1948 +1802 blockdaemon 0x8a850621... Titan Relay
13712001 5 3620 1819 +1801 0x8527d16c... Ultra Sound
13708544 9 3693 1893 +1800 solo_stakers 0x8527d16c... Ultra Sound
13712026 6 3634 1837 +1797 whale_0xdc8d 0x88510a78... BloXroute Regulated
13709500 8 3662 1874 +1788 everstake 0xb26f9666... Titan Relay
13710855 2 3542 1763 +1779 0xb4ce6162... Ultra Sound
13707814 3 3560 1782 +1778 blockdaemon 0xb26f9666... Titan Relay
13706996 5 3595 1819 +1776 0x850b00e0... BloXroute Regulated
13707110 4 3563 1800 +1763 0x8527d16c... Ultra Sound
13705320 8 3636 1874 +1762 0x82c466b9... BloXroute Regulated
13710014 1 3505 1745 +1760 everstake 0x88a53ec4... BloXroute Regulated
13712293 7 3613 1856 +1757 blockdaemon 0x8527d16c... Ultra Sound
13705265 3 3529 1782 +1747 revolut 0x8527d16c... Ultra Sound
13705772 10 3658 1911 +1747 0x88857150... Ultra Sound
13707113 8 3609 1874 +1735 whale_0xdc8d 0xb26f9666... Titan Relay
13710320 8 3603 1874 +1729 revolut 0xb26f9666... Titan Relay
13706646 5 3547 1819 +1728 figment 0x88a53ec4... BloXroute Regulated
13712284 1 3467 1745 +1722 everstake 0xb26f9666... Titan Relay
13705852 6 3554 1837 +1717 whale_0xdc8d 0x8527d16c... Ultra Sound
13709431 7 3572 1856 +1716 revolut 0x8527d16c... Ultra Sound
13709082 0 3441 1727 +1714 revolut Local Local
13707040 3 3493 1782 +1711 everstake 0x856b0004... Agnostic Gnosis
13711143 1 3454 1745 +1709 everstake 0xb26f9666... Titan Relay
13712370 1 3451 1745 +1706 nethermind_lido 0xb26f9666... Titan Relay
13711963 5 3518 1819 +1699 coinbase 0xb26f9666... Aestus
13706560 0 3416 1727 +1689 everstake 0xb26f9666... Titan Relay
13710590 1 3430 1745 +1685 ether.fi 0xb26f9666... Titan Relay
13708444 6 3521 1837 +1684 everstake 0xb67eaa5e... BloXroute Regulated
13710699 3 3465 1782 +1683 blockdaemon_lido 0xb26f9666... Titan Relay
13709054 6 3518 1837 +1681 revolut 0xb26f9666... BloXroute Regulated
13711820 0 3405 1727 +1678 0x8a850621... Titan Relay
13708820 0 3405 1727 +1678 nethermind_lido 0xb26f9666... Titan Relay
13711669 0 3404 1727 +1677 blockdaemon 0x8a850621... Ultra Sound
13711353 8 3548 1874 +1674 ether.fi 0x88857150... EthGas
13711292 5 3486 1819 +1667 nethermind_lido 0xb26f9666... Titan Relay
13705311 3 3440 1782 +1658 nethermind_lido 0xb26f9666... Titan Relay
13705751 4 3457 1800 +1657 ether.fi 0x8527d16c... Ultra Sound
13710044 0 3372 1727 +1645 0xb4ce6162... Ultra Sound
13712098 0 3367 1727 +1640 whale_0xdd6c 0x823e0146... Flashbots
13706613 11 3567 1929 +1638 0x850b00e0... BloXroute Regulated
13710969 1 3376 1745 +1631 everstake 0xb26f9666... Titan Relay
13712208 0 3353 1727 +1626 nethermind_lido 0x852b0070... BloXroute Max Profit
13706587 0 3351 1727 +1624 blockdaemon 0x853b0078... Ultra Sound
13708957 5 3442 1819 +1623 everstake 0xb26f9666... Titan Relay
13709284 4 3423 1800 +1623 everstake 0x856b0004... Agnostic Gnosis
13706698 0 3348 1727 +1621 nethermind_lido 0x853b0078... Aestus
13708999 0 3348 1727 +1621 everstake 0x9589cf28... Flashbots
13709579 5 3439 1819 +1620 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13710473 4 3419 1800 +1619 blockdaemon 0x850b00e0... BloXroute Max Profit
13707190 5 3437 1819 +1618 everstake 0x8527d16c... Ultra Sound
13707390 5 3435 1819 +1616 everstake 0x8527d16c... Ultra Sound
13710218 0 3338 1727 +1611 everstake 0xb26f9666... Aestus
13708506 0 3338 1727 +1611 blockdaemon_lido 0x88857150... Ultra Sound
13706834 3 3392 1782 +1610 everstake 0xb26f9666... Titan Relay
13706504 0 3335 1727 +1608 everstake 0x8527d16c... Ultra Sound
13707630 1 3351 1745 +1606 everstake 0x8527d16c... Ultra Sound
13707980 5 3423 1819 +1604 blockdaemon 0x8527d16c... Ultra Sound
13710112 1 3349 1745 +1604 0xb26f9666... BloXroute Max Profit
13706125 6 3441 1837 +1604 blockdaemon_lido 0xb67eaa5e... Titan Relay
13712376 3 3385 1782 +1603 everstake 0x8527d16c... Ultra Sound
13707254 3 3383 1782 +1601 blockdaemon 0x823e0146... BloXroute Max Profit
13711651 0 3325 1727 +1598 everstake 0x88a53ec4... BloXroute Regulated
13705914 0 3318 1727 +1591 everstake 0xb26f9666... Titan Relay
13705416 3 3373 1782 +1591 everstake 0xb26f9666... Aestus
13710237 0 3317 1727 +1590 luno 0xb26f9666... Titan Relay
13709708 9 3482 1893 +1589 blockdaemon_lido 0x850b00e0... BloXroute Regulated
13708115 7 3445 1856 +1589 0x850b00e0... BloXroute Max Profit
13709760 16 3611 2022 +1589 bitstamp 0x88a53ec4... BloXroute Max Profit
13709125 6 3425 1837 +1588 everstake 0x860d4173... BloXroute Max Profit
13707450 0 3313 1727 +1586 everstake 0x8527d16c... Ultra Sound
13711200 5 3405 1819 +1586 blockdaemon_lido 0x88857150... Ultra Sound
13706294 6 3422 1837 +1585 everstake 0xb26f9666... Titan Relay
13711627 0 3310 1727 +1583 everstake 0x8527d16c... Ultra Sound
13710828 5 3402 1819 +1583 nethermind_lido 0x88a53ec4... BloXroute Regulated
13710518 7 3432 1856 +1576 everstake 0x856b0004... Agnostic Gnosis
13705474 0 3300 1727 +1573 solo_stakers 0xb26f9666... BloXroute Max Profit
13706893 0 3299 1727 +1572 blockdaemon 0x8a850621... Titan Relay
13706208 6 3407 1837 +1570 binance Local Local
13711547 0 3292 1727 +1565 blockdaemon 0x850b00e0... BloXroute Max Profit
13707181 3 3347 1782 +1565 0x8527d16c... Ultra Sound
13708331 8 3439 1874 +1565 0x850b00e0... BloXroute Max Profit
13708031 10 3475 1911 +1564 blockdaemon_lido 0xb67eaa5e... Titan Relay
13707232 7 3417 1856 +1561 gateway.fmas_lido 0x823e0146... Flashbots
13706117 1 3305 1745 +1560 everstake 0xb26f9666... Titan Relay
13707730 0 3284 1727 +1557 everstake 0x852b0070... Flashbots
13708179 5 3376 1819 +1557 everstake 0x853b0078... Agnostic Gnosis
13708524 5 3376 1819 +1557 luno 0x88a53ec4... BloXroute Regulated
13712352 8 3424 1874 +1550 gateway.fmas_lido 0xb26f9666... Titan Relay
13710529 6 3385 1837 +1548 0x8a850621... BloXroute Regulated
13707930 7 3403 1856 +1547 ether.fi 0x853b0078... Agnostic Gnosis
13710379 5 3364 1819 +1545 blockdaemon 0xb67eaa5e... BloXroute Regulated
13711829 6 3382 1837 +1545 everstake 0xb26f9666... Titan Relay
13711734 11 3473 1929 +1544 everstake 0xb26f9666... Titan Relay
13708477 14 3525 1985 +1540 nethermind_lido 0x853b0078... Aestus
13708038 3 3321 1782 +1539 everstake 0x853b0078... Aestus
13707538 0 3264 1727 +1537 nethermind_lido 0xb26f9666... Titan Relay
13707482 5 3353 1819 +1534 everstake 0x8527d16c... Ultra Sound
13712004 7 3389 1856 +1533 nethermind_lido 0x855b00e6... BloXroute Max Profit
13707010 7 3388 1856 +1532 ether.fi 0xb26f9666... Titan Relay
13711439 5 3350 1819 +1531 ether.fi 0x8527d16c... Ultra Sound
13709586 6 3367 1837 +1530 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
13709134 1 3273 1745 +1528 blockdaemon_lido 0x850b00e0... BloXroute Regulated
13706779 3 3309 1782 +1527 luno 0xb26f9666... Titan Relay
13711094 5 3344 1819 +1525 0xb26f9666... Aestus
13712061 2 3288 1763 +1525 everstake 0xac23f8cc... Flashbots
13709784 13 3490 1966 +1524 everstake 0x8527d16c... Ultra Sound
13709576 5 3340 1819 +1521 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
13712252 7 3375 1856 +1519 blockdaemon_lido 0x8527d16c... Ultra Sound
13707968 1 3263 1745 +1518 0xb26f9666... Titan Relay
13707217 13 3482 1966 +1516 everstake 0xb67eaa5e... BloXroute Regulated
13708573 0 3242 1727 +1515 nethermind_lido 0x851b00b1... BloXroute Max Profit
13709736 0 3242 1727 +1515 0x852b0070... BloXroute Max Profit
13709339 5 3333 1819 +1514 blockdaemon 0xb67eaa5e... BloXroute Regulated
13708883 1 3256 1745 +1511 blockdaemon_lido 0x856b0004... Ultra Sound
13705301 6 3348 1837 +1511 0x855b00e6... BloXroute Max Profit
13707994 10 3421 1911 +1510 everstake 0xb26f9666... Aestus
13710901 3 3291 1782 +1509 blockdaemon 0x88a53ec4... BloXroute Max Profit
13706969 12 3457 1948 +1509 ether.fi 0x86f3ad35... EthGas
13709904 8 3380 1874 +1506 everstake 0xb26f9666... Titan Relay
13712000 6 3343 1837 +1506 ether.fi 0xb26f9666... Titan Relay
13710680 0 3231 1727 +1504 blockdaemon_lido 0xa9bd259c... Ultra Sound
13711884 3 3280 1782 +1498 bitstamp 0x88a53ec4... BloXroute Regulated
13711881 9 3387 1893 +1494 everstake 0xb26f9666... Titan Relay
13711811 1 3238 1745 +1493 0xb67eaa5e... BloXroute Regulated
13712361 8 3363 1874 +1489 everstake 0xb26f9666... Titan Relay
13705562 3 3270 1782 +1488 0xb67eaa5e... BloXroute Max Profit
13708676 10 3398 1911 +1487 nethermind_lido 0x855b00e6... BloXroute Max Profit
13710298 5 3305 1819 +1486 everstake 0xb26f9666... Titan Relay
13710953 0 3210 1727 +1483 blockdaemon 0x8527d16c... Ultra Sound
13705720 1 3228 1745 +1483 blockdaemon_lido 0x8527d16c... Ultra Sound
13707451 8 3357 1874 +1483 everstake 0xb26f9666... Titan Relay
13710849 5 3301 1819 +1482 blockdaemon_lido 0xb26f9666... Titan Relay
13711630 5 3299 1819 +1480 0x850b00e0... BloXroute Regulated
13706997 2 3243 1763 +1480 everstake 0xa230e2cf... Flashbots
13707144 11 3407 1929 +1478 nethermind_lido 0xb26f9666... Titan Relay
13709805 6 3314 1837 +1477 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
13710309 1 3221 1745 +1476 gateway.fmas_lido 0xb7c5e609... BloXroute Max Profit
13710709 0 3201 1727 +1474 p2porg 0x88a53ec4... BloXroute Max Profit
13712318 5 3293 1819 +1474 blockdaemon_lido 0x850b00e0... BloXroute Regulated
13710214 9 3366 1893 +1473 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13709548 0 3199 1727 +1472 ether.fi 0x851b00b1... Flashbots
13707643 1 3217 1745 +1472 blockdaemon 0x8a850621... Ultra Sound
13707972 5 3290 1819 +1471 0x88a53ec4... BloXroute Regulated
13705899 1 3215 1745 +1470 gateway.fmas_lido 0x88a53ec4... BloXroute Regulated
13709208 10 3381 1911 +1470 stakingfacilities_lido 0x855b00e6... BloXroute Max Profit
13711234 0 3194 1727 +1467 nethermind_lido 0x88a53ec4... BloXroute Max Profit
13709645 0 3193 1727 +1466 blockdaemon 0x805e28e6... BloXroute Regulated
13707223 0 3191 1727 +1464 figment 0xb26f9666... BloXroute Regulated
13711956 1 3209 1745 +1464 nethermind_lido 0x88857150... Ultra Sound
13709631 0 3190 1727 +1463 nethermind_lido 0xa0366397... Ultra Sound
13709485 1 3206 1745 +1461 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
13711466 6 3295 1837 +1458 blockdaemon_lido 0x8527d16c... Ultra Sound
13706299 6 3294 1837 +1457 bitstamp 0x850b00e0... BloXroute Max Profit
13710134 5 3273 1819 +1454 bitstamp 0x88a53ec4... BloXroute Max Profit
13709010 2 3217 1763 +1454 nethermind_lido 0x853b0078... BloXroute Max Profit
13709461 0 3179 1727 +1452 gateway.fmas_lido 0xb26f9666... Titan Relay
13709156 14 3434 1985 +1449 everstake 0x856b0004... Aestus
13707668 0 3174 1727 +1447 gateway.fmas_lido 0xb26f9666... Titan Relay
13711907 0 3174 1727 +1447 0x8a850621... Ultra Sound
13708277 0 3174 1727 +1447 nethermind_lido 0x88a53ec4... BloXroute Regulated
13708832 9 3337 1893 +1444 ether.fi 0x853b0078... Agnostic Gnosis
13709149 7 3299 1856 +1443 blockdaemon 0xb26f9666... Titan Relay
13708226 0 3169 1727 +1442 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
13708574 5 3261 1819 +1442 bitstamp 0x88a53ec4... BloXroute Regulated
13708368 3 3223 1782 +1441 blockdaemon 0x856b0004... Ultra Sound
13706248 0 3167 1727 +1440 p2porg 0x852b0070... Ultra Sound
13706489 2 3202 1763 +1439 p2porg 0xb67eaa5e... BloXroute Regulated
13707158 0 3165 1727 +1438 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13709733 0 3164 1727 +1437 ether.fi 0xb26f9666... Titan Relay
13709942 8 3310 1874 +1436 nethermind_lido 0x88a53ec4... BloXroute Regulated
13706803 8 3308 1874 +1434 gateway.fmas_lido 0x850b00e0... BloXroute Regulated
13709600 0 3160 1727 +1433 stader 0xb211df49... Aestus
13708128 3 3215 1782 +1433 stakefish Local Local
13709444 6 3269 1837 +1432 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13711418 8 3304 1874 +1430 blockdaemon 0x88857150... Ultra Sound
13707913 5 3248 1819 +1429 blockdaemon 0xb26f9666... Titan Relay
13707833 6 3266 1837 +1429 blockdaemon 0x88a53ec4... BloXroute Regulated
13706522 5 3247 1819 +1428 figment 0xb67eaa5e... BloXroute Regulated
13707442 12 3375 1948 +1427 everstake 0x853b0078... Aestus
13705212 8 3301 1874 +1427 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
13711633 0 3153 1727 +1426 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
13708943 8 3300 1874 +1426 ether.fi 0x88a53ec4... BloXroute Max Profit
13708959 9 3318 1893 +1425 nethermind_lido 0x88a53ec4... BloXroute Max Profit
13709790 8 3299 1874 +1425 p2porg 0x850b00e0... BloXroute Regulated
13711672 9 3315 1893 +1422 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
13710620 10 3333 1911 +1422 stakingfacilities_lido 0x850b00e0... BloXroute Max Profit
13706372 0 3148 1727 +1421 blockdaemon_lido 0x853b0078... Ultra Sound
13707884 5 3240 1819 +1421 nethermind_lido 0x823e0146... Flashbots
13709766 12 3368 1948 +1420 blockdaemon 0xb7c5beef... BloXroute Regulated
13710965 14 3404 1985 +1419 ether.fi 0x88a53ec4... BloXroute Regulated
13711321 3 3201 1782 +1419 p2porg 0xb26f9666... Aestus
13709812 9 3311 1893 +1418 0xb67eaa5e... BloXroute Regulated
13708794 5 3237 1819 +1418 ether.fi 0xb26f9666... Titan Relay
13705992 5 3233 1819 +1414 blockdaemon 0x88510a78... BloXroute Regulated
13707483 3 3195 1782 +1413 0xb67eaa5e... BloXroute Regulated
13707542 10 3323 1911 +1412 everstake 0x856b0004... Aestus
13711699 8 3286 1874 +1412 ether.fi 0x8527d16c... Ultra Sound
13708684 5 3230 1819 +1411 p2porg 0x88a53ec4... BloXroute Max Profit
13706116 8 3285 1874 +1411 0x850b00e0... BloXroute Regulated
13712096 17 3451 2040 +1411 everstake 0x8527d16c... Ultra Sound
13710635 4 3211 1800 +1411 0x855b00e6... BloXroute Max Profit
13707402 0 3135 1727 +1408 ether.fi 0xb26f9666... Titan Relay
13709514 1 3153 1745 +1408 solo_stakers 0xb26f9666... Aestus
13707558 1 3153 1745 +1408 0x88a53ec4... BloXroute Regulated
13708370 6 3245 1837 +1408 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
13707112 0 3132 1727 +1405 0x8a850621... BloXroute Regulated
13705208 0 3130 1727 +1403 nethermind_lido 0x88857150... Ultra Sound
13710744 9 3296 1893 +1403 blockdaemon 0xb7c5beef... Titan Relay
13708435 5 3221 1819 +1402 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13709890 9 3294 1893 +1401 p2porg 0x8db2a99d... BloXroute Max Profit
13707408 5 3220 1819 +1401 blockdaemon 0xb26f9666... Titan Relay
13706156 0 3126 1727 +1399 stakingfacilities_lido 0x8db2a99d... BloXroute Max Profit
13705209 11 3327 1929 +1398 bitstamp 0xb67eaa5e... BloXroute Max Profit
13706508 2 3160 1763 +1397 gateway.fmas_lido 0xac23f8cc... Flashbots
13708885 8 3268 1874 +1394 nethermind_lido 0xac23f8cc... BloXroute Max Profit
13712212 11 3322 1929 +1393 blockdaemon_lido 0x8db2a99d... BloXroute Max Profit
13710208 1 3137 1745 +1392 p2porg 0xb26f9666... BloXroute Max Profit
13710738 0 3118 1727 +1391 gateway.fmas_lido 0x8527d16c... Ultra Sound
13710068 11 3319 1929 +1390 p2porg 0xb26f9666... Titan Relay
13711035 1 3131 1745 +1386 gateway.fmas_lido 0x823e0146... Flashbots
13707905 14 3370 1985 +1385 bitstamp 0x88a53ec4... BloXroute Regulated
13709133 10 3295 1911 +1384 0x850b00e0... BloXroute Max Profit
13705438 8 3257 1874 +1383 blockdaemon 0xb26f9666... Titan Relay
13705226 0 3108 1727 +1381 0x851b00b1... BloXroute Max Profit
13710542 1 3126 1745 +1381 figment 0xb26f9666... Titan Relay
13709418 11 3310 1929 +1381 blockdaemon 0x8527d16c... Ultra Sound
13712308 3 3162 1782 +1380 gateway.fmas_lido 0xa230e2cf... Agnostic Gnosis
13710207 9 3272 1893 +1379 whale_0xedc6 0x8527d16c... Ultra Sound
13710232 12 3326 1948 +1378 0x88a53ec4... BloXroute Max Profit
13708012 0 3104 1727 +1377 everstake 0xb26f9666... Titan Relay
13706274 8 3251 1874 +1377 figment 0xb67eaa5e... BloXroute Max Profit
13709865 0 3103 1727 +1376 ether.fi 0xb26f9666... Titan Relay
13705336 9 3269 1893 +1376 0xb26f9666... Titan Relay
13707901 1 3121 1745 +1376 whale_0x8ebd 0x823e0146... BloXroute Max Profit
13708886 1 3120 1745 +1375 p2porg 0x856b0004... Aestus
13709329 0 3100 1727 +1373 ether.fi 0xb26f9666... Titan Relay
13711412 6 3210 1837 +1373 ether.fi 0xb26f9666... Titan Relay
13711343 15 3376 2003 +1373 blockdaemon 0xb26f9666... Titan Relay
13710419 4 3173 1800 +1373 gateway.fmas_lido 0x8527d16c... Ultra Sound
13706260 5 3189 1819 +1370 nethermind_lido 0x8527d16c... Ultra Sound
13706810 1 3115 1745 +1370 gateway.fmas_lido 0x88857150... Ultra Sound
13711189 8 3244 1874 +1370 0x850b00e0... BloXroute Regulated
13711326 12 3317 1948 +1369 revolut 0x8527d16c... Ultra Sound
13709880 16 3390 2022 +1368 p2porg 0x850b00e0... BloXroute Regulated
13708132 0 3093 1727 +1366 kelp 0xb26f9666... Titan Relay
13711718 3 3148 1782 +1366 0x857b0038... Ultra Sound
13706051 12 3313 1948 +1365 blockdaemon 0x850b00e0... BloXroute Regulated
13711147 15 3368 2003 +1365 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
13708298 0 3088 1727 +1361 p2porg 0x850b00e0... BloXroute Regulated
13709027 0 3087 1727 +1360 everstake 0xb26f9666... Titan Relay
13710372 14 3345 1985 +1360 p2porg 0x88a53ec4... BloXroute Regulated
13710157 3 3142 1782 +1360 p2porg 0xb67eaa5e... BloXroute Max Profit
13711846 8 3234 1874 +1360 nethermind_lido 0x8db2a99d... Flashbots
13711296 0 3086 1727 +1359 mantle 0xb26f9666... Titan Relay
13709991 5 3178 1819 +1359 ether.fi 0x8527d16c... Ultra Sound
13706290 0 3085 1727 +1358 0xb26f9666... Aestus
13709756 0 3082 1727 +1355 kelp 0xb26f9666... Titan Relay
13705525 9 3246 1893 +1353 gateway.fmas_lido 0xb26f9666... Titan Relay
13705543 14 3337 1985 +1352 blockdaemon_lido 0xb26f9666... Titan Relay
13710390 7 3206 1856 +1350 figment 0xb26f9666... Titan Relay
13712345 14 3332 1985 +1347 everstake 0x856b0004... Aestus
13711895 1 3092 1745 +1347 p2porg 0xb26f9666... Titan Relay
13706082 10 3257 1911 +1346 blockdaemon 0xb67eaa5e... BloXroute Regulated
13710041 14 3330 1985 +1345 blockdaemon 0x853b0078... Ultra Sound
13706537 7 3199 1856 +1343 stakingfacilities_lido 0x88a53ec4... BloXroute Max Profit
13706769 3 3125 1782 +1343 whale_0x4685 0x88a53ec4... BloXroute Max Profit
13708704 1 3087 1745 +1342 everstake 0x88a53ec4... BloXroute Max Profit
13705728 0 3067 1727 +1340 nethermind_lido 0x88a53ec4... BloXroute Regulated
13709376 0 3067 1727 +1340 mantle 0x851b00b1... Flashbots
13710541 14 3325 1985 +1340 whale_0x8ebd 0x8a850621... Ultra Sound
13706199 9 3232 1893 +1339 stakingfacilities_lido 0x8db2a99d... BloXroute Max Profit
13711598 0 3064 1727 +1337 whale_0x8ebd 0xac23f8cc... Flashbots
13707845 1 3082 1745 +1337 whale_0x8ebd 0xb26f9666... Titan Relay
13711646 8 3211 1874 +1337 nethermind_lido 0x8527d16c... Ultra Sound
13705583 5 3153 1819 +1334 whale_0x8ebd 0x853b0078... Ultra Sound
13705589 0 3060 1727 +1333 figment 0x88857150... Ultra Sound
13710966 1 3078 1745 +1333 p2porg 0x853b0078... Aestus
13707964 9 3225 1893 +1332 figment 0x88857150... Ultra Sound
13706230 3 3114 1782 +1332 0x88a53ec4... BloXroute Regulated
13712122 5 3150 1819 +1331 rocketpool Local Local
13711456 6 3168 1837 +1331 stakefish 0x856b0004... Agnostic Gnosis
13712188 8 3203 1874 +1329 p2porg 0xb26f9666... Titan Relay
13710568 0 3055 1727 +1328 everstake 0x88857150... Ultra Sound
13711379 5 3147 1819 +1328 kelp 0x8527d16c... Ultra Sound
13710412 1 3073 1745 +1328 p2porg 0xb26f9666... BloXroute Max Profit
13707297 4 3128 1800 +1328 everstake 0xb5509cbf... Flashbots
13708055 0 3054 1727 +1327 p2porg 0x852b0070... Agnostic Gnosis
13710652 5 3145 1819 +1326 p2porg 0x8527d16c... Ultra Sound
13711329 5 3144 1819 +1325 p2porg 0xb67eaa5e... BloXroute Max Profit
13710385 4 3125 1800 +1325 figment 0xac23f8cc... Flashbots
13710235 1 3069 1745 +1324 stakingfacilities_lido 0xb26f9666... Titan Relay
13705399 5 3142 1819 +1323 0x853b0078... Aestus
13712028 3 3104 1782 +1322 0x856b0004... Agnostic Gnosis
13708950 1 3067 1745 +1322 everstake 0xb26f9666... Titan Relay
13711642 0 3048 1727 +1321 p2porg 0x856b0004... BloXroute Max Profit
13709198 1 3066 1745 +1321 figment 0xb26f9666... Titan Relay
13709474 6 3158 1837 +1321 0xb26f9666... BloXroute Regulated
13712383 0 3047 1727 +1320 p2porg 0x856b0004... BloXroute Max Profit
13710630 5 3139 1819 +1320 mantle 0x823e0146... BloXroute Max Profit
13708378 6 3157 1837 +1320 0x88a53ec4... BloXroute Regulated
13710947 0 3046 1727 +1319 0x852b0070... BloXroute Max Profit
13706467 7 3174 1856 +1318 0x855b00e6... BloXroute Max Profit
13708131 5 3137 1819 +1318 everstake 0xb26f9666... Titan Relay
13708661 5 3136 1819 +1317 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
13708904 1 3062 1745 +1317 whale_0x8ebd 0xb26f9666... Titan Relay
13709655 0 3043 1727 +1316 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13706315 5 3135 1819 +1316 whale_0x8ebd 0x853b0078... Ultra Sound
13709293 0 3042 1727 +1315 ether.fi 0xb26f9666... Titan Relay
13711285 5 3133 1819 +1314 p2porg 0xb26f9666... BloXroute Max Profit
13709807 3 3094 1782 +1312 p2porg 0xb26f9666... BloXroute Regulated
13710930 0 3038 1727 +1311 kelp 0x8527d16c... Ultra Sound
13707463 5 3130 1819 +1311 0x8527d16c... Ultra Sound
13712320 0 3037 1727 +1310 everstake 0x852b0070... BloXroute Max Profit
13705612 0 3036 1727 +1309 0x853b0078... Aestus
13712053 0 3036 1727 +1309 ether.fi 0x8db2a99d... Flashbots
13709342 3 3091 1782 +1309 stakingfacilities_lido 0x850b00e0... BloXroute Max Profit
13705428 3 3090 1782 +1308 p2porg 0x8527d16c... Ultra Sound
13708154 9 3200 1893 +1307 0xac23f8cc... Flashbots
13709098 3 3088 1782 +1306 stakingfacilities_lido 0x88a53ec4... BloXroute Max Profit
13705816 0 3032 1727 +1305 everstake 0x88a53ec4... BloXroute Regulated
13708228 10 3216 1911 +1305 p2porg 0xb26f9666... Titan Relay
13710373 0 3031 1727 +1304 whale_0x8ebd 0x853b0078... Ultra Sound
13711652 0 3031 1727 +1304 ether.fi 0xb67eaa5e... BloXroute Max Profit
13706245 10 3215 1911 +1304 nethermind_lido 0x853b0078... BloXroute Max Profit
13706047 8 3178 1874 +1304 ether.fi 0x855b00e6... Flashbots
13709994 5 3122 1819 +1303 everstake 0x88a53ec4... BloXroute Regulated
13708112 1 3048 1745 +1303 everstake 0xb26f9666... Titan Relay
13710443 8 3177 1874 +1303 0xb67eaa5e... BloXroute Max Profit
13709584 0 3028 1727 +1301 p2porg 0x852b0070... Ultra Sound
13709210 1 3046 1745 +1301 ether.fi 0x88857150... Ultra Sound
13710365 6 3138 1837 +1301 0xb67eaa5e... BloXroute Max Profit
13705939 4 3101 1800 +1301 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
13710827 1 3045 1745 +1300 everstake 0x88a53ec4... BloXroute Regulated
13710436 1 3045 1745 +1300 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
13706374 4 3098 1800 +1298 whale_0x8ebd 0x856b0004... Ultra Sound
13707688 5 3115 1819 +1296 0x850b00e0... BloXroute Max Profit
13711657 4 3095 1800 +1295 0xb26f9666... BloXroute Max Profit
13706293 0 3020 1727 +1293 ether.fi 0xa230e2cf... BloXroute Max Profit
13712022 5 3112 1819 +1293 figment 0x8db2a99d... Flashbots
13707294 8 3167 1874 +1293 ether.fi 0x8527d16c... Ultra Sound
13705436 0 3018 1727 +1291 0xb26f9666... Titan Relay
Total anomalies: 361

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