Thu, May 7, 2026

Propagation anomalies - 2026-05-07

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

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

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

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

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

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

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

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

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

-- Column arrival timing: first arrival per column, then min/max of those
column_gossip AS (
    SELECT
        slot,
        min(first_seen) AS first_column_first_seen,
        max(first_seen) AS last_column_first_seen
    FROM (
        SELECT
            slot,
            column_index,
            min(event_date_time) AS first_seen
        FROM libp2p_gossipsub_data_column_sidecar
        WHERE meta_network_name = 'mainnet'
          AND slot_start_date_time >= '2026-05-07' AND slot_start_date_time < '2026-05-07'::date + INTERVAL 1 DAY
          AND event_date_time > '1970-01-01 00:00:01'
        GROUP BY slot, column_index
    )
    GROUP BY slot
)

SELECT
    s.slot AS slot,
    s.slot_start_date_time AS slot_start_date_time,
    pe.entity AS proposer_entity,

    -- Blob count
    coalesce(bc.blob_count, 0) AS blob_count,

    -- MEV bid timing (absolute and relative to slot start)
    fromUnixTimestamp64Milli(mb.first_bid_timestamp_ms) AS first_bid_at,
    mb.first_bid_timestamp_ms - toInt64(toUnixTimestamp(mb.slot_start_date_time)) * 1000 AS first_bid_ms,
    fromUnixTimestamp64Milli(mb.last_bid_timestamp_ms) AS last_bid_at,
    mb.last_bid_timestamp_ms - toInt64(toUnixTimestamp(mb.slot_start_date_time)) * 1000 AS last_bid_ms,

    -- Winning bid timing (from bid_trace, may be NULL if block hash not in bid_trace)
    if(wb.slot != 0, fromUnixTimestamp64Milli(wb.winning_bid_timestamp_ms), NULL) AS winning_bid_at,
    if(wb.slot != 0, wb.winning_bid_timestamp_ms - toInt64(toUnixTimestamp(s.slot_start_date_time)) * 1000, NULL) AS winning_bid_ms,

    -- MEV payload info (from proposer_payload_delivered, always present for MEV blocks)
    if(mp.is_mev = 1, mp.winning_bid_value, NULL) AS winning_bid_value,
    if(mp.is_mev = 1, mp.relay_names, []) AS winning_relays,
    if(mp.is_mev = 1, mp.winning_builder, NULL) AS winning_builder,

    -- Block gossip timing with spread
    bg.block_first_seen,
    dateDiff('millisecond', s.slot_start_date_time, bg.block_first_seen) AS block_first_seen_ms,
    bg.block_last_seen,
    dateDiff('millisecond', s.slot_start_date_time, bg.block_last_seen) AS block_last_seen_ms,
    dateDiff('millisecond', bg.block_first_seen, bg.block_last_seen) AS block_spread_ms,

    -- Column arrival timing (NULL when no blobs)
    if(coalesce(bc.blob_count, 0) = 0, NULL, cg.first_column_first_seen) AS first_column_first_seen,
    if(coalesce(bc.blob_count, 0) = 0, NULL, dateDiff('millisecond', s.slot_start_date_time, cg.first_column_first_seen)) AS first_column_first_seen_ms,
    if(coalesce(bc.blob_count, 0) = 0, NULL, cg.last_column_first_seen) AS last_column_first_seen,
    if(coalesce(bc.blob_count, 0) = 0, NULL, dateDiff('millisecond', s.slot_start_date_time, cg.last_column_first_seen)) AS last_column_first_seen_ms,
    if(coalesce(bc.blob_count, 0) = 0, NULL, dateDiff('millisecond', cg.first_column_first_seen, cg.last_column_first_seen)) AS column_spread_ms

FROM slots s
GLOBAL LEFT JOIN proposer_entity pe ON s.proposer_validator_index = pe.index
GLOBAL LEFT JOIN blob_count bc ON s.slot = bc.slot
GLOBAL LEFT JOIN mev_bids mb ON s.slot = mb.slot
GLOBAL LEFT JOIN mev_payload mp ON s.slot = mp.slot
GLOBAL LEFT JOIN winning_bid wb ON s.slot = wb.slot
GLOBAL LEFT JOIN block_gossip bg ON s.slot = bg.slot
GLOBAL LEFT JOIN column_gossip cg ON s.slot = cg.slot

ORDER BY s.slot DESC
Show code
df = load_parquet("block_production_timeline", target_date)

# Filter to valid blocks (exclude missed slots)
df = df[df["block_first_seen_ms"].notna()]
df = df[(df["block_first_seen_ms"] >= 0) & (df["block_first_seen_ms"] < 60000)]

# Flag MEV vs local blocks
df["has_mev"] = df["winning_bid_value"].notna()
df["block_type"] = df["has_mev"].map({True: "MEV", False: "Local"})

# Get max blob count for charts
max_blobs = df["blob_count"].max()

print(f"Total valid blocks: {len(df):,}")
print(f"MEV blocks: {df['has_mev'].sum():,} ({df['has_mev'].mean()*100:.1f}%)")
print(f"Local blocks: {(~df['has_mev']).sum():,} ({(~df['has_mev']).mean()*100:.1f}%)")
Total valid blocks: 7,185
MEV blocks: 6,758 (94.1%)
Local blocks: 427 (5.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 = 1688.9 + 14.16 × blob_count (R² = 0.007)
Residual σ = 626.6ms
Anomalies (>2σ slow): 479 (6.7%)
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
14278720 0 12129 1689 +10440 whale_0x4fd7 Local Local
14277711 0 10473 1689 +8784 develpgmbh_lido Local Local
14277314 0 5949 1689 +4260 solo_stakers Local Local
14275936 0 5280 1689 +3591 upbit Local Local
14279456 0 5161 1689 +3472 upbit Local Local
14279296 3 5068 1731 +3337 upbit Local Local
14275776 0 4950 1689 +3261 upbit Local Local
14276320 0 4848 1689 +3159 upbit Local Local
14275008 0 4235 1689 +2546 blockdaemon_lido Local Local
14277924 0 3981 1689 +2292 everstake Local Local
14278759 0 3949 1689 +2260 Local Local
14274661 1 3755 1703 +2052 kraken 0xb26f9666... Titan Relay
14274496 6 3771 1774 +1997 blockdaemon 0x8527d16c... Ultra Sound
14279698 7 3712 1788 +1924 whale_0xfd67 0x857b0038... BloXroute Max Profit
14275136 0 3594 1689 +1905 revolut 0xb26f9666... Titan Relay
14279133 8 3665 1802 +1863 blockdaemon_lido 0x857b0038... BloXroute Regulated
14279242 10 3689 1831 +1858 whale_0x8ebd 0x857b0038... BloXroute Max Profit
14276963 1 3502 1703 +1799 ether.fi 0xb67eaa5e... Titan Relay
14276289 1 3500 1703 +1797 Local Local
14274533 0 3460 1689 +1771 blockdaemon 0xb4ce6162... Ultra Sound
14276967 4 3502 1746 +1756 blockdaemon 0x857b0038... BloXroute Max Profit
14274618 5 3516 1760 +1756 nethermind_lido 0x856b0004... BloXroute Max Profit
14276834 0 3440 1689 +1751 nethermind_lido 0x856b0004... BloXroute Max Profit
14276231 1 3450 1703 +1747 stakefish 0x857b0038... BloXroute Max Profit
14275900 6 3510 1774 +1736 blockdaemon 0xa965c911... Ultra Sound
14279904 0 3412 1689 +1723 bitstamp 0xb67eaa5e... BloXroute Regulated
14275330 6 3492 1774 +1718 blockdaemon 0x8a850621... Titan Relay
14277691 1 3417 1703 +1714 ether.fi 0xb67eaa5e... Titan Relay
14276145 1 3394 1703 +1691 blockdaemon_lido 0x856b0004... BloXroute Max Profit
14278633 1 3391 1703 +1688 whale_0xdc8d Local Local
14278138 3 3416 1731 +1685 everstake 0x857b0038... BloXroute Max Profit
14274556 9 3500 1816 +1684 blockdaemon_lido 0xb4ce6162... Ultra Sound
14275822 10 3511 1831 +1680 blockdaemon_lido 0x88857150... Ultra Sound
14274301 5 3438 1760 +1678 blockdaemon_lido 0xb67eaa5e... Titan Relay
14277191 5 3423 1760 +1663 blockdaemon 0x8527d16c... Ultra Sound
14278850 0 3352 1689 +1663 whale_0xdc8d 0x88a53ec4... BloXroute Regulated
14279876 8 3465 1802 +1663 blockdaemon 0x8db2a99d... BloXroute Max Profit
14276135 1 3361 1703 +1658 0xb26f9666... Titan Relay
14277629 1 3356 1703 +1653 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14278371 8 3455 1802 +1653 whale_0xdc8d 0x8527d16c... Ultra Sound
14277904 5 3409 1760 +1649 ether.fi 0xb26f9666... Titan Relay
14278598 3 3376 1731 +1645 lido 0x856b0004... BloXroute Max Profit
14277798 8 3444 1802 +1642 ether.fi 0x850b00e0... BloXroute Max Profit
14280214 5 3401 1760 +1641 blockdaemon 0xb4ce6162... Ultra Sound
14279356 8 3441 1802 +1639 blockdaemon_lido 0x88857150... Ultra Sound
14275232 1 3341 1703 +1638 figment 0xb26f9666... Titan Relay
14275865 0 3325 1689 +1636 blockdaemon 0x8a850621... Titan Relay
14280864 1 3338 1703 +1635 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14276391 6 3407 1774 +1633 blockdaemon 0x857b0038... BloXroute Max Profit
14277670 6 3406 1774 +1632 ether.fi 0x850b00e0... BloXroute Max Profit
14276598 2 3347 1717 +1630 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
14274061 5 3389 1760 +1629 ether.fi 0xb26f9666... Titan Relay
14276581 0 3316 1689 +1627 revolut 0x851b00b1... BloXroute Max Profit
14276801 5 3384 1760 +1624 0xb26f9666... Titan Relay
14279775 1 3326 1703 +1623 whale_0xdc8d 0x856b0004... BloXroute Max Profit
14278221 0 3308 1689 +1619 blockdaemon 0x856b0004... BloXroute Max Profit
14277999 2 3336 1717 +1619 0x856b0004... BloXroute Max Profit
14277909 1 3320 1703 +1617 whale_0x8914 0x857b0038... BloXroute Max Profit
14280002 5 3376 1760 +1616 0xb67eaa5e... Ultra Sound
14275249 6 3389 1774 +1615 blockdaemon_lido 0xb67eaa5e... Titan Relay
14276312 6 3389 1774 +1615 blockdaemon_lido 0xa965c911... Ultra Sound
14277348 0 3304 1689 +1615 blockdaemon 0x8527d16c... Ultra Sound
14280077 0 3302 1689 +1613 ether.fi 0x83bee517... BloXroute Max Profit
14277172 0 3301 1689 +1612 blockdaemon 0xb26f9666... Titan Relay
14277993 0 3301 1689 +1612 blockdaemon 0x88857150... Ultra Sound
14279680 1 3315 1703 +1612 p2porg 0x850b00e0... BloXroute Regulated
14274458 1 3315 1703 +1612 blockdaemon 0xb26f9666... Titan Relay
14276802 5 3371 1760 +1611 blockdaemon 0xb4ce6162... Ultra Sound
14279820 6 3384 1774 +1610 blockdaemon 0xb4ce6162... Ultra Sound
14279988 4 3355 1746 +1609 blockdaemon 0x8527d16c... Ultra Sound
14278820 5 3364 1760 +1604 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
14276613 7 3387 1788 +1599 blockdaemon 0x8527d16c... Ultra Sound
14274263 1 3302 1703 +1599 coinbase 0x857b0038... BloXroute Max Profit
14274647 5 3358 1760 +1598 luno 0x8527d16c... Ultra Sound
14280643 15 3498 1901 +1597 0x856b0004... BloXroute Max Profit
14277382 0 3285 1689 +1596 blockdaemon_lido 0xb26f9666... Titan Relay
14277438 0 3284 1689 +1595 blockdaemon 0x8db2a99d... Ultra Sound
14275475 6 3367 1774 +1593 blockdaemon_lido 0x88857150... Ultra Sound
14276984 0 3280 1689 +1591 ether.fi 0x851b00b1... BloXroute Max Profit
14276957 8 3392 1802 +1590 whale_0xdc8d 0x8db2a99d... BloXroute Max Profit
14274302 1 3288 1703 +1585 0x857b0038... BloXroute Max Profit
14279757 3 3316 1731 +1585 everstake 0x857b0038... BloXroute Max Profit
14274649 1 3287 1703 +1584 whale_0x8ebd Local Local
14277004 6 3356 1774 +1582 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14280968 0 3270 1689 +1581 blockdaemon_lido 0x88857150... Ultra Sound
14278731 7 3369 1788 +1581 ether.fi 0x856b0004... BloXroute Max Profit
14279742 0 3268 1689 +1579 ether.fi 0x805e28e6... BloXroute Max Profit
14280550 7 3366 1788 +1578 whale_0xdc8d 0x856b0004... BloXroute Max Profit
14274394 8 3377 1802 +1575 blockdaemon 0x88857150... Ultra Sound
14279733 4 3320 1746 +1574 0x8527d16c... Ultra Sound
14278112 0 3261 1689 +1572 rocklogicgmbh_lido 0x856b0004... BloXroute Max Profit
14280828 1 3271 1703 +1568 blockdaemon 0x856b0004... BloXroute Max Profit
14274134 0 3255 1689 +1566 blockdaemon_lido 0x8527d16c... Ultra Sound
14277847 0 3253 1689 +1564 0x857b0038... BloXroute Max Profit
14276951 18 3507 1944 +1563 blockdaemon 0x850b00e0... BloXroute Max Profit
14279688 0 3252 1689 +1563 whale_0x6ddb 0x851b00b1... Ultra Sound
14279871 2 3280 1717 +1563 whale_0xfd67 0x8db2a99d... Ultra Sound
14276997 1 3264 1703 +1561 whale_0xdc8d 0xb26f9666... Titan Relay
14274979 4 3306 1746 +1560 whale_0x3878 0x850b00e0... Ultra Sound
14280559 0 3243 1689 +1554 blockdaemon_lido 0xb67eaa5e... Titan Relay
14279075 1 3256 1703 +1553 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
14274613 1 3256 1703 +1553 luno 0x8527d16c... Ultra Sound
14276500 5 3312 1760 +1552 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14276460 0 3241 1689 +1552 blockdaemon_lido 0x851b00b1... BloXroute Max Profit
14278462 3 3279 1731 +1548 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14278785 4 3291 1746 +1545 whale_0x8914 0x8db2a99d... Ultra Sound
14276399 9 3359 1816 +1543 blockdaemon 0x856b0004... BloXroute Max Profit
14281182 6 3313 1774 +1539 blockdaemon_lido 0x823e0146... Ultra Sound
14277649 0 3226 1689 +1537 revolut 0xb26f9666... Titan Relay
14275310 0 3225 1689 +1536 blockdaemon_lido 0x851b00b1... BloXroute Max Profit
14275376 5 3294 1760 +1534 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
14276681 8 3335 1802 +1533 blockdaemon_lido 0x8527d16c... Ultra Sound
14274273 4 3278 1746 +1532 p2porg 0x850b00e0... BloXroute Regulated
14274958 0 3221 1689 +1532 kiln Local Local
14277445 2 3248 1717 +1531 solo_stakers 0xb4ce6162... Ultra Sound
14279063 1 3233 1703 +1530 blockdaemon_lido 0x88857150... Ultra Sound
14280219 2 3247 1717 +1530 blockdaemon_lido 0x8db2a99d... Titan Relay
14276728 6 3303 1774 +1529 blockdaemon 0x856b0004... BloXroute Max Profit
14274010 9 3345 1816 +1529 blockdaemon_lido 0x8db2a99d... Ultra Sound
14279180 5 3288 1760 +1528 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14277597 8 3330 1802 +1528 revolut 0xb26f9666... Titan Relay
14279029 1 3228 1703 +1525 whale_0x4b5e 0x850b00e0... Ultra Sound
14278587 0 3211 1689 +1522 revolut 0x851b00b1... BloXroute Max Profit
14275621 6 3295 1774 +1521 blockdaemon 0x850b00e0... BloXroute Max Profit
14280284 6 3294 1774 +1520 gateway.fmas_lido Local Local
14277882 5 3277 1760 +1517 whale_0xdc8d 0x8527d16c... Ultra Sound
14279297 0 3204 1689 +1515 kraken 0x8e7f955e... EthGas
14275902 6 3287 1774 +1513 blockdaemon 0x8527d16c... Ultra Sound
14276855 5 3270 1760 +1510 kiln 0xb67eaa5e... BloXroute Max Profit
14276368 0 3199 1689 +1510 whale_0xfd67 0x851b00b1... Ultra Sound
14275282 0 3198 1689 +1509 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
14277695 0 3192 1689 +1503 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
14275832 3 3234 1731 +1503 revolut 0x88857150... Ultra Sound
14279355 0 3191 1689 +1502 whale_0xfd67 0x851b00b1... Ultra Sound
14275257 8 3304 1802 +1502 blockdaemon_lido 0x8527d16c... Ultra Sound
14279277 10 3331 1831 +1500 p2porg 0x88a53ec4... BloXroute Regulated
14276620 0 3186 1689 +1497 whale_0xfd67 0xb67eaa5e... Titan Relay
14275886 1 3199 1703 +1496 p2porg 0x850b00e0... BloXroute Regulated
14274697 5 3255 1760 +1495 revolut 0xb26f9666... Titan Relay
14277536 6 3267 1774 +1493 p2porg 0x850b00e0... BloXroute Regulated
14275045 5 3251 1760 +1491 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14274254 0 3179 1689 +1490 whale_0x4b5e 0x851b00b1... Ultra Sound
14278912 0 3179 1689 +1490 0x8db2a99d... BloXroute Max Profit
14278619 1 3191 1703 +1488 whale_0x4b5e 0xb67eaa5e... Titan Relay
14280703 9 3303 1816 +1487 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
14274349 5 3245 1760 +1485 p2porg 0xa965c911... Ultra Sound
14280034 1 3188 1703 +1485 coinbase 0xb26f9666... Titan Relay
14274592 7 3272 1788 +1484 p2porg 0xb26f9666... BloXroute Max Profit
14278407 5 3242 1760 +1482 revolut 0xa965c911... Ultra Sound
14280358 6 3256 1774 +1482 blockdaemon_lido 0x856b0004... BloXroute Max Profit
14278230 0 3170 1689 +1481 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
14276126 8 3280 1802 +1478 p2porg 0x850b00e0... BloXroute Regulated
14280944 1 3179 1703 +1476 whale_0xfd67 0xb67eaa5e... Titan Relay
14277245 0 3163 1689 +1474 blockdaemon_lido 0xba003e46... BloXroute Max Profit
14275749 6 3246 1774 +1472 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14278413 1 3174 1703 +1471 whale_0x4b5e 0x8db2a99d... Ultra Sound
14280551 1 3174 1703 +1471 blockdaemon 0x8db2a99d... Ultra Sound
14278781 4 3216 1746 +1470 stader 0xb26f9666... Titan Relay
14281157 1 3173 1703 +1470 revolut 0x8527d16c... Ultra Sound
14276110 9 3282 1816 +1466 whale_0x8914 0xb67eaa5e... Titan Relay
14280638 8 3267 1802 +1465 coinbase 0x8527d16c... Ultra Sound
14279473 5 3224 1760 +1464 p2porg 0x850b00e0... BloXroute Regulated
14276973 1 3167 1703 +1464 blockdaemon 0x8527d16c... Ultra Sound
14277532 0 3151 1689 +1462 whale_0xdc8d 0x823e0146... BloXroute Max Profit
14277685 9 3278 1816 +1462 p2porg 0x850b00e0... BloXroute Regulated
14276847 0 3147 1689 +1458 blockdaemon_lido 0x851b00b1... BloXroute Max Profit
14279989 0 3146 1689 +1457 whale_0x8914 0x8db2a99d... Ultra Sound
14279478 5 3216 1760 +1456 blockdaemon 0x8527d16c... Ultra Sound
14280629 3 3187 1731 +1456 whale_0x6ddb 0x88857150... Ultra Sound
14279151 6 3229 1774 +1455 solo_stakers 0xb4ce6162... Ultra Sound
14278624 5 3213 1760 +1453 nethermind_lido 0x850b00e0... Flashbots
14280374 5 3210 1760 +1450 p2porg 0xb67eaa5e... Ultra Sound
14279760 0 3139 1689 +1450 p2porg 0x851b00b1... Ultra Sound
14276946 0 3139 1689 +1450 gateway.fmas_lido 0x856b0004... BloXroute Max Profit
14280333 1 3151 1703 +1448 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14279142 1 3149 1703 +1446 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14278336 11 3290 1845 +1445 kraken 0xb26f9666... EthGas
14276605 6 3219 1774 +1445 coinbase 0xb67eaa5e... BloXroute Max Profit
14278385 0 3134 1689 +1445 stader 0xb26f9666... BloXroute Max Profit
14277692 5 3203 1760 +1443 gateway.fmas_lido 0x8527d16c... Ultra Sound
14277890 3 3174 1731 +1443 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
14275791 5 3202 1760 +1442 gateway.fmas_lido 0x856b0004... Ultra Sound
14276336 0 3128 1689 +1439 whale_0x4b5e 0x851b00b1... Ultra Sound
14274960 0 3127 1689 +1438 whale_0x8914 0x856b0004... Ultra Sound
14278875 3 3167 1731 +1436 whale_0x8914 0xb67eaa5e... Aestus
14281159 6 3209 1774 +1435 whale_0x8ebd Local Local
14275068 7 3223 1788 +1435 coinbase 0x850b00e0... BloXroute Max Profit
14280115 0 3123 1689 +1434 whale_0x8ebd 0x851b00b1... BloXroute Max Profit
14275329 1 3136 1703 +1433 solo_stakers 0x85fb0503... Ultra Sound
14280764 9 3249 1816 +1433 whale_0x8914 0xb67eaa5e... Ultra Sound
14277672 5 3190 1760 +1430 p2porg 0x850b00e0... BloXroute Regulated
14274159 0 3118 1689 +1429 whale_0x8ebd 0x85fb0503... Agnostic Gnosis
14277037 4 3174 1746 +1428 kiln 0xb67eaa5e... BloXroute Max Profit
14278849 5 3188 1760 +1428 whale_0x8914 0xb67eaa5e... Titan Relay
14280831 6 3202 1774 +1428 whale_0x8914 0xb67eaa5e... Titan Relay
14278713 5 3187 1760 +1427 p2porg 0x850b00e0... BloXroute Regulated
14276393 5 3186 1760 +1426 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
14275162 5 3185 1760 +1425 whale_0x8ebd 0x8527d16c... Ultra Sound
14275493 5 3183 1760 +1423 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14276351 12 3282 1859 +1423 coinbase 0xb7c5e609... BloXroute Max Profit
14275893 6 3196 1774 +1422 kiln 0xb67eaa5e... BloXroute Regulated
14277031 0 3111 1689 +1422 p2porg 0x850b00e0... BloXroute Regulated
14277581 1 3125 1703 +1422 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14280901 11 3266 1845 +1421 whale_0x8914 0xb67eaa5e... Titan Relay
14280439 2 3138 1717 +1421 coinbase 0x850b00e0... BloXroute Max Profit
14277848 7 3208 1788 +1420 coinbase Local Local
14279586 6 3193 1774 +1419 whale_0x8ebd 0xb26f9666... Titan Relay
14274966 0 3108 1689 +1419 whale_0x3878 0x96f44633... Ultra Sound
14274257 1 3120 1703 +1417 gateway.fmas_lido 0x85fb0503... Aestus
14277147 6 3190 1774 +1416 gateway.fmas_lido 0x8527d16c... Ultra Sound
14280928 8 3216 1802 +1414 solo_stakers 0x850b00e0... BloXroute Max Profit
14277114 0 3101 1689 +1412 whale_0x8914 0xb67eaa5e... BloXroute Regulated
14279581 7 3200 1788 +1412 p2porg 0x8db2a99d... BloXroute Max Profit
14276724 0 3100 1689 +1411 whale_0x6ddb 0x85fb0503... Ultra Sound
14276758 1 3114 1703 +1411 coinbase 0xb26f9666... Titan Relay
14274986 3 3142 1731 +1411 gateway.fmas_lido 0x823e0146... BloXroute Max Profit
14275828 0 3098 1689 +1409 coinbase 0xb26f9666... BloXroute Max Profit
14281141 5 3168 1760 +1408 whale_0x8ebd 0xb26f9666... Titan Relay
14275238 6 3182 1774 +1408 blockdaemon_lido 0xb26f9666... Titan Relay
14274777 13 3281 1873 +1408 0xb26f9666... BloXroute Max Profit
14275305 1 3111 1703 +1408 coinbase 0xb26f9666... Titan Relay
14280047 0 3096 1689 +1407 p2porg 0x850b00e0... BloXroute Regulated
14278212 0 3096 1689 +1407 simplystaking_lido 0x851b00b1... BloXroute Max Profit
14278405 0 3095 1689 +1406 p2porg 0x850b00e0... BloXroute Regulated
14275323 2 3122 1717 +1405 gateway.fmas_lido 0x8527d16c... Ultra Sound
14279497 0 3093 1689 +1404 p2porg 0xb26f9666... Titan Relay
14275692 14 3291 1887 +1404 kraken 0xb26f9666... EthGas
14277719 5 3163 1760 +1403 kiln 0xb26f9666... BloXroute Max Profit
14274662 5 3163 1760 +1403 whale_0x8ebd 0x8527d16c... Ultra Sound
14277259 6 3177 1774 +1403 whale_0x8ebd 0x8527d16c... Ultra Sound
14274683 0 3089 1689 +1400 whale_0x8914 0x856b0004... BloXroute Max Profit
14280165 0 3088 1689 +1399 blockdaemon_lido 0x88857150... Ultra Sound
14276262 0 3088 1689 +1399 coinbase 0x851b00b1... BloXroute Max Profit
14278632 0 3088 1689 +1399 kiln 0xb26f9666... Aestus
14280148 8 3200 1802 +1398 kiln 0x850b00e0... Flashbots
14279638 1 3098 1703 +1395 0x856b0004... Ultra Sound
14278368 1 3098 1703 +1395 0xb26f9666... BloXroute Max Profit
14274420 3 3126 1731 +1395 kiln 0x8527d16c... Ultra Sound
14274166 4 3138 1746 +1392 blockdaemon_lido 0xb26f9666... Titan Relay
14275881 2 3109 1717 +1392 kiln 0x8db2a99d... BloXroute Max Profit
14278003 3 3123 1731 +1392 p2porg 0xb26f9666... Titan Relay
14275410 0 3078 1689 +1389 blockdaemon_lido 0xb26f9666... Titan Relay
14278745 1 3092 1703 +1389 whale_0x8ebd 0xb26f9666... Titan Relay
14278674 6 3162 1774 +1388 kiln 0xb26f9666... BloXroute Max Profit
14278683 7 3174 1788 +1386 solo_stakers 0x857b0038... BloXroute Max Profit
14280460 1 3089 1703 +1386 kiln 0xb67eaa5e... BloXroute Max Profit
14276503 5 3145 1760 +1385 coinbase 0x856b0004... BloXroute Max Profit
14279923 5 3145 1760 +1385 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14279371 0 3074 1689 +1385 0x8db2a99d... BloXroute Max Profit
14279774 6 3158 1774 +1384 bitstamp 0x850b00e0... BloXroute Regulated
14279530 0 3073 1689 +1384 whale_0x8ebd 0x850b00e0... Flashbots
14279428 0 3073 1689 +1384 p2porg 0x850b00e0... BloXroute Regulated
14277464 3 3114 1731 +1383 coinbase 0x88857150... Ultra Sound
14278302 1 3085 1703 +1382 kiln 0x850b00e0... BloXroute Max Profit
14274079 10 3212 1831 +1381 coinbase 0xb26f9666... BloXroute Regulated
14277485 3 3112 1731 +1381 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14276797 1 3083 1703 +1380 whale_0x8ebd 0xb26f9666... Titan Relay
14277383 3 3110 1731 +1379 p2porg 0xb26f9666... Titan Relay
14278379 6 3152 1774 +1378 whale_0x0000 0x850b00e0... BloXroute Max Profit
14277129 13 3251 1873 +1378 gateway.fmas_lido 0x8527d16c... Ultra Sound
14279386 6 3151 1774 +1377 whale_0x8914 0xb67eaa5e... Titan Relay
14279409 0 3066 1689 +1377 p2porg 0x96f44633... Flashbots
14277104 0 3064 1689 +1375 whale_0x8ebd 0xb7c5c39a... BloXroute Max Profit
14277961 6 3147 1774 +1373 whale_0x8ebd 0x8527d16c... Ultra Sound
14274213 6 3147 1774 +1373 stader 0xb26f9666... Titan Relay
14280654 1 3073 1703 +1370 0xb26f9666... BloXroute Max Profit
14276238 8 3172 1802 +1370 0x856b0004... Ultra Sound
14278826 5 3127 1760 +1367 kiln 0xb26f9666... BloXroute Regulated
14276962 6 3141 1774 +1367 whale_0x8ebd 0xb26f9666... Titan Relay
14275504 0 3056 1689 +1367 p2porg 0xb26f9666... Titan Relay
14276881 0 3055 1689 +1366 0x88857150... Ultra Sound
14275670 2 3083 1717 +1366 p2porg 0x85fb0503... Aestus
14278940 9 3182 1816 +1366 coinbase 0xb67eaa5e... BloXroute Regulated
14281031 5 3125 1760 +1365 p2porg 0xb26f9666... Titan Relay
14276412 2 3082 1717 +1365 coinbase 0xb26f9666... Titan Relay
14276816 4 3110 1746 +1364 coinbase 0xb67eaa5e... BloXroute Regulated
14280808 14 3250 1887 +1363 whale_0x8914 0xb7c5e609... Titan Relay
14278535 3 3094 1731 +1363 abyss_finance 0x856b0004... BloXroute Max Profit
14276054 0 3051 1689 +1362 coinbase 0x850b00e0... BloXroute Max Profit
14276313 0 3051 1689 +1362 0xb26f9666... BloXroute Max Profit
14276094 0 3051 1689 +1362 p2porg 0x83cae7e5... Titan Relay
14274537 1 3065 1703 +1362 whale_0xedc6 0x856b0004... BloXroute Max Profit
14274924 2 3079 1717 +1362 whale_0x8ebd 0x8527d16c... Ultra Sound
14279708 0 3050 1689 +1361 whale_0x8ebd 0xb26f9666... Titan Relay
14280880 1 3064 1703 +1361 whale_0x8ebd 0x85fb0503... BloXroute Max Profit
14280583 12 3219 1859 +1360 whale_0x6ddb 0x88a53ec4... BloXroute Max Profit
14275961 1 3063 1703 +1360 coinbase 0xb26f9666... Titan Relay
14274100 3 3091 1731 +1360 kiln 0xb67eaa5e... BloXroute Max Profit
14275500 5 3117 1760 +1357 p2porg 0x8527d16c... Ultra Sound
14278755 1 3060 1703 +1357 coinbase 0x856b0004... Ultra Sound
14278521 2 3074 1717 +1357 whale_0x1461 Local Local
14277949 7 3144 1788 +1356 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14277298 5 3115 1760 +1355 coinbase 0x8527d16c... Ultra Sound
14277110 0 3044 1689 +1355 whale_0x8ebd 0xb26f9666... Titan Relay
14281055 0 3044 1689 +1355 p2porg 0xb26f9666... Titan Relay
14278298 1 3058 1703 +1355 coinbase 0x88a53ec4... BloXroute Max Profit
14277063 1 3058 1703 +1355 whale_0x8ebd 0x8527d16c... Ultra Sound
14278706 5 3114 1760 +1354 coinbase 0xb26f9666... BloXroute Max Profit
14277611 1 3056 1703 +1353 coinbase 0xb67eaa5e... BloXroute Regulated
14278426 4 3098 1746 +1352 kiln 0xb26f9666... Titan Relay
14274668 6 3126 1774 +1352 kiln Local Local
14275353 1 3055 1703 +1352 coinbase 0x85fb0503... Aestus
14274859 0 3038 1689 +1349 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14275575 0 3037 1689 +1348 coinbase 0xb67eaa5e... BloXroute Max Profit
14281174 0 3037 1689 +1348 whale_0x8ebd 0x8527d16c... Ultra Sound
14277769 1 3051 1703 +1348 0xb26f9666... BloXroute Max Profit
14279112 7 3135 1788 +1347 p2porg 0xb26f9666... Titan Relay
14278696 1 3050 1703 +1347 p2porg 0x8db2a99d... BloXroute Max Profit
14278836 1 3050 1703 +1347 coinbase 0xb26f9666... Titan Relay
14276623 1 3049 1703 +1346 figment 0x8db2a99d... BloXroute Max Profit
14276889 8 3148 1802 +1346 coinbase 0xb26f9666... BloXroute Regulated
14279519 0 3034 1689 +1345 coinbase 0xb67eaa5e... Ultra Sound
14277354 0 3034 1689 +1345 kiln 0x8527d16c... Ultra Sound
14279798 0 3033 1689 +1344 coinbase 0x8db2a99d... Ultra Sound
14274809 8 3146 1802 +1344 kiln 0xb26f9666... BloXroute Max Profit
14275511 0 3032 1689 +1343 whale_0x8ebd 0x823e0146... BloXroute Max Profit
14279408 8 3145 1802 +1343 whale_0x8ebd 0x8527d16c... Ultra Sound
14280332 6 3116 1774 +1342 everstake 0xb26f9666... Aestus
14275510 6 3116 1774 +1342 whale_0x8ebd 0x8527d16c... Ultra Sound
14274000 1 3044 1703 +1341 coinbase 0x85fb0503... Aestus
14279240 2 3058 1717 +1341 whale_0x8ebd 0x8527d16c... Ultra Sound
14279958 10 3169 1831 +1338 blockdaemon_lido 0xb26f9666... Titan Relay
14275009 0 3027 1689 +1338 solo_stakers 0x805e28e6... Flashbots
14277107 3 3069 1731 +1338 whale_0x8ebd 0x823e0146... BloXroute Max Profit
14274640 5 3097 1760 +1337 coinbase 0x856b0004... BloXroute Max Profit
14280234 1 3040 1703 +1337 p2porg 0x8527d16c... Ultra Sound
14275135 11 3181 1845 +1336 kiln 0x8527d16c... Ultra Sound
14275489 0 3025 1689 +1336 coinbase 0xb26f9666... Titan Relay
14274993 1 3039 1703 +1336 abyss_finance 0xb26f9666... BloXroute Max Profit
14275612 0 3024 1689 +1335 whale_0x8ebd 0x823e0146... BloXroute Max Profit
14281135 5 3094 1760 +1334 whale_0xedc6 0x85fb0503... BloXroute Max Profit
14276641 6 3107 1774 +1333 whale_0xedc6 0xb26f9666... BloXroute Max Profit
14279155 6 3106 1774 +1332 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14275167 6 3106 1774 +1332 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14276615 6 3105 1774 +1331 figment 0xb26f9666... BloXroute Max Profit
14275288 1 3034 1703 +1331 coinbase 0x8527d16c... Ultra Sound
14275088 5 3090 1760 +1330 kiln 0xb26f9666... BloXroute Regulated
14277009 1 3033 1703 +1330 coinbase 0xac09aa45... Agnostic Gnosis
14279239 6 3103 1774 +1329 whale_0x8ebd 0x8527d16c... Ultra Sound
14278990 1 3032 1703 +1329 whale_0x8ebd 0x8a850621... Ultra Sound
14275007 8 3131 1802 +1329 p2porg 0x8527d16c... Ultra Sound
14274934 0 3017 1689 +1328 kiln 0xb26f9666... BloXroute Max Profit
14276501 0 3017 1689 +1328 coinbase 0x8527d16c... Ultra Sound
14274386 1 3030 1703 +1327 kiln 0x8527d16c... Ultra Sound
14280495 1 3029 1703 +1326 coinbase 0x856b0004... BloXroute Max Profit
14275532 11 3170 1845 +1325 whale_0x8ebd 0xb4ce6162... Ultra Sound
14275400 8 3127 1802 +1325 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14280035 2 3042 1717 +1325 coinbase 0x8db2a99d... BloXroute Max Profit
14276716 6 3097 1774 +1323 kiln 0xb26f9666... BloXroute Regulated
14278300 7 3110 1788 +1322 whale_0x8ebd 0xb26f9666... Titan Relay
14276919 7 3110 1788 +1322 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14280925 1 3025 1703 +1322 coinbase 0x85fb0503... Aestus
14277971 15 3223 1901 +1322 gateway.fmas_lido 0x8527d16c... Ultra Sound
14277330 0 3010 1689 +1321 coinbase 0x8527d16c... Ultra Sound
14276943 2 3038 1717 +1321 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14277789 3 3052 1731 +1321 kiln 0x856b0004... BloXroute Max Profit
14274146 4 3066 1746 +1320 0xb4ce6162... Ultra Sound
14278235 5 3080 1760 +1320 whale_0x8ebd 0xb26f9666... Titan Relay
14275265 8 3122 1802 +1320 p2porg 0x8527d16c... Ultra Sound
14277814 5 3079 1760 +1319 p2porg 0xb26f9666... BloXroute Max Profit
14277895 1 3021 1703 +1318 0x8db2a99d... BloXroute Max Profit
14279005 5 3077 1760 +1317 coinbase 0x8db2a99d... BloXroute Max Profit
14280023 6 3091 1774 +1317 p2porg 0x88cd924c... Ultra Sound
14278602 14 3204 1887 +1317 whale_0xfd67 0x88857150... Ultra Sound
14277628 10 3147 1831 +1316 figment 0xb26f9666... Titan Relay
14275471 5 3076 1760 +1316 0xb26f9666... Titan Relay
14278725 1 3019 1703 +1316 whale_0x8ebd 0x8527d16c... Ultra Sound
14279258 1 3019 1703 +1316 0x8db2a99d... BloXroute Max Profit
14278223 5 3075 1760 +1315 kiln 0xb26f9666... BloXroute Max Profit
14280461 5 3075 1760 +1315 coinbase 0xb26f9666... BloXroute Max Profit
14274148 0 3004 1689 +1315 everstake 0xb26f9666... Titan Relay
14278291 0 3003 1689 +1314 coinbase 0xb26f9666... Titan Relay
14279999 4 3059 1746 +1313 stader 0xb67eaa5e... BloXroute Max Profit
14280215 0 3002 1689 +1313 0x856b0004... BloXroute Max Profit
14276772 5 3072 1760 +1312 p2porg 0xb26f9666... BloXroute Regulated
14275945 5 3072 1760 +1312 p2porg 0xb26f9666... Aestus
14280965 1 3015 1703 +1312 kiln 0xb26f9666... Titan Relay
14274459 6 3085 1774 +1311 whale_0x8ebd 0x857b0038... BloXroute Max Profit
14275303 1 3014 1703 +1311 whale_0x8ebd 0x8527d16c... Ultra Sound
14276101 9 3127 1816 +1311 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14279645 5 3070 1760 +1310 p2porg 0xb26f9666... BloXroute Max Profit
14274259 18 3254 1944 +1310 whale_0x8914 0x850b00e0... Ultra Sound
14280908 6 3084 1774 +1310 whale_0x8ebd 0xb67eaa5e... Ultra Sound
14277302 2 3027 1717 +1310 kiln 0xb26f9666... BloXroute Max Profit
14278393 15 3211 1901 +1310 coinbase 0x856b0004... BloXroute Max Profit
14274763 5 3069 1760 +1309 p2porg 0x88857150... Ultra Sound
14274831 7 3097 1788 +1309 p2porg 0xb26f9666... BloXroute Max Profit
14279164 6 3082 1774 +1308 0x856b0004... Ultra Sound
14274882 0 2997 1689 +1308 p2porg 0x8527d16c... Ultra Sound
14279503 0 2997 1689 +1308 whale_0x8ebd 0x8527d16c... Ultra Sound
14274099 11 3151 1845 +1306 0xb26f9666... Titan Relay
14275011 6 3080 1774 +1306 everstake 0xb7c5e609... BloXroute Max Profit
14275618 3 3037 1731 +1306 0x856b0004... BloXroute Max Profit
14274772 0 2994 1689 +1305 p2porg 0x856b0004... Ultra Sound
14279147 2 3022 1717 +1305 kiln Local Local
14275297 3 3036 1731 +1305 coinbase 0x856b0004... BloXroute Max Profit
14280431 5 3063 1760 +1303 whale_0x8ebd 0x8527d16c... Ultra Sound
14276379 0 2991 1689 +1302 coinbase 0xb67eaa5e... BloXroute Max Profit
14274748 0 2991 1689 +1302 whale_0xedc6 0x85fb0503... Aestus
14278565 0 2991 1689 +1302 whale_0x8ebd 0x851b00b1... BloXroute Max Profit
14274199 0 2991 1689 +1302 coinbase 0x9129eeb4... Ultra Sound
14276364 5 3061 1760 +1301 whale_0x8ebd 0x8527d16c... Ultra Sound
14280296 0 2990 1689 +1301 p2porg 0x805e28e6... BloXroute Max Profit
14281150 0 2990 1689 +1301 kiln 0xb26f9666... BloXroute Max Profit
14275117 1 3004 1703 +1301 coinbase 0x856b0004... BloXroute Max Profit
14274728 5 3060 1760 +1300 p2porg 0x85fb0503... Aestus
14277456 6 3074 1774 +1300 whale_0x8ebd 0xb4ce6162... Ultra Sound
14281101 2 3017 1717 +1300 whale_0x8ebd 0x85fb0503... Aestus
14276565 6 3073 1774 +1299 coinbase 0x856b0004... BloXroute Max Profit
14275096 6 3073 1774 +1299 coinbase 0x88857150... Ultra Sound
14276082 1 3002 1703 +1299 coinbase 0x8db2a99d... BloXroute Max Profit
14275403 9 3114 1816 +1298 p2porg 0x8db2a99d... BloXroute Max Profit
14274965 5 3057 1760 +1297 p2porg 0xb26f9666... BloXroute Max Profit
14280600 6 3071 1774 +1297 kiln 0x8527d16c... Ultra Sound
14274370 0 2986 1689 +1297 0x8a2a4361... Ultra Sound
14281076 1 3000 1703 +1297 coinbase 0x8527d16c... Ultra Sound
14276595 8 3098 1802 +1296 kiln 0x8527d16c... Ultra Sound
14274921 6 3069 1774 +1295 whale_0x8ebd 0xa03781b9... Aestus
14280229 0 2984 1689 +1295 whale_0x8ebd 0xa965c911... Ultra Sound
14280924 0 2984 1689 +1295 kiln 0xb26f9666... Aestus
14275189 1 2997 1703 +1294 kiln 0xb26f9666... BloXroute Regulated
14274517 8 3096 1802 +1294 whale_0x8ebd 0xac23f8cc... BloXroute Max Profit
14274469 0 2982 1689 +1293 whale_0x8ebd 0x8527d16c... Ultra Sound
14275979 0 2981 1689 +1292 whale_0xedc6 0xb26f9666... BloXroute Max Profit
14275911 5 3050 1760 +1290 kiln 0x8527d16c... Ultra Sound
14274003 6 3063 1774 +1289 coinbase 0x8527d16c... Ultra Sound
14275625 6 3063 1774 +1289 kiln Local Local
14280117 1 2991 1703 +1288 kiln 0x8527d16c... Ultra Sound
14277047 2 3004 1717 +1287 kiln Local Local
14274879 3 3018 1731 +1287 kiln Local Local
14279059 6 3060 1774 +1286 kiln 0x856b0004... BloXroute Max Profit
14276097 0 2974 1689 +1285 everstake 0x851b00b1... BloXroute Max Profit
14274733 1 2988 1703 +1285 coinbase 0x8527d16c... Ultra Sound
14280140 6 3058 1774 +1284 whale_0x8ebd 0x85fb0503... Aestus
14279555 0 2973 1689 +1284 nethermind_lido 0x856b0004... BloXroute Max Profit
14280218 5 3043 1760 +1283 0x856b0004... BloXroute Max Profit
14280230 5 3042 1760 +1282 coinbase 0x856b0004... BloXroute Max Profit
14280827 0 2971 1689 +1282 kiln 0x88857150... Ultra Sound
14275100 0 2971 1689 +1282 coinbase 0xb26f9666... Titan Relay
14274261 1 2983 1703 +1280 whale_0x8ebd 0x88857150... Ultra Sound
14278014 3 3011 1731 +1280 kiln 0x856b0004... BloXroute Max Profit
14280796 1 2982 1703 +1279 kiln Local Local
14277207 1 2980 1703 +1277 kiln 0x856b0004... BloXroute Max Profit
14279120 16 3192 1915 +1277 whale_0x3878 0xb67eaa5e... Titan Relay
14274582 1 2979 1703 +1276 nethermind_lido 0x856b0004... BloXroute Max Profit
14279531 5 3035 1760 +1275 kiln 0xb5a9acce... Flashbots
14279826 5 3035 1760 +1275 kiln 0xb26f9666... Titan Relay
14278293 7 3063 1788 +1275 p2porg 0x8db2a99d... BloXroute Max Profit
14275630 1 2977 1703 +1274 kiln 0x85fb0503... Aestus
14275194 5 3033 1760 +1273 coinbase 0x8527d16c... Ultra Sound
14281187 0 2961 1689 +1272 coinbase 0x99cba505... BloXroute Max Profit
14280118 6 3045 1774 +1271 everstake 0x8527d16c... Ultra Sound
14275301 8 3072 1802 +1270 coinbase 0x8527d16c... Ultra Sound
14278595 0 2958 1689 +1269 0x856b0004... BloXroute Max Profit
14275682 7 3056 1788 +1268 kiln 0xb26f9666... BloXroute Regulated
14279457 9 3084 1816 +1268 everstake 0xb72cae2f... Ultra Sound
14277181 0 2955 1689 +1266 kiln 0x805e28e6... Ultra Sound
14274896 1 2969 1703 +1266 everstake 0xb26f9666... Titan Relay
14279229 1 2969 1703 +1266 everstake 0x88a53ec4... BloXroute Regulated
14278297 10 3096 1831 +1265 kiln 0xb26f9666... BloXroute Max Profit
14278640 5 3025 1760 +1265 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14275198 5 3024 1760 +1264 bitstamp 0x850b00e0... BloXroute Max Profit
14278654 0 2953 1689 +1264 coinbase 0x851b00b1... BloXroute Max Profit
14278614 4 3008 1746 +1262 solo_stakers Local Local
14281034 8 3064 1802 +1262 coinbase 0x856b0004... BloXroute Max Profit
14279609 9 3078 1816 +1262 bitstamp 0x88a53ec4... BloXroute Max Profit
14275547 5 3020 1760 +1260 coinbase 0x8527d16c... Ultra Sound
14280520 1 2963 1703 +1260 everstake 0xb26f9666... Titan Relay
14276874 0 2948 1689 +1259 kiln 0xb67eaa5e... Ultra Sound
14277403 9 3075 1816 +1259 whale_0x8ebd 0x8527d16c... Ultra Sound
14281090 1 2961 1703 +1258 kiln 0xb26f9666... BloXroute Max Profit
14274791 14 3145 1887 +1258 coinbase 0xb26f9666... Titan Relay
14274850 2 2975 1717 +1258 everstake 0xb26f9666... Titan Relay
14281093 5 3016 1760 +1256 kiln 0xb26f9666... Titan Relay
14280401 0 2945 1689 +1256 kiln 0x88857150... Ultra Sound
14279730 0 2944 1689 +1255 kiln 0x850b00e0... BloXroute Max Profit
14276366 0 2943 1689 +1254 coinbase 0x99cba505... Flashbots
14275387 1 2957 1703 +1254 coinbase 0x8527d16c... Ultra Sound
14276359 10 3084 1831 +1253 kiln Local Local
Total anomalies: 479

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