Tue, Jun 2, 2026

Propagation anomalies - 2026-06-02

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-06-02' AND slot_start_date_time < '2026-06-02'::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-06-02' AND slot_start_date_time < '2026-06-02'::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-06-02' AND slot_start_date_time < '2026-06-02'::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-06-02' AND slot_start_date_time < '2026-06-02'::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-06-02' AND slot_start_date_time < '2026-06-02'::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-06-02' AND slot_start_date_time < '2026-06-02'::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-06-02' AND slot_start_date_time < '2026-06-02'::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-06-02' AND slot_start_date_time < '2026-06-02'::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,177
MEV blocks: 6,718 (93.6%)
Local blocks: 459 (6.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 = 1682.9 + 13.78 × blob_count (R² = 0.010)
Residual σ = 640.3ms
Anomalies (>2σ slow): 466 (6.5%)
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
14464769 0 11943 1683 +10260 rocketpool Local Local
14468224 13 10753 1862 +8891 solo_stakers Local Local
14467872 0 8747 1683 +7064 solo_stakers Local Local
14465376 0 6737 1683 +5054 upbit Local Local
14462368 0 6593 1683 +4910 upbit Local Local
14466573 8 6014 1793 +4221 rocketpool Local Local
14465536 0 5188 1683 +3505 simplystaking_lido Local Local
14466589 0 4615 1683 +2932 bloxstaking Local Local
14468225 0 4247 1683 +2564 bitcoinsuisse Local Local
14467698 0 4086 1683 +2403 Local Local
14466575 17 4292 1917 +2375 blockdaemon 0x857b0038... BloXroute Max Profit
14462272 5 3665 1752 +1913 blockdaemon 0x88a53ec4... BloXroute Regulated
14464075 5 3656 1752 +1904 kraken 0xb26f9666... Titan Relay
14462720 0 3554 1683 +1871 blockdaemon_lido 0x851b00b1... BloXroute Max Profit
14464464 5 3590 1752 +1838 blockdaemon 0x857b0038... BloXroute Max Profit
14464937 3 3554 1724 +1830 whale_0x2f38 Local Local
14463575 6 3567 1766 +1801 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
14462836 1 3472 1697 +1775 blockdaemon_lido 0xb67eaa5e... Ultra Sound
14462939 5 3501 1752 +1749 blockdaemon 0x850b00e0... BloXroute Max Profit
14461251 1 3441 1697 +1744 ether.fi 0x85fb0503... BloXroute Max Profit
14464111 6 3505 1766 +1739 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
14466080 13 3588 1862 +1726 blockdaemon_lido 0x88857150... Ultra Sound
14462775 5 3474 1752 +1722 blockdaemon 0xb67eaa5e... Ultra Sound
14467923 6 3478 1766 +1712 whale_0xdc8d 0xb67eaa5e... BloXroute Regulated
14462788 7 3473 1779 +1694 whale_0xdc8d 0xb26f9666... Titan Relay
14467287 5 3441 1752 +1689 blockdaemon 0x8a850621... Titan Relay
14467926 8 3482 1793 +1689 solo_stakers 0xb67eaa5e... Titan Relay
14465798 11 3522 1835 +1687 blockdaemon 0x8a850621... Titan Relay
14462009 6 3453 1766 +1687 blockdaemon 0xb26f9666... Ultra Sound
14464751 5 3438 1752 +1686 blockdaemon 0x8a850621... Titan Relay
14466637 6 3447 1766 +1681 luno 0x88a53ec4... BloXroute Regulated
14464372 5 3427 1752 +1675 blockdaemon_lido 0xb67eaa5e... Titan Relay
14464818 0 3352 1683 +1669 blockdaemon 0x8a850621... Titan Relay
14467554 5 3417 1752 +1665 everstake 0x88a53ec4... BloXroute Regulated
14468304 1 3361 1697 +1664 blockdaemon 0x850b00e0... BloXroute Max Profit
14463728 6 3429 1766 +1663 blockdaemon 0x8a850621... Titan Relay
14465127 6 3429 1766 +1663 nethermind_lido 0xb26f9666... Aestus
14466209 0 3343 1683 +1660 nethermind_lido 0x851b00b1... BloXroute Max Profit
14465762 16 3560 1903 +1657 luno 0x88a53ec4... BloXroute Max Profit
14467602 0 3337 1683 +1654 whale_0xdc8d 0x8527d16c... Ultra Sound
14467289 17 3570 1917 +1653 whale_0xdc8d 0x88a53ec4... BloXroute Max Profit
14462025 4 3390 1738 +1652 blockdaemon 0x857b0038... BloXroute Max Profit
14464763 6 3417 1766 +1651 blockdaemon 0x8a850621... Titan Relay
14463877 10 3472 1821 +1651 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
14463265 6 3411 1766 +1645 blockdaemon Local Local
14463988 0 3327 1683 +1644 blockdaemon_lido 0xb67eaa5e... Ultra Sound
14463026 3 3366 1724 +1642 revolut 0xb26f9666... Titan Relay
14463105 1 3337 1697 +1640 blockdaemon_lido 0xb67eaa5e... Titan Relay
14467667 5 3391 1752 +1639 whale_0xdc8d 0x8527d16c... Ultra Sound
14463490 0 3322 1683 +1639 revolut 0x851b00b1... BloXroute Max Profit
14466161 3 3363 1724 +1639 revolut 0xb26f9666... Titan Relay
14461345 0 3320 1683 +1637 whale_0xdc8d 0xb26f9666... Ultra Sound
14466401 0 3319 1683 +1636 blockdaemon_lido 0x851b00b1... BloXroute Max Profit
14463331 10 3452 1821 +1631 kiln 0x857b0038... BloXroute Max Profit
14465374 8 3421 1793 +1628 blockdaemon_lido 0xb67eaa5e... Titan Relay
14467756 0 3309 1683 +1626 blockdaemon_lido 0xb26f9666... Titan Relay
14462216 0 3309 1683 +1626 blockdaemon 0x8db2a99d... Ultra Sound
14468141 1 3321 1697 +1624 blockdaemon 0x8a850621... Titan Relay
14467437 5 3374 1752 +1622 blockdaemon 0x823e0146... Ultra Sound
14468192 12 3470 1848 +1622 blockdaemon_lido 0xb26f9666... Titan Relay
14468132 5 3373 1752 +1621 blockdaemon 0x8a850621... Titan Relay
14465196 0 3303 1683 +1620 blockdaemon 0x8a850621... Titan Relay
14466901 0 3298 1683 +1615 blockdaemon_lido 0x851b00b1... Ultra Sound
14462825 0 3298 1683 +1615 blockdaemon 0xb4ce6162... Ultra Sound
14461740 9 3422 1807 +1615 whale_0xdc8d 0x88857150... Ultra Sound
14461415 1 3310 1697 +1613 blockdaemon_lido 0x8527d16c... Ultra Sound
14468306 5 3361 1752 +1609 luno 0xb26f9666... Ultra Sound
14461905 5 3360 1752 +1608 blockdaemon 0x823e0146... Ultra Sound
14461598 0 3289 1683 +1606 blockdaemon 0x857b0038... BloXroute Max Profit
14464237 3 3330 1724 +1606 blockdaemon_lido 0xb26f9666... Titan Relay
14462340 7 3384 1779 +1605 blockdaemon_lido 0xb26f9666... Ultra Sound
14463290 15 3492 1890 +1602 blockdaemon_lido 0x823e0146... BloXroute Max Profit
14467807 1 3299 1697 +1602 blockdaemon_lido 0xb67eaa5e... Titan Relay
14462683 2 3312 1710 +1602 whale_0xdc8d 0xb26f9666... Ultra Sound
14463005 5 3351 1752 +1599 whale_0xdc8d 0xb67eaa5e... BloXroute Max Profit
14466243 12 3445 1848 +1597 luno 0x88a53ec4... BloXroute Regulated
14466783 1 3292 1697 +1595 0xb26f9666... Ultra Sound
14463665 11 3429 1835 +1594 blockdaemon 0x8527d16c... Ultra Sound
14467668 1 3291 1697 +1594 blockdaemon 0xb4ce6162... Ultra Sound
14465218 2 3303 1710 +1593 0x823e0146... BloXroute Max Profit
14467282 11 3427 1835 +1592 whale_0x9212 Local Local
14467766 0 3272 1683 +1589 blockdaemon 0x8a850621... Titan Relay
14464024 10 3409 1821 +1588 0xb26f9666... Ultra Sound
14461536 5 3339 1752 +1587 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14467685 3 3310 1724 +1586 solo_stakers 0x88a53ec4... BloXroute Regulated
14465211 13 3447 1862 +1585 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14465853 0 3265 1683 +1582 blockdaemon 0x8a850621... Titan Relay
14463441 0 3263 1683 +1580 blockdaemon_lido 0x8db2a99d... BloXroute Max Profit
14467018 0 3262 1683 +1579 0x8db2a99d... Titan Relay
14467747 0 3262 1683 +1579 blockdaemon 0xb26f9666... Ultra Sound
14466842 5 3327 1752 +1575 whale_0xdc8d 0xb26f9666... Titan Relay
14461679 0 3258 1683 +1575 blockdaemon_lido 0xb67eaa5e... Ultra Sound
14464948 12 3422 1848 +1574 blockdaemon_lido 0xb67eaa5e... Titan Relay
14464636 10 3393 1821 +1572 0x8527d16c... Ultra Sound
14461712 1 3268 1697 +1571 whale_0xdc8d 0x885c17ef... BloXroute Max Profit
14466281 7 3350 1779 +1571 blockdaemon 0xb26f9666... Ultra Sound
14467800 6 3335 1766 +1569 blockdaemon 0x8527d16c... Ultra Sound
14463339 7 3345 1779 +1566 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
14465494 0 3247 1683 +1564 everstake 0x857b0038... BloXroute Max Profit
14468302 5 3314 1752 +1562 blockdaemon_lido 0x8db2a99d... Ultra Sound
14467572 8 3350 1793 +1557 blockdaemon_lido 0xb26f9666... Titan Relay
14466319 8 3349 1793 +1556 whale_0xdc8d 0x823e0146... Titan Relay
14464657 11 3390 1835 +1555 whale_0xdc8d 0x8527d16c... Ultra Sound
14463248 0 3234 1683 +1551 revolut 0xb26f9666... Ultra Sound
14466544 6 3316 1766 +1550 blockdaemon_lido 0xb67eaa5e... Ultra Sound
14466688 1 3245 1697 +1548 stakefish 0x823e0146... Flashbots
14464693 10 3368 1821 +1547 blockdaemon_lido 0xb26f9666... Titan Relay
14465431 15 3435 1890 +1545 blockdaemon_lido 0xb67eaa5e... Titan Relay
14466527 0 3228 1683 +1545 blockdaemon 0xb26f9666... Titan Relay
14465557 10 3364 1821 +1543 blockdaemon_lido 0xb26f9666... Titan Relay
14466414 0 3226 1683 +1543 p2porg 0x823e0146... Titan Relay
14462409 0 3226 1683 +1543 solo_stakers Local Local
14465524 0 3225 1683 +1542 blockdaemon_lido 0xb67eaa5e... Titan Relay
14461787 6 3307 1766 +1541 blockdaemon_lido 0xb26f9666... Titan Relay
14465865 11 3372 1835 +1537 blockdaemon 0xb26f9666... Titan Relay
14464981 6 3301 1766 +1535 blockdaemon 0xb26f9666... Titan Relay
14461604 0 3218 1683 +1535 blockdaemon_lido 0x851b00b1... BloXroute Max Profit
14468233 0 3214 1683 +1531 coinbase 0xb26f9666... Aestus
14461502 0 3213 1683 +1530 blockdaemon_lido 0x851b00b1... BloXroute Max Profit
14466929 6 3295 1766 +1529 blockdaemon_lido 0x88857150... Ultra Sound
14461523 3 3253 1724 +1529 everstake 0x857b0038... BloXroute Max Profit
14467393 1 3222 1697 +1525 blockdaemon_lido 0xb26f9666... Ultra Sound
14466407 6 3289 1766 +1523 kiln 0xb26f9666... BloXroute Max Profit
14467153 1 3219 1697 +1522 revolut 0xb26f9666... Titan Relay
14463762 0 3199 1683 +1516 p2porg 0x8db2a99d... Titan Relay
14463285 21 3488 1972 +1516 whale_0x3878 0x88857150... Ultra Sound
14461377 6 3281 1766 +1515 nethermind_lido Local Local
14464311 0 3198 1683 +1515 blockdaemon_lido 0xb67eaa5e... Ultra Sound
14462574 7 3293 1779 +1514 blockdaemon_lido 0xb26f9666... Titan Relay
14467828 0 3195 1683 +1512 revolut 0x8db2a99d... BloXroute Max Profit
14466044 3 3235 1724 +1511 blockdaemon 0xb26f9666... Titan Relay
14463691 10 3331 1821 +1510 blockdaemon_lido 0xb67eaa5e... Titan Relay
14464574 7 3286 1779 +1507 0x8527d16c... Ultra Sound
14467787 10 3325 1821 +1504 coinbase 0xb26f9666... BloXroute Max Profit
14462713 6 3266 1766 +1500 blockdaemon_lido 0xb26f9666... Titan Relay
14467138 14 3375 1876 +1499 luno 0xb26f9666... Titan Relay
14463764 1 3195 1697 +1498 blockdaemon 0x8527d16c... Ultra Sound
14464916 10 3319 1821 +1498 whale_0x185d 0xb26f9666... BloXroute Max Profit
14463797 0 3180 1683 +1497 p2porg 0x823e0146... Titan Relay
14461474 13 3359 1862 +1497 whale_0xdc8d 0xb26f9666... Ultra Sound
14462438 1 3192 1697 +1495 abyss_finance Local Local
14466663 0 3176 1683 +1493 nethermind_lido 0x851b00b1... BloXroute Max Profit
14461738 4 3231 1738 +1493 blockdaemon 0x8527d16c... Ultra Sound
14461221 7 3271 1779 +1492 coinbase 0x850b00e0... Flashbots
14466438 6 3256 1766 +1490 revolut 0xb26f9666... Titan Relay
14464535 0 3172 1683 +1489 coinbase 0x8527d16c... Ultra Sound
14464772 0 3170 1683 +1487 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14464389 8 3276 1793 +1483 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14462406 0 3165 1683 +1482 p2porg 0xb26f9666... Titan Relay
14462797 13 3344 1862 +1482 coinbase 0xb67eaa5e... BloXroute Max Profit
14461406 0 3162 1683 +1479 nethermind_lido 0x851b00b1... BloXroute Max Profit
14467722 5 3230 1752 +1478 p2porg_lido 0x8db2a99d... Titan Relay
14462149 4 3216 1738 +1478 nethermind_lido 0xb67eaa5e... BloXroute Regulated
14464532 11 3311 1835 +1476 blockdaemon_lido 0xb67eaa5e... Ultra Sound
14465938 6 3242 1766 +1476 whale_0xc611 0x88857150... Ultra Sound
14464669 6 3235 1766 +1469 p2porg 0x88a53ec4... BloXroute Max Profit
14466622 5 3217 1752 +1465 everstake 0x88a53ec4... BloXroute Max Profit
14464268 1 3161 1697 +1464 p2porg 0xb26f9666... Titan Relay
14462056 3 3187 1724 +1463 p2porg 0x850b00e0... BloXroute Regulated
14464008 7 3241 1779 +1462 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14466308 8 3252 1793 +1459 blockdaemon 0x8527d16c... Ultra Sound
14466605 5 3210 1752 +1458 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
14467905 0 3141 1683 +1458 whale_0x8914 0x88a53ec4... Aestus
14462807 4 3196 1738 +1458 0xb67eaa5e... BloXroute Max Profit
14462432 10 3278 1821 +1457 blockdaemon_lido 0xb26f9666... Titan Relay
14463388 0 3138 1683 +1455 nethermind_lido 0x851b00b1... BloXroute Max Profit
14465470 18 3384 1931 +1453 blockdaemon 0x8a850621... Titan Relay
14466227 1 3149 1697 +1452 whale_0x4b5e 0x88857150... Ultra Sound
14461933 7 3231 1779 +1452 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14464549 5 3203 1752 +1451 whale_0xfd67 0xac23f8cc... Ultra Sound
14461699 9 3254 1807 +1447 p2porg 0x850b00e0... Flashbots
14462247 17 3364 1917 +1447 coinbase 0xb26f9666... BloXroute Max Profit
14464976 9 3253 1807 +1446 p2porg 0x8db2a99d... Titan Relay
14463134 15 3335 1890 +1445 revolut 0xb26f9666... Titan Relay
14463213 8 3237 1793 +1444 p2porg 0x850b00e0... BloXroute Regulated
14462078 0 3124 1683 +1441 blockdaemon_lido 0xb26f9666... Titan Relay
14463378 1 3135 1697 +1438 blockdaemon_lido 0xb26f9666... Titan Relay
14462539 0 3120 1683 +1437 coinbase 0xac09aa45... Flashbots
14465574 5 3188 1752 +1436 whale_0x3878 0x88857150... Ultra Sound
14463772 5 3185 1752 +1433 whale_0x93db 0xb67eaa5e... BloXroute Max Profit
14461282 5 3182 1752 +1430 p2porg 0xb67eaa5e... BloXroute Max Profit
14466312 0 3113 1683 +1430 0x851b00b1... BloXroute Max Profit
14465537 0 3112 1683 +1429 coinbase 0x805e28e6... BloXroute Max Profit
14465733 0 3112 1683 +1429 whale_0xedc6 0x851b00b1... BloXroute Max Profit
14463099 4 3167 1738 +1429 whale_0xfd67 0x885c17ef... Titan Relay
14465354 0 3111 1683 +1428 0x8527d16c... Ultra Sound
14463686 5 3179 1752 +1427 p2porg 0xb26f9666... Titan Relay
14468182 5 3177 1752 +1425 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14465726 4 3162 1738 +1424 coinbase 0x8527d16c... Ultra Sound
14464289 7 3203 1779 +1424 whale_0xfd67 0xb67eaa5e... Titan Relay
14466325 21 3395 1972 +1423 blockdaemon_lido 0x88857150... Ultra Sound
14463442 6 3187 1766 +1421 p2porg 0x850b00e0... BloXroute Regulated
14463530 14 3297 1876 +1421 Local Local
14463563 3 3143 1724 +1419 whale_0xfd67 0x885c17ef... Titan Relay
14463771 0 3100 1683 +1417 p2porg 0x851b00b1... BloXroute Max Profit
14461892 1 3113 1697 +1416 p2porg 0x8db2a99d... Titan Relay
14461512 0 3098 1683 +1415 p2porg 0x851b00b1... BloXroute Max Profit
14465769 17 3332 1917 +1415 blockdaemon_lido 0xb26f9666... Titan Relay
14464618 0 3096 1683 +1413 p2porg 0x851b00b1... BloXroute Max Profit
14467354 0 3096 1683 +1413 p2porg 0x851b00b1... BloXroute Max Profit
14461298 0 3094 1683 +1411 coinbase 0xb26f9666... BloXroute Max Profit
14466923 1 3107 1697 +1410 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14462383 6 3174 1766 +1408 p2porg_lido 0xa230e2cf... BloXroute Max Profit
14462714 5 3159 1752 +1407 whale_0x8ebd 0xb26f9666... Ultra Sound
14461531 5 3159 1752 +1407 whale_0xedc6 0x885c17ef... BloXroute Max Profit
14464572 11 3240 1835 +1405 kiln 0x88a53ec4... BloXroute Max Profit
14466791 1 3102 1697 +1405 coinbase 0x8527d16c... Ultra Sound
14467955 5 3155 1752 +1403 figment 0xb26f9666... BloXroute Max Profit
14467529 2 3113 1710 +1403 p2porg 0xb26f9666... Titan Relay
14464448 6 3168 1766 +1402 whale_0xedc6 0x8db2a99d... Ultra Sound
14465886 0 3085 1683 +1402 0x851b00b1... BloXroute Max Profit
14465356 6 3167 1766 +1401 whale_0xedc6 0x850b00e0... BloXroute Max Profit
14465061 1 3098 1697 +1401 p2porg 0xb26f9666... Titan Relay
14461964 0 3082 1683 +1399 whale_0x8ebd 0xac09aa45... Flashbots
14466636 0 3082 1683 +1399 p2porg 0x851b00b1... BloXroute Max Profit
14461903 3 3123 1724 +1399 whale_0x8914 0x88857150... Ultra Sound
14463501 1 3095 1697 +1398 whale_0x8914 0xb7c5e609... BloXroute Max Profit
14463681 0 3081 1683 +1398 whale_0xedc6 0x851b00b1... BloXroute Max Profit
14467555 0 3080 1683 +1397 p2porg 0x851b00b1... BloXroute Max Profit
14465440 6 3161 1766 +1395 stakefish Local Local
14467820 6 3160 1766 +1394 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14463239 9 3201 1807 +1394 whale_0x8ebd 0x8527d16c... Ultra Sound
14466947 0 3076 1683 +1393 whale_0xfd67 0x88a53ec4... BloXroute Max Profit
14466237 1 3089 1697 +1392 p2porg 0x823e0146... Titan Relay
14466341 0 3075 1683 +1392 p2porg 0xb26f9666... Titan Relay
14464114 3 3115 1724 +1391 coinbase 0x9129eeb4... Ultra Sound
14467584 0 3072 1683 +1389 gateway.fmas_lido 0xac23f8cc... Flashbots
14462273 0 3071 1683 +1388 p2porg Local Local
14465235 5 3139 1752 +1387 0x8527d16c... Ultra Sound
14466043 9 3194 1807 +1387 p2porg 0x850b00e0... BloXroute Max Profit
14464491 6 3151 1766 +1385 whale_0x8ebd 0x8527d16c... Ultra Sound
14464699 5 3136 1752 +1384 p2porg_lido 0xb26f9666... Titan Relay
14467371 2 3092 1710 +1382 whale_0x8ebd 0x823e0146... Flashbots
14465509 0 3064 1683 +1381 p2porg_lido 0x8527d16c... Ultra Sound
14464478 1 3076 1697 +1379 coinbase 0x8527d16c... Ultra Sound
14462882 11 3213 1835 +1378 whale_0xedc6 0x850b00e0... BloXroute Max Profit
14467360 1 3075 1697 +1378 whale_0x8ebd 0x8527d16c... Ultra Sound
14463619 1 3075 1697 +1378 p2porg_lido 0x8527d16c... Ultra Sound
14467852 5 3130 1752 +1378 whale_0x6ddb 0x823e0146... BloXroute Max Profit
14462628 1 3074 1697 +1377 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14466509 0 3060 1683 +1377 p2porg 0x853b0078... BloXroute Max Profit
14462296 2 3085 1710 +1375 coinbase 0x88a53ec4... BloXroute Regulated
14463434 10 3195 1821 +1374 whale_0x8ebd 0xb67eaa5e... Ultra Sound
14465054 5 3126 1752 +1374 Local Local
14461626 0 3057 1683 +1374 p2porg 0x853b0078... BloXroute Regulated
14466857 5 3125 1752 +1373 coinbase 0x8527d16c... Ultra Sound
14468226 0 3056 1683 +1373 p2porg 0x99cba505... Flashbots
14461805 4 3111 1738 +1373 kiln 0xb26f9666... BloXroute Regulated
14461728 1 3068 1697 +1371 whale_0xedc6 0x85fb0503... BloXroute Max Profit
14463688 0 3054 1683 +1371 whale_0xfd67 0xb67eaa5e... BloXroute Max Profit
14462381 0 3054 1683 +1371 p2porg 0xb26f9666... BloXroute Regulated
14466177 4 3109 1738 +1371 whale_0x8ebd 0x8527d16c... Ultra Sound
14461571 3 3095 1724 +1371 p2porg 0xb26f9666... Titan Relay
14464260 2 3081 1710 +1371 0xb26f9666... BloXroute Regulated
14468166 0 3053 1683 +1370 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14466201 13 3232 1862 +1370 kiln 0xb26f9666... BloXroute Max Profit
14464030 10 3190 1821 +1369 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14466677 0 3052 1683 +1369 kiln 0xb26f9666... Titan Relay
14461753 0 3051 1683 +1368 coinbase 0x88a53ec4... BloXroute Max Profit
14466746 0 3050 1683 +1367 whale_0x8914 0xb67eaa5e... BloXroute Max Profit
14461645 0 3050 1683 +1367 0x856b0004... BloXroute Max Profit
14463031 3 3091 1724 +1367 p2porg_lido 0x8db2a99d... Titan Relay
14467673 1 3063 1697 +1366 blockdaemon_lido 0x8527d16c... Ultra Sound
14466391 10 3187 1821 +1366 blockdaemon 0x8527d16c... Ultra Sound
14468183 5 3118 1752 +1366 whale_0x8ebd 0xb26f9666... Titan Relay
14463802 0 3049 1683 +1366 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14465984 0 3049 1683 +1366 gateway.fmas_lido 0x850b00e0... BloXroute Regulated
14462705 0 3049 1683 +1366 p2porg 0x851b00b1... BloXroute Max Profit
14465216 0 3049 1683 +1366 p2porg 0xb26f9666... BloXroute Max Profit
14467426 1 3062 1697 +1365 whale_0xedc6 0x853b0078... BloXroute Max Profit
14462527 1 3062 1697 +1365 p2porg_lido 0xb26f9666... Ultra Sound
14464049 18 3296 1931 +1365 whale_0xba40 0x88857150... Ultra Sound
14468084 2 3075 1710 +1365 whale_0x8ebd 0xb26f9666... Ultra Sound
14461945 2 3075 1710 +1365 coinbase 0xb26f9666... Ultra Sound
14467580 15 3253 1890 +1363 coinbase 0x850b00e0... Flashbots
14465475 4 3101 1738 +1363 0x853b0078... BloXroute Regulated
14466539 4 3101 1738 +1363 whale_0x8ebd 0x8527d16c... Ultra Sound
14467234 3 3086 1724 +1362 whale_0x8ebd 0x8527d16c... Ultra Sound
14466872 0 3044 1683 +1361 coinbase 0x856b0004... Ultra Sound
14465464 12 3209 1848 +1361 p2porg 0x81f4ac6e... Flashbots
14461241 2 3071 1710 +1361 kiln 0xb67eaa5e... BloXroute Regulated
14467669 1 3057 1697 +1360 whale_0xedc6 0x856b0004... BloXroute Max Profit
14466513 7 3139 1779 +1360 coinbase 0x8527d16c... Ultra Sound
14462897 6 3125 1766 +1359 whale_0xedc6 0x850b00e0... Flashbots
14464026 13 3221 1862 +1359 whale_0x8914 0x885c17ef... Titan Relay
14461635 4 3096 1738 +1358 0x823e0146... BloXroute Max Profit
14465306 18 3288 1931 +1357 blockdaemon 0xb26f9666... Titan Relay
14463939 6 3121 1766 +1355 p2porg_lido 0x88857150... Ultra Sound
14466075 3 3078 1724 +1354 p2porg_lido 0x8527d16c... Ultra Sound
14461446 10 3174 1821 +1353 p2porg 0x853b0078... Titan Relay
14466048 0 3036 1683 +1353 coinbase 0xb26f9666... BloXroute Max Profit
14463090 8 3146 1793 +1353 whale_0x8ebd 0x8527d16c... Ultra Sound
14465678 11 3187 1835 +1352 whale_0x8ebd 0x9129eeb4... Ultra Sound
14466800 0 3035 1683 +1352 0x8527d16c... Ultra Sound
14467752 0 3035 1683 +1352 p2porg 0x856b0004... Ultra Sound
14465452 0 3035 1683 +1352 p2porg 0x83bee517... Flashbots
14466750 5 3103 1752 +1351 p2porg_lido 0x88857150... Ultra Sound
14462459 0 3034 1683 +1351 p2porg_lido 0x823e0146... Flashbots
14461546 2 3061 1710 +1351 p2porg 0x856b0004... BloXroute Max Profit
14466604 6 3116 1766 +1350 whale_0x23be 0x856b0004... BloXroute Max Profit
14468092 0 3033 1683 +1350 p2porg_lido 0x8527d16c... Ultra Sound
14465718 3 3074 1724 +1350 coinbase 0x856b0004... Agnostic Gnosis
14462960 12 3198 1848 +1350 whale_0x8ebd 0xb26f9666... Ultra Sound
14465359 6 3115 1766 +1349 coinbase 0x8527d16c... Ultra Sound
14467645 1 3046 1697 +1349 whale_0x8ebd 0x823e0146... Ultra Sound
14462570 5 3101 1752 +1349 whale_0x8ebd 0x8527d16c... Ultra Sound
14461666 5 3101 1752 +1349 coinbase 0x885c17ef... BloXroute Max Profit
14465855 0 3031 1683 +1348 p2porg_lido 0x8527d16c... Ultra Sound
14464907 0 3030 1683 +1347 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14464889 15 3236 1890 +1346 kiln 0x88a53ec4... BloXroute Regulated
14467339 10 3167 1821 +1346 whale_0x8ebd 0xb26f9666... Titan Relay
14464384 2 3056 1710 +1346 coinbase 0x8527d16c... Ultra Sound
14462369 11 3180 1835 +1345 coinbase 0xb72cae2f... Ultra Sound
14463964 5 3097 1752 +1345 figment 0xb26f9666... Titan Relay
14467008 0 3028 1683 +1345 coinbase 0xb67eaa5e... BloXroute Max Profit
14461366 1 3041 1697 +1344 whale_0x8ebd 0x8527d16c... Ultra Sound
14467215 9 3151 1807 +1344 whale_0x8ebd 0xb26f9666... Titan Relay
14461917 3 3068 1724 +1344 p2porg_lido 0x88857150... Ultra Sound
14463132 4 3081 1738 +1343 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14463374 0 3025 1683 +1342 figment 0xb26f9666... BloXroute Max Profit
14463237 0 3025 1683 +1342 kiln 0x99cba505... BloXroute Max Profit
14466339 6 3107 1766 +1341 p2porg 0x853b0078... BloXroute Max Profit
14465033 1 3038 1697 +1341 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14466385 3 3065 1724 +1341 coinbase 0x8527d16c... Ultra Sound
14467342 6 3106 1766 +1340 0x88857150... Ultra Sound
14465223 3 3064 1724 +1340 0x8db2a99d... Titan Relay
14462823 1 3036 1697 +1339 p2porg_lido 0x88857150... Ultra Sound
14462084 10 3160 1821 +1339 p2porg 0xb26f9666... Titan Relay
14465880 1 3035 1697 +1338 p2porg_lido 0x8527d16c... Ultra Sound
14464140 1 3035 1697 +1338 coinbase 0x8527d16c... Ultra Sound
14462964 1 3035 1697 +1338 p2porg_lido 0xb26f9666... Ultra Sound
14464733 5 3090 1752 +1338 p2porg_lido 0xb26f9666... Titan Relay
14466918 5 3090 1752 +1338 p2porg_lido 0x8527d16c... Ultra Sound
14465099 0 3021 1683 +1338 p2porg_lido 0x96f44633... BloXroute Max Profit
14466310 0 3021 1683 +1338 p2porg_lido 0x8527d16c... Ultra Sound
14467973 0 3020 1683 +1337 p2porg_lido 0x8527d16c... Ultra Sound
14462229 2 3047 1710 +1337 p2porg_lido 0x8527d16c... Ultra Sound
14462054 5 3088 1752 +1336 p2porg 0xb26f9666... Titan Relay
14467938 0 3019 1683 +1336 everstake 0xb26f9666... Titan Relay
14465659 1 3032 1697 +1335 0x8527d16c... Ultra Sound
14466278 0 3018 1683 +1335 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14462943 2 3045 1710 +1335 whale_0x8ebd 0xb26f9666... Ultra Sound
14461472 1 3031 1697 +1334 coinbase 0xb26f9666... BloXroute Regulated
14464700 6 3099 1766 +1333 whale_0x8ebd 0x853b0078... BloXroute Regulated
14465534 0 3016 1683 +1333 p2porg_lido 0x856b0004... Ultra Sound
14462715 2 3043 1710 +1333 solo_stakers 0x885c17ef... BloXroute Max Profit
14466010 6 3098 1766 +1332 whale_0x8ebd 0x8527d16c... Ultra Sound
14462424 6 3098 1766 +1332 kiln 0xb26f9666... Ultra Sound
14461870 1 3029 1697 +1332 0x8527d16c... Ultra Sound
14465960 5 3084 1752 +1332 whale_0x8ebd 0x8527d16c... Ultra Sound
14466653 5 3084 1752 +1332 whale_0x8ebd 0x8527d16c... Ultra Sound
14464759 0 3015 1683 +1332 coinbase 0xb26f9666... Titan Relay
14466468 0 3015 1683 +1332 kiln 0x851b00b1... BloXroute Max Profit
14467773 9 3139 1807 +1332 whale_0x8914 0x88857150... Ultra Sound
14465840 17 3248 1917 +1331 whale_0x8914 0x88857150... Ultra Sound
14465959 7 3110 1779 +1331 kiln 0x88a53ec4... BloXroute Regulated
14463900 1 3027 1697 +1330 whale_0x8ebd 0x88857150... Ultra Sound
14467586 3 3054 1724 +1330 0xb26f9666... BloXroute Max Profit
14462465 0 3012 1683 +1329 whale_0x8ebd 0xb26f9666... Ultra Sound
14461597 1 3024 1697 +1327 whale_0x8ebd 0xb26f9666... Ultra Sound
14467326 0 3009 1683 +1326 coinbase 0x8527d16c... Ultra Sound
14466211 0 3009 1683 +1326 coinbase 0x88857150... Ultra Sound
14463286 10 3146 1821 +1325 p2porg_lido 0x856b0004... Ultra Sound
14462160 0 3008 1683 +1325 p2porg_lido 0x8527d16c... Ultra Sound
14461977 9 3132 1807 +1325 0x823e0146... Ultra Sound
14465685 2 3035 1710 +1325 p2porg_lido 0xb4ce6162... Ultra Sound
14463546 0 3007 1683 +1324 coinbase 0x8527d16c... Ultra Sound
14461297 0 3007 1683 +1324 whale_0x8ebd 0xb26f9666... Ultra Sound
14465123 0 3007 1683 +1324 kiln 0x8527d16c... Ultra Sound
14462359 0 3006 1683 +1323 kiln 0x856b0004... BloXroute Max Profit
14466055 6 3088 1766 +1322 p2porg 0xb26f9666... Titan Relay
14461237 0 3005 1683 +1322 coinbase 0xb26f9666... Ultra Sound
14468371 0 3005 1683 +1322 kiln 0x8db2a99d... Ultra Sound
14463157 7 3101 1779 +1322 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14466755 1 3018 1697 +1321 everstake 0xb26f9666... Titan Relay
14465177 16 3224 1903 +1321 whale_0x93db 0xb67eaa5e... BloXroute Regulated
14463115 5 3072 1752 +1320 whale_0x8ebd 0xb26f9666... Ultra Sound
14464174 0 3003 1683 +1320 coinbase 0x8527d16c... Ultra Sound
14466848 3 3044 1724 +1320 coinbase 0x8527d16c... Ultra Sound
14463979 5 3071 1752 +1319 coinbase 0xb26f9666... Titan Relay
14465042 1 3015 1697 +1318 figment 0x823e0146... BloXroute Max Profit
14462820 5 3070 1752 +1318 kiln 0xb26f9666... Titan Relay
14466318 0 3001 1683 +1318 p2porg 0x853b0078... Ultra Sound
14466928 2 3028 1710 +1318 everstake 0xa230e2cf... BloXroute Max Profit
14463210 1 3014 1697 +1317 whale_0xedc6 0x85fb0503... BloXroute Max Profit
14465390 15 3206 1890 +1316 kiln 0x8527d16c... Ultra Sound
14461603 1 3013 1697 +1316 everstake 0xb26f9666... Ultra Sound
14462977 5 3068 1752 +1316 p2porg_lido 0x856b0004... Ultra Sound
14467344 5 3068 1752 +1316 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14464275 6 3081 1766 +1315 coinbase Local Local
14467982 1 3012 1697 +1315 coinbase 0x8db2a99d... BloXroute Max Profit
14464571 1 3011 1697 +1314 0x823e0146... Flashbots
14467710 5 3066 1752 +1314 p2porg 0x853b0078... BloXroute Regulated
14461209 5 3066 1752 +1314 whale_0x8ebd 0xb26f9666... Titan Relay
14465372 6 3079 1766 +1313 p2porg_lido 0x8527d16c... Ultra Sound
14466804 13 3175 1862 +1313 0xb26f9666... BloXroute Regulated
14463991 12 3161 1848 +1313 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14466963 2 3023 1710 +1313 coinbase 0x8527d16c... Ultra Sound
14465380 5 3063 1752 +1311 kiln 0x8527d16c... Ultra Sound
14464607 5 3063 1752 +1311 coinbase 0x8527d16c... Ultra Sound
14467936 14 3187 1876 +1311 p2porg 0xb26f9666... BloXroute Regulated
14465725 9 3118 1807 +1311 kiln 0xb26f9666... BloXroute Max Profit
14461400 6 3076 1766 +1310 kiln 0x8527d16c... Ultra Sound
14465504 10 3131 1821 +1310 kiln 0x853b0078... BloXroute Max Profit
14462813 3 3034 1724 +1310 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14463721 4 3047 1738 +1309 whale_0x8ebd 0xb26f9666... Ultra Sound
14464308 8 3102 1793 +1309 kiln 0x8527d16c... Ultra Sound
14463968 1 3005 1697 +1308 coinbase 0x823e0146... Flashbots
14464742 4 3046 1738 +1308 everstake 0x850b00e0... BloXroute Max Profit
14468083 4 3045 1738 +1307 coinbase 0x8527d16c... Ultra Sound
14465117 9 3113 1807 +1306 p2porg 0x850b00e0... BloXroute Regulated
14467141 8 3098 1793 +1305 coinbase 0x8527d16c... Ultra Sound
14463500 5 3056 1752 +1304 p2porg 0x856b0004... Ultra Sound
14462355 1 3000 1697 +1303 kiln 0x85fb0503... BloXroute Max Profit
14464361 0 2986 1683 +1303 kiln 0x8527d16c... Ultra Sound
14465222 0 2986 1683 +1303 p2porg 0x8db2a99d... BloXroute Max Profit
14466169 3 3027 1724 +1303 whale_0x8ebd 0x8527d16c... Ultra Sound
14464936 7 3082 1779 +1303 everstake 0xb67eaa5e... BloXroute Max Profit
14468269 0 2985 1683 +1302 coinbase 0xb26f9666... BloXroute Max Profit
14462451 7 3081 1779 +1302 coinbase 0xb26f9666... Ultra Sound
14462281 2 3012 1710 +1302 kiln 0xb26f9666... BloXroute Max Profit
14461437 4 3039 1738 +1301 whale_0x8ebd 0x8527d16c... Ultra Sound
14467513 6 3066 1766 +1300 0x8527d16c... Ultra Sound
14463842 19 3245 1945 +1300 whale_0x8ebd 0xb26f9666... Ultra Sound
14466691 2 3010 1710 +1300 kiln 0x8527d16c... Ultra Sound
14468110 6 3065 1766 +1299 kiln 0xb26f9666... BloXroute Regulated
14466316 6 3065 1766 +1299 whale_0x8ebd 0xb26f9666... Titan Relay
14464293 6 3065 1766 +1299 kiln 0xb26f9666... BloXroute Max Profit
14462932 1 2996 1697 +1299 kiln 0xb26f9666... BloXroute Max Profit
14463398 0 2982 1683 +1299 p2porg_lido 0xb26f9666... Ultra Sound
14463372 0 2981 1683 +1298 p2porg_lido 0x823e0146... Ultra Sound
14465555 17 3215 1917 +1298 0x8527d16c... Ultra Sound
14467965 1 2994 1697 +1297 whale_0x8ebd 0x856b0004... Agnostic Gnosis
14467583 5 3049 1752 +1297 p2porg_lido 0x8527d16c... Ultra Sound
14467847 7 3076 1779 +1297 whale_0x8ebd 0xa965c911... Ultra Sound
14468086 8 3089 1793 +1296 kiln 0x856b0004... Ultra Sound
14463125 7 3075 1779 +1296 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14463196 1 2992 1697 +1295 kiln 0x88857150... Ultra Sound
14465851 13 3157 1862 +1295 kraken 0x8a850621... EthGas
14464987 6 3060 1766 +1294 kiln 0xb67eaa5e... BloXroute Regulated
14468368 5 3046 1752 +1294 0x856b0004... Aestus
14466483 7 3073 1779 +1294 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14467803 0 2975 1683 +1292 0x853b0078... BloXroute Max Profit
14461289 1 2988 1697 +1291 everstake 0xb26f9666... Titan Relay
14465219 10 3112 1821 +1291 p2porg 0x823e0146... Ultra Sound
14461783 5 3043 1752 +1291 coinbase 0x853b0078... BloXroute Max Profit
14462737 0 2974 1683 +1291 kiln 0xa230e2cf... BloXroute Max Profit
14467443 7 3070 1779 +1291 kiln 0x8527d16c... Ultra Sound
14462806 1 2987 1697 +1290 whale_0x8ebd 0xb26f9666... Ultra Sound
14464273 5 3042 1752 +1290 coinbase 0x8527d16c... Ultra Sound
14462131 4 3028 1738 +1290 coinbase 0x8527d16c... Ultra Sound
14461261 7 3069 1779 +1290 coinbase 0x8527d16c... Ultra Sound
14466463 11 3124 1835 +1289 0x856b0004... Ultra Sound
14465091 20 3248 1959 +1289 kiln 0x88a53ec4... BloXroute Regulated
14466828 5 3041 1752 +1289 everstake 0xb26f9666... Titan Relay
14463386 5 3040 1752 +1288 kiln 0x8527d16c... Ultra Sound
14463448 5 3040 1752 +1288 p2porg_lido 0x823e0146... BloXroute Max Profit
14462961 5 3040 1752 +1288 p2porg 0x823e0146... BloXroute Max Profit
14464778 11 3122 1835 +1287 p2porg 0xb26f9666... Titan Relay
14461754 1 2984 1697 +1287 kiln 0xb26f9666... Ultra Sound
14467071 0 2968 1683 +1285 kiln 0x8527d16c... Ultra Sound
14461284 4 3023 1738 +1285 everstake 0xb26f9666... Titan Relay
14464025 4 3022 1738 +1284 coinbase 0x856b0004... Ultra Sound
14466474 12 3131 1848 +1283 coinbase 0x8527d16c... Ultra Sound
14467294 2 2993 1710 +1283 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14466866 8 3074 1793 +1281 0x8527d16c... Ultra Sound
Total anomalies: 466

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