Fri, May 1, 2026

Propagation anomalies - 2026-05-01

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-01' AND slot_start_date_time < '2026-05-01'::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-01' AND slot_start_date_time < '2026-05-01'::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-01' AND slot_start_date_time < '2026-05-01'::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-01' AND slot_start_date_time < '2026-05-01'::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-01' AND slot_start_date_time < '2026-05-01'::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-01' AND slot_start_date_time < '2026-05-01'::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-01' AND slot_start_date_time < '2026-05-01'::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-01' AND slot_start_date_time < '2026-05-01'::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,184
MEV blocks: 6,781 (94.4%)
Local blocks: 403 (5.6%)

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

fig = go.Figure()

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

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

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

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

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

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

All propagation anomalies

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

Show code
# All anomalies table with selectable text and Lab links
if n_anomalies > 0:
    df_table = df_outliers.sort_values("residual_ms", ascending=False)[
        ["slot", "blob_count", "block_first_seen_ms", "expected_ms", "residual_ms", "proposer", "builder", "relay"]
    ].copy()
    df_table["block_first_seen_ms"] = df_table["block_first_seen_ms"].round(0).astype(int)
    df_table["expected_ms"] = df_table["expected_ms"].round(0).astype(int)
    df_table["residual_ms"] = df_table["residual_ms"].round(0).astype(int)
    
    # Build HTML table
    html = '''
    <style>
    .anomaly-table { border-collapse: collapse; width: 100%; font-family: monospace; font-size: 13px; }
    .anomaly-table th { background: #2c3e50; color: white; padding: 8px 12px; text-align: left; position: sticky; top: 0; }
    .anomaly-table td { padding: 6px 12px; border-bottom: 1px solid #eee; }
    .anomaly-table tr:hover { background: #f5f5f5; }
    .anomaly-table .num { text-align: right; }
    .anomaly-table .delta { background: #ffebee; color: #c62828; font-weight: bold; }
    .anomaly-table a { color: #1976d2; text-decoration: none; }
    .anomaly-table a:hover { text-decoration: underline; }
    .table-container { max-height: 600px; overflow-y: auto; }
    </style>
    <div class="table-container">
    <table class="anomaly-table">
    <thead>
    <tr><th>Slot</th><th class="num">Blobs</th><th class="num">Actual (ms)</th><th class="num">Expected (ms)</th><th class="num">Δ (ms)</th><th>Proposer</th><th>Builder</th><th>Relay</th></tr>
    </thead>
    <tbody>
    '''
    
    for _, row in df_table.iterrows():
        slot_link = f'<a href="https://lab.ethpandaops.io/ethereum/slots/{row["slot"]}" target="_blank">{row["slot"]}</a>'
        html += f'''<tr>
            <td>{slot_link}</td>
            <td class="num">{row["blob_count"]}</td>
            <td class="num">{row["block_first_seen_ms"]}</td>
            <td class="num">{row["expected_ms"]}</td>
            <td class="num delta">+{row["residual_ms"]}</td>
            <td>{row["proposer"]}</td>
            <td>{row["builder"]}</td>
            <td>{row["relay"]}</td>
        </tr>'''
    
    html += '</tbody></table></div>'
    display(HTML(html))
    print(f"\nTotal anomalies: {len(df_table):,}")
else:
    print("No anomalies detected.")
SlotBlobsActual (ms)Expected (ms)Δ (ms)ProposerBuilderRelay
14231714 0 12435 1691 +10744 solo_stakers Local Local
14236992 0 8103 1691 +6412 upbit Local Local
14235424 0 6344 1691 +4653 upbit Local Local
14235379 0 5864 1691 +4173 whale_0xba8f Local Local
14232864 0 4207 1691 +2516 blockdaemon_lido Local Local
14237856 0 4191 1691 +2500 stakefish Local Local
14233902 0 3963 1691 +2272 whale_0x2f38 Local Local
14237696 0 3791 1691 +2100 liquid_collective Local Local
14237928 1 3746 1708 +2038 whale_0xe867 Local Local
14234592 0 3655 1691 +1964 upbit 0xb67eaa5e... BloXroute Max Profit
14231168 6 3725 1791 +1934 luno 0x856b0004... BloXroute Max Profit
14233713 0 3621 1691 +1930 blockdaemon 0xb67eaa5e... Ultra Sound
14237118 6 3703 1791 +1912 figment 0x823e0146... BloXroute Max Profit
14236558 1 3603 1708 +1895 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14236073 1 3594 1708 +1886 whale_0x3212 0x8527d16c... Ultra Sound
14237376 4 3582 1758 +1824 blockdaemon 0x857b0038... BloXroute Max Profit
14234596 0 3512 1691 +1821 blockdaemon_lido 0xa965c911... Ultra Sound
14233792 0 3488 1691 +1797 stakefish 0xac23f8cc... BloXroute Max Profit
14233216 0 3479 1691 +1788 stakefish 0x856b0004... BloXroute Max Profit
14237899 1 3489 1708 +1781 blockdaemon 0x88a53ec4... BloXroute Regulated
14231074 5 3552 1774 +1778 ether.fi 0xb67eaa5e... BloXroute Max Profit
14233063 8 3591 1824 +1767 solo_stakers 0x88857150... Ultra Sound
14235745 5 3536 1774 +1762 blockdaemon 0x9129eeb4... Ultra Sound
14234403 0 3449 1691 +1758 ether.fi 0x851b00b1... BloXroute Max Profit
14232330 8 3577 1824 +1753 solo_stakers 0x85fb0503... Ultra Sound
14235415 0 3444 1691 +1753 ether.fi 0x88857150... Ultra Sound
14233920 0 3443 1691 +1752 blockdaemon 0x8527d16c... Ultra Sound
14236443 0 3442 1691 +1751 blockdaemon 0x88857150... Ultra Sound
14234823 2 3469 1725 +1744 lido 0x823e0146... BloXroute Max Profit
14231047 0 3435 1691 +1744 ether.fi 0xb67eaa5e... Titan Relay
14233967 1 3450 1708 +1742 blockdaemon 0x8a850621... Ultra Sound
14237699 5 3515 1774 +1741 blockdaemon_lido 0x8527d16c... Ultra Sound
14235992 3 3479 1741 +1738 blockdaemon 0xb4ce6162... Ultra Sound
14236998 2 3454 1725 +1729 blockdaemon_lido 0x853b0078... BloXroute Max Profit
14237890 4 3483 1758 +1725 solo_stakers Local Local
14236494 2 3446 1725 +1721 blockdaemon 0x857b0038... BloXroute Max Profit
14237075 0 3409 1691 +1718 blockdaemon 0xb26f9666... Titan Relay
14233602 1 3424 1708 +1716 blockdaemon 0x8a850621... Titan Relay
14230969 1 3421 1708 +1713 blockdaemon 0xb67eaa5e... Ultra Sound
14231847 6 3492 1791 +1701 lido 0x88857150... Ultra Sound
14231795 2 3425 1725 +1700 whale_0xdc8d 0x88a53ec4... BloXroute Max Profit
14231627 1 3408 1708 +1700 blockdaemon_lido 0x88857150... Ultra Sound
14234815 0 3376 1691 +1685 nethermind_lido 0x853b0078... BloXroute Max Profit
14232110 0 3375 1691 +1684 ether.fi 0x8527d16c... Ultra Sound
14232505 7 3488 1808 +1680 whale_0xdc8d 0xb67eaa5e... BloXroute Max Profit
14237924 5 3452 1774 +1678 blockdaemon 0x88857150... Ultra Sound
14232005 0 3368 1691 +1677 nethermind_lido 0x85fb0503... Aestus
14234506 1 3383 1708 +1675 blockdaemon 0x88857150... Ultra Sound
14233461 8 3498 1824 +1674 blockdaemon 0xb67eaa5e... BloXroute Regulated
14237309 1 3381 1708 +1673 whale_0xdc8d 0x8db2a99d... Ultra Sound
14234584 0 3363 1691 +1672 blockdaemon 0x80ad903b... BloXroute Max Profit
14231827 6 3456 1791 +1665 ether.fi 0xb67eaa5e... Titan Relay
14236950 1 3372 1708 +1664 revolut 0xb67eaa5e... BloXroute Max Profit
14235132 0 3354 1691 +1663 whale_0xdc8d 0x853b0078... BloXroute Max Profit
14234338 1 3370 1708 +1662 0xa965c911... Ultra Sound
14233572 9 3501 1841 +1660 blockdaemon 0xb67eaa5e... BloXroute Max Profit
14232003 6 3450 1791 +1659 blockdaemon 0x856b0004... BloXroute Max Profit
14231765 0 3348 1691 +1657 blockdaemon 0x8a850621... Titan Relay
14237465 1 3363 1708 +1655 nethermind_lido 0x850b00e0... Flashbots
14232539 0 3346 1691 +1655 ether.fi 0x83d6a6ab... Ultra Sound
14232065 6 3445 1791 +1654 revolut 0x88a53ec4... BloXroute Max Profit
14232004 1 3360 1708 +1652 whale_0xdc8d 0xb7c5e609... BloXroute Max Profit
14237456 0 3343 1691 +1652 whale_0xdc8d 0xb26f9666... Titan Relay
14236555 6 3440 1791 +1649 blockdaemon_lido 0x8db2a99d... Ultra Sound
14235994 5 3423 1774 +1649 kiln 0x857b0038... BloXroute Max Profit
14236704 1 3356 1708 +1648 p2porg 0xb26f9666... BloXroute Regulated
14233271 0 3338 1691 +1647 nethermind_lido 0x8db2a99d... BloXroute Max Profit
14233711 1 3352 1708 +1644 whale_0xdc8d 0x9129eeb4... Ultra Sound
14237265 1 3351 1708 +1643 blockdaemon 0x8a850621... Titan Relay
14231679 1 3350 1708 +1642 whale_0x8ebd Local Local
14232990 0 3328 1691 +1637 blockdaemon_lido 0xb26f9666... Titan Relay
14235209 6 3420 1791 +1629 blockdaemon_lido 0x88857150... Ultra Sound
14234850 1 3336 1708 +1628 blockdaemon 0x853b0078... BloXroute Max Profit
14232495 1 3335 1708 +1627 blockdaemon 0xb26f9666... Titan Relay
14235549 0 3318 1691 +1627 blockdaemon_lido 0xb26f9666... Titan Relay
14235779 7 3434 1808 +1626 blockdaemon_lido 0x88a53ec4... BloXroute Regulated
14236984 7 3433 1808 +1625 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14236202 6 3410 1791 +1619 abyss_finance Local Local
14235099 5 3393 1774 +1619 whale_0xc611 0x9129eeb4... Agnostic Gnosis
14233935 0 3310 1691 +1619 blockdaemon 0x80ad903b... BloXroute Max Profit
14237591 1 3326 1708 +1618 blockdaemon_lido 0x88857150... Ultra Sound
14234691 7 3424 1808 +1616 blockdaemon 0x853b0078... BloXroute Max Profit
14233771 0 3307 1691 +1616 0xb26f9666... Titan Relay
14232484 0 3305 1691 +1614 revolut 0xb26f9666... Titan Relay
14237537 2 3338 1725 +1613 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
14232623 3 3352 1741 +1611 0xb26f9666... Titan Relay
14233912 0 3300 1691 +1609 blockdaemon 0xb67eaa5e... BloXroute Regulated
14232765 2 3327 1725 +1602 0xb67eaa5e... Ultra Sound
14232576 6 3393 1791 +1602 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
14231019 1 3308 1708 +1600 whale_0x8ebd Local Local
14234238 0 3291 1691 +1600 blockdaemon_lido 0x88857150... Ultra Sound
14237653 0 3291 1691 +1600 blockdaemon 0x88857150... Ultra Sound
14232426 0 3290 1691 +1599 luno 0x8527d16c... Ultra Sound
14231574 0 3290 1691 +1599 0x8527d16c... Ultra Sound
14234047 3 3339 1741 +1598 whale_0xdc8d 0xb67eaa5e... BloXroute Max Profit
14235953 5 3369 1774 +1595 revolut 0x850b00e0... BloXroute Max Profit
14235129 2 3318 1725 +1593 blockdaemon_lido 0x8527d16c... Ultra Sound
14237454 5 3363 1774 +1589 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
14233710 10 3444 1857 +1587 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14233429 1 3294 1708 +1586 whale_0xdc8d 0xb26f9666... Ultra Sound
14236449 1 3293 1708 +1585 whale_0x8914 0x850b00e0... Ultra Sound
14234306 0 3275 1691 +1584 whale_0xfd67 0xa965c911... Ultra Sound
14235559 0 3275 1691 +1584 whale_0xdc8d 0xb26f9666... Titan Relay
14234546 5 3353 1774 +1579 blockdaemon 0xb26f9666... Titan Relay
14237588 5 3351 1774 +1577 whale_0xdc8d 0xb26f9666... Titan Relay
14237083 3 3315 1741 +1574 revolut 0xb67eaa5e... BloXroute Max Profit
14236743 8 3390 1824 +1566 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
14235551 0 3256 1691 +1565 blockdaemon 0x8527d16c... Ultra Sound
14234060 5 3337 1774 +1563 0x9129eeb4... Ultra Sound
14237058 9 3403 1841 +1562 bitstamp 0x88a53ec4... BloXroute Regulated
14232534 5 3332 1774 +1558 blockdaemon 0xb26f9666... Titan Relay
14236040 3 3296 1741 +1555 blockdaemon 0xb26f9666... Titan Relay
14232438 9 3390 1841 +1549 revolut 0xb67eaa5e... BloXroute Regulated
14236358 6 3338 1791 +1547 blockdaemon 0x853b0078... BloXroute Max Profit
14232712 6 3338 1791 +1547 blockdaemon 0x88857150... Ultra Sound
14231496 5 3321 1774 +1547 0x8527d16c... Ultra Sound
14235414 0 3238 1691 +1547 whale_0x8ebd Local Local
14234878 1 3253 1708 +1545 blockdaemon_lido 0xb67eaa5e... Titan Relay
14235572 5 3318 1774 +1544 revolut 0x856b0004... BloXroute Max Profit
14236637 6 3334 1791 +1543 blockdaemon_lido 0x8527d16c... Ultra Sound
14237535 0 3233 1691 +1542 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14234635 3 3281 1741 +1540 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14233045 5 3314 1774 +1540 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
14235635 3 3277 1741 +1536 blockdaemon_lido 0x8527d16c... Ultra Sound
14233548 6 3325 1791 +1534 whale_0xdc8d 0xb26f9666... Titan Relay
14232599 0 3224 1691 +1533 bitstamp 0x857b0038... BloXroute Max Profit
14235527 4 3287 1758 +1529 revolut 0x853b0078... BloXroute Max Profit
14237448 5 3302 1774 +1528 blockdaemon 0x88a53ec4... BloXroute Max Profit
14234311 1 3235 1708 +1527 p2porg 0xb5a65d00... Ultra Sound
14235938 1 3235 1708 +1527 revolut 0xb26f9666... Titan Relay
14232282 3 3268 1741 +1527 blockdaemon_lido 0x88857150... Ultra Sound
14235760 5 3300 1774 +1526 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
14235267 0 3215 1691 +1524 blockdaemon 0x8527d16c... Ultra Sound
14232824 1 3231 1708 +1523 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
14233857 4 3280 1758 +1522 blockdaemon_lido 0xb26f9666... Titan Relay
14234849 5 3294 1774 +1520 gateway.fmas_lido Local Local
14237528 2 3239 1725 +1514 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14231306 0 3205 1691 +1514 blockdaemon_lido 0xb7c5e609... BloXroute Max Profit
14233722 5 3286 1774 +1512 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14231267 7 3319 1808 +1511 blockdaemon 0xb26f9666... Titan Relay
14236560 1 3219 1708 +1511 p2porg 0x850b00e0... BloXroute Regulated
14234634 5 3284 1774 +1510 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14237509 5 3284 1774 +1510 gateway.fmas_lido 0x88a53ec4... BloXroute Regulated
14231015 1 3217 1708 +1509 lido Local Local
14232919 8 3333 1824 +1509 0xa965c911... Ultra Sound
14231713 10 3366 1857 +1509 blockdaemon 0x8a850621... Ultra Sound
14235459 2 3233 1725 +1508 whale_0x6ddb 0xb67eaa5e... Titan Relay
14234851 2 3233 1725 +1508 0x853b0078... BloXroute Max Profit
14237818 1 3213 1708 +1505 kiln 0xb26f9666... BloXroute Regulated
14231369 6 3295 1791 +1504 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
14236855 1 3212 1708 +1504 whale_0x8914 0xb67eaa5e... Titan Relay
14237756 0 3194 1691 +1503 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
14230812 0 3194 1691 +1503 revolut 0xb26f9666... Titan Relay
14237811 0 3193 1691 +1502 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14232415 0 3193 1691 +1502 coinbase 0x83cae7e5... Titan Relay
14233913 1 3206 1708 +1498 blockdaemon_lido 0xb67eaa5e... Ultra Sound
14231068 5 3270 1774 +1496 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14232124 1 3203 1708 +1495 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14233649 0 3186 1691 +1495 blockdaemon_lido 0x851b00b1... BloXroute Max Profit
14233135 0 3186 1691 +1495 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
14232703 0 3182 1691 +1491 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
14237247 1 3197 1708 +1489 whale_0xfd67 0x88a53ec4... BloXroute Max Profit
14234127 2 3208 1725 +1483 gateway.fmas_lido 0x856b0004... BloXroute Max Profit
14236605 5 3253 1774 +1479 kiln 0xb26f9666... BloXroute Regulated
14234425 5 3253 1774 +1479 blockdaemon 0x88a53ec4... BloXroute Regulated
14236133 5 3253 1774 +1479 kiln 0xb26f9666... BloXroute Max Profit
14231460 10 3335 1857 +1478 blockdaemon 0x853b0078... BloXroute Max Profit
14237124 0 3168 1691 +1477 p2porg 0x853b0078... BloXroute Max Profit
14236306 1 3184 1708 +1476 blockdaemon 0x853b0078... BloXroute Max Profit
14234322 0 3167 1691 +1476 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
14237161 0 3166 1691 +1475 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
14230816 6 3265 1791 +1474 figment 0xb26f9666... BloXroute Max Profit
14232195 6 3265 1791 +1474 p2porg 0x88857150... Ultra Sound
14235996 0 3165 1691 +1474 gateway.fmas_lido 0x823e0146... BloXroute Max Profit
14234925 0 3164 1691 +1473 p2porg 0xb67eaa5e... Aestus
14234265 3 3213 1741 +1472 whale_0x8914 0xb67eaa5e... Titan Relay
14232616 0 3163 1691 +1472 blockdaemon_lido 0x823e0146... BloXroute Max Profit
14237530 0 3162 1691 +1471 bitstamp 0x823e0146... BloXroute Max Profit
14233819 0 3162 1691 +1471 coinbase 0xb67eaa5e... BloXroute Regulated
14233002 0 3162 1691 +1471 whale_0xfd67 0x88857150... Ultra Sound
14232348 5 3243 1774 +1469 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14236826 4 3226 1758 +1468 blockdaemon 0x8527d16c... Ultra Sound
14231751 1 3176 1708 +1468 gateway.fmas_lido 0x856b0004... Ultra Sound
14237914 3 3209 1741 +1468 blockdaemon_lido 0xb26f9666... Titan Relay
14236915 3 3208 1741 +1467 whale_0x4b5e 0xb67eaa5e... Titan Relay
14231719 5 3240 1774 +1466 p2porg 0x857b0038... BloXroute Regulated
14233676 0 3156 1691 +1465 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
14235077 1 3172 1708 +1464 whale_0x8914 0x88a53ec4... Aestus
14236956 6 3254 1791 +1463 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14236725 1 3170 1708 +1462 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14230944 0 3151 1691 +1460 whale_0x8ebd 0x860d4173... Aestus
14236566 6 3248 1791 +1457 revolut 0xb26f9666... Titan Relay
14234464 1 3165 1708 +1457 0xb26f9666... BloXroute Max Profit
14234316 7 3263 1808 +1455 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
14235317 15 3395 1940 +1455 kraken 0xb26f9666... EthGas
14235642 0 3146 1691 +1455 blockdaemon_lido 0x853b0078... BloXroute Max Profit
14235026 5 3226 1774 +1452 p2porg 0x88a53ec4... BloXroute Regulated
14233470 0 3142 1691 +1451 whale_0xfd67 0xb67eaa5e... Titan Relay
14233811 2 3174 1725 +1449 gateway.fmas_lido 0x856b0004... BloXroute Max Profit
14233355 6 3239 1791 +1448 coinbase 0xb67eaa5e... BloXroute Max Profit
14237556 0 3139 1691 +1448 whale_0x8914 0x88a53ec4... Aestus
14237848 1 3155 1708 +1447 gateway.fmas_lido 0x8527d16c... Ultra Sound
14234965 5 3221 1774 +1447 p2porg 0x850b00e0... BloXroute Regulated
14234139 0 3138 1691 +1447 whale_0x8914 0x851b00b1... Aestus
14234066 6 3237 1791 +1446 blockdaemon_lido 0x823e0146... BloXroute Max Profit
14237381 1 3154 1708 +1446 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14236852 1 3154 1708 +1446 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14231228 6 3236 1791 +1445 coinbase 0xb67eaa5e... BloXroute Max Profit
14232080 0 3136 1691 +1445 gateway.fmas_lido 0x85fb0503... Aestus
14231121 1 3152 1708 +1444 coinbase 0x88a53ec4... BloXroute Regulated
14232667 1 3152 1708 +1444 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14233489 3 3185 1741 +1444 nethermind_lido 0xb5a65d00... Agnostic Gnosis
14230876 0 3135 1691 +1444 whale_0x8914 0x8527d16c... Ultra Sound
14233198 5 3216 1774 +1442 coinbase 0xb26f9666... BloXroute Regulated
14235976 5 3211 1774 +1437 stakefish Local Local
14233051 1 3143 1708 +1435 whale_0x8ebd 0xb26f9666... Titan Relay
14235637 6 3225 1791 +1434 everstake 0x857b0038... BloXroute Max Profit
14236920 6 3225 1791 +1434 blockdaemon 0xb26f9666... Titan Relay
14237432 0 3125 1691 +1434 whale_0x8ebd 0x9129eeb4... Agnostic Gnosis
14233226 0 3124 1691 +1433 whale_0x8ebd 0x8527d16c... Ultra Sound
14236446 8 3256 1824 +1432 coinbase 0xb26f9666... BloXroute Regulated
14231016 11 3304 1874 +1430 whale_0x8914 0xb67eaa5e... BloXroute Max Profit
14232848 1 3138 1708 +1430 whale_0x8ebd 0x853b0078... BloXroute Max Profit
14236221 0 3121 1691 +1430 whale_0x6ddb 0xba003e46... Ultra Sound
14230987 10 3285 1857 +1428 revolut 0x9129eeb4... Ultra Sound
14233462 1 3135 1708 +1427 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14232809 0 3118 1691 +1427 whale_0x8ebd 0x8527d16c... Ultra Sound
14236640 0 3118 1691 +1427 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14234040 1 3134 1708 +1426 whale_0xc611 0xb67eaa5e... Titan Relay
14236451 2 3149 1725 +1424 everstake 0xb67eaa5e... BloXroute Regulated
14237942 6 3215 1791 +1424 coinbase 0xb26f9666... BloXroute Max Profit
14234939 1 3132 1708 +1424 whale_0xfd67 0x88a53ec4... BloXroute Max Profit
14237557 8 3247 1824 +1423 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14232853 0 3114 1691 +1423 coinbase 0xb26f9666... BloXroute Regulated
14236122 6 3213 1791 +1422 coinbase 0xb26f9666... BloXroute Max Profit
14237694 0 3113 1691 +1422 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14231974 2 3145 1725 +1420 coinbase 0x88a53ec4... BloXroute Regulated
14234369 0 3111 1691 +1420 coinbase Local Local
14234185 0 3108 1691 +1417 coinbase 0x88857150... Ultra Sound
14232842 9 3256 1841 +1415 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14237006 6 3206 1791 +1415 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14234081 1 3123 1708 +1415 p2porg 0x88857150... Ultra Sound
14230922 1 3123 1708 +1415 figment 0x853b0078... BloXroute Max Profit
14236940 1 3123 1708 +1415 figment 0xb26f9666... Titan Relay
14233116 6 3202 1791 +1411 bitstamp 0x8db2a99d... BloXroute Max Profit
14234085 7 3218 1808 +1410 whale_0x8914 0x853b0078... BloXroute Max Profit
14234307 2 3134 1725 +1409 p2porg 0xb26f9666... Titan Relay
14231064 2 3133 1725 +1408 0x85fb0503... Aestus
14236951 0 3099 1691 +1408 p2porg 0xb26f9666... Titan Relay
14233086 1 3112 1708 +1404 coinbase 0xb26f9666... BloXroute Max Profit
14233992 0 3095 1691 +1404 p2porg 0xb26f9666... Titan Relay
14234992 0 3095 1691 +1404 coinbase 0xa965c911... Ultra Sound
14236363 0 3094 1691 +1403 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14234645 0 3093 1691 +1402 p2porg 0x853b0078... Titan Relay
14231715 10 3258 1857 +1401 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
14231939 0 3092 1691 +1401 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14234982 14 3324 1924 +1400 blockdaemon_lido 0xb26f9666... Titan Relay
14234130 9 3241 1841 +1400 whale_0x8914 0x856b0004... BloXroute Max Profit
14237440 0 3090 1691 +1399 whale_0xa280 0x823e0146... Flashbots
14232136 0 3089 1691 +1398 p2porg 0xb26f9666... Titan Relay
14237109 0 3089 1691 +1398 everstake 0xb26f9666... Aestus
14234919 0 3089 1691 +1398 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14234217 6 3188 1791 +1397 kiln 0x88a53ec4... BloXroute Regulated
14235323 4 3153 1758 +1395 kiln 0x850b00e0... Flashbots
14234820 6 3186 1791 +1395 blockdaemon_lido 0x853b0078... BloXroute Max Profit
14231285 1 3101 1708 +1393 blockdaemon_lido 0x853b0078... BloXroute Max Profit
14234814 0 3084 1691 +1393 p2porg 0x853b0078... BloXroute Regulated
14232100 6 3181 1791 +1390 whale_0xfd67 0x88a53ec4... Aestus
14234590 7 3196 1808 +1388 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
14236459 1 3095 1708 +1387 kiln 0xb26f9666... BloXroute Regulated
14235576 8 3210 1824 +1386 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14232772 0 3077 1691 +1386 p2porg 0x850b00e0... BloXroute Regulated
14233182 0 3076 1691 +1385 p2porg 0x853b0078... BloXroute Regulated
14233270 0 3076 1691 +1385 p2porg 0x853b0078... BloXroute Max Profit
14235865 8 3208 1824 +1384 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14234783 11 3256 1874 +1382 coinbase 0xb67eaa5e... BloXroute Max Profit
14231423 1 3090 1708 +1382 coinbase 0xb67eaa5e... BloXroute Regulated
14234502 0 3073 1691 +1382 whale_0x75ff 0x88a53ec4... BloXroute Regulated
14232559 0 3073 1691 +1382 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14234791 1 3089 1708 +1381 whale_0x8ebd 0x853b0078... BloXroute Max Profit
14233232 3 3122 1741 +1381 p2porg 0xb26f9666... Titan Relay
14237647 0 3071 1691 +1380 coinbase 0xb26f9666... Titan Relay
14231265 6 3170 1791 +1379 kiln 0xb7c5e609... BloXroute Max Profit
14231011 8 3203 1824 +1379 coinbase 0xb26f9666... Titan Relay
14237570 5 3153 1774 +1379 coinbase 0x88a53ec4... BloXroute Max Profit
14235511 5 3153 1774 +1379 coinbase 0xb67eaa5e... BloXroute Regulated
14231116 3 3118 1741 +1377 whale_0x8ebd 0x85fb0503... Aestus
14237347 0 3068 1691 +1377 coinbase 0xb67eaa5e... BloXroute Max Profit
14236126 16 3333 1957 +1376 blockdaemon_lido 0x8527d16c... Ultra Sound
14233417 0 3066 1691 +1375 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14234156 0 3066 1691 +1375 0x8527d16c... Ultra Sound
14237069 1 3082 1708 +1374 coinbase 0xb26f9666... Titan Relay
14237807 0 3065 1691 +1374 0xb5a65d00... Ultra Sound
14231789 11 3247 1874 +1373 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14236026 5 3146 1774 +1372 kiln 0xb67eaa5e... BloXroute Max Profit
14233991 2 3096 1725 +1371 kiln 0x8527d16c... Ultra Sound
14231697 1 3079 1708 +1371 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14236890 1 3078 1708 +1370 coinbase 0xb26f9666... BloXroute Max Profit
14237844 0 3061 1691 +1370 coinbase 0xb26f9666... Aestus
14235010 0 3061 1691 +1370 p2porg 0xb67eaa5e... Aestus
14234733 6 3159 1791 +1368 whale_0x4b5e 0x88857150... Ultra Sound
14233387 2 3092 1725 +1367 p2porg 0x850b00e0... BloXroute Max Profit
14234243 4 3125 1758 +1367 coinbase 0xb26f9666... Titan Relay
14236201 6 3158 1791 +1367 whale_0x8ebd Local Local
14237133 0 3058 1691 +1367 p2porg 0x823e0146... BloXroute Max Profit
14234045 0 3057 1691 +1366 whale_0x8ebd 0x9129eeb4... Agnostic Gnosis
14232554 3 3106 1741 +1365 p2porg 0xb26f9666... Titan Relay
14232902 1 3072 1708 +1364 p2porg 0xb26f9666... Titan Relay
14231106 1 3072 1708 +1364 p2porg 0x85fb0503... Aestus
14232271 0 3055 1691 +1364 p2porg 0x8db2a99d... Ultra Sound
14231274 3 3103 1741 +1362 p2porg 0x850b00e0... BloXroute Regulated
14234523 3 3101 1741 +1360 coinbase 0xb67eaa5e... BloXroute Regulated
14232896 5 3131 1774 +1357 coinbase 0x8527d16c... Ultra Sound
14237659 0 3048 1691 +1357 0x8db2a99d... BloXroute Max Profit
14231937 1 3063 1708 +1355 p2porg 0x823e0146... Ultra Sound
14234894 5 3129 1774 +1355 figment 0xb26f9666... BloXroute Max Profit
14235228 0 3045 1691 +1354 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14231764 6 3144 1791 +1353 coinbase 0xb7c5e609... BloXroute Max Profit
14237468 1 3060 1708 +1352 p2porg 0x823e0146... Flashbots
14236435 0 3043 1691 +1352 p2porg 0x853b0078... BloXroute Max Profit
14236894 2 3076 1725 +1351 p2porg 0x8db2a99d... BloXroute Max Profit
14232368 0 3042 1691 +1351 p2porg 0x99cba505... Flashbots
14233123 0 3042 1691 +1351 coinbase 0xb26f9666... BloXroute Regulated
14236686 0 3042 1691 +1351 coinbase 0x9129eeb4... Agnostic Gnosis
14234950 2 3075 1725 +1350 kiln 0x8527d16c... Ultra Sound
14230968 0 3041 1691 +1350 p2porg 0xb26f9666... BloXroute Max Profit
14235768 2 3073 1725 +1348 coinbase 0x853b0078... BloXroute Regulated
14236482 4 3106 1758 +1348 coinbase 0x856b0004... BloXroute Max Profit
14232016 5 3122 1774 +1348 coinbase 0x8527d16c... Ultra Sound
14236285 0 3036 1691 +1345 kiln 0xb26f9666... Titan Relay
14233873 0 3036 1691 +1345 p2porg 0xb26f9666... BloXroute Max Profit
14233590 2 3069 1725 +1344 coinbase 0xb26f9666... BloXroute Regulated
14233394 1 3051 1708 +1343 whale_0xedc6 0x9129eeb4... Agnostic Gnosis
14233575 0 3034 1691 +1343 coinbase 0x823e0146... Titan Relay
14232639 7 3150 1808 +1342 whale_0xedc6 0x8527d16c... Ultra Sound
14233573 0 3033 1691 +1342 coinbase 0xb26f9666... Titan Relay
14234980 0 3032 1691 +1341 0x83bee517... Flashbots
14237352 0 3031 1691 +1340 whale_0x8ebd 0x853b0078... BloXroute Max Profit
14232317 0 3031 1691 +1340 whale_0x8ebd 0x8527d16c... Ultra Sound
14237395 1 3047 1708 +1339 0xb67eaa5e... Ultra Sound
14237695 0 3030 1691 +1339 coinbase 0xb67eaa5e... BloXroute Max Profit
14234818 0 3029 1691 +1338 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14235806 0 3028 1691 +1337 coinbase 0xb26f9666... BloXroute Regulated
14234825 1 3044 1708 +1336 coinbase 0x8db2a99d... BloXroute Max Profit
14236321 1 3043 1708 +1335 coinbase 0x856b0004... BloXroute Max Profit
14233963 3 3076 1741 +1335 kiln 0x88a53ec4... BloXroute Max Profit
14236162 5 3109 1774 +1335 p2porg 0xb26f9666... BloXroute Max Profit
14232389 0 3026 1691 +1335 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14235230 9 3174 1841 +1333 whale_0x8ebd 0xb26f9666... Titan Relay
14236667 5 3107 1774 +1333 kiln 0xb26f9666... Titan Relay
14235174 5 3107 1774 +1333 coinbase 0xb26f9666... BloXroute Regulated
14237483 3 3073 1741 +1332 coinbase 0xb26f9666... Titan Relay
14233917 0 3023 1691 +1332 coinbase 0xb26f9666... Aestus
14237993 0 3022 1691 +1331 coinbase 0xb67eaa5e... BloXroute Regulated
14237178 1 3037 1708 +1329 coinbase 0x8db2a99d... BloXroute Max Profit
14232831 12 3219 1891 +1328 kiln 0x9129eeb4... Ultra Sound
14232908 1 3036 1708 +1328 coinbase 0x8527d16c... Ultra Sound
14232651 5 3102 1774 +1328 p2porg 0x853b0078... BloXroute Regulated
14236548 0 3019 1691 +1328 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14234933 7 3135 1808 +1327 kiln 0x850b00e0... BloXroute Max Profit
14234344 0 3018 1691 +1327 whale_0x8ebd 0x857b0038... BloXroute Max Profit
14233296 8 3150 1824 +1326 ether.fi 0xb67eaa5e... BloXroute Regulated
14231519 0 3016 1691 +1325 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14232201 2 3049 1725 +1324 whale_0x8ebd 0x8527d16c... Ultra Sound
14232935 4 3082 1758 +1324 coinbase 0x8527d16c... Ultra Sound
14236230 1 3032 1708 +1324 whale_0x8ebd 0xb26f9666... Titan Relay
14235355 5 3097 1774 +1323 p2porg 0xb26f9666... Titan Relay
14235008 0 3014 1691 +1323 coinbase 0x853b0078... BloXroute Max Profit
14231926 2 3046 1725 +1321 kiln 0xb26f9666... BloXroute Regulated
14233777 0 3012 1691 +1321 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14233237 2 3045 1725 +1320 coinbase 0x856b0004... BloXroute Max Profit
14235347 6 3111 1791 +1320 p2porg 0xb26f9666... Titan Relay
14236713 1 3028 1708 +1320 whale_0x8ebd Local Local
14235708 3 3060 1741 +1319 kiln 0x8db2a99d... Ultra Sound
14232516 0 3009 1691 +1318 kiln 0xb26f9666... Aestus
14231360 0 3009 1691 +1318 coinbase 0x856b0004... BloXroute Max Profit
14231780 4 3075 1758 +1317 kiln 0xb67eaa5e... BloXroute Max Profit
14236206 6 3108 1791 +1317 kiln 0x88a53ec4... BloXroute Max Profit
14232591 1 3025 1708 +1317 kiln 0x8527d16c... Ultra Sound
14235615 8 3141 1824 +1317 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14232533 5 3091 1774 +1317 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14234772 1 3024 1708 +1316 coinbase 0xb26f9666... BloXroute Max Profit
14234169 2 3040 1725 +1315 coinbase 0x9129eeb4... Ultra Sound
14235807 0 3006 1691 +1315 0x823e0146... Flashbots
14236893 2 3039 1725 +1314 coinbase 0xb26f9666... Titan Relay
14231732 2 3039 1725 +1314 kiln 0xb26f9666... BloXroute Regulated
14231596 3 3055 1741 +1314 coinbase 0x8527d16c... Ultra Sound
14237552 0 3005 1691 +1314 whale_0x8ebd 0x823e0146... Ultra Sound
14232558 5 3087 1774 +1313 coinbase 0xb26f9666... BloXroute Max Profit
14231653 0 3004 1691 +1313 kiln 0x851b00b1... BloXroute Max Profit
14231172 3 3053 1741 +1312 0x85fb0503... Aestus
14236121 11 3185 1874 +1311 solo_stakers 0x823e0146... BloXroute Max Profit
14231177 1 3019 1708 +1311 coinbase 0xb67eaa5e... BloXroute Regulated
14231219 0 3002 1691 +1311 0x85fb0503... Aestus
14231581 3 3051 1741 +1310 p2porg 0xb67eaa5e... Aestus
14233058 10 3167 1857 +1310 coinbase 0xb26f9666... BloXroute Max Profit
14232354 5 3084 1774 +1310 coinbase 0xb67eaa5e... Ultra Sound
14237881 4 3067 1758 +1309 kiln 0x88857150... Ultra Sound
14235064 1 3017 1708 +1309 kiln 0xb26f9666... BloXroute Regulated
14233366 0 2999 1691 +1308 coinbase 0xb67eaa5e... BloXroute Regulated
14234440 1 3015 1708 +1307 coinbase 0x856b0004... BloXroute Max Profit
14232350 0 2998 1691 +1307 whale_0xedc6 0x85fb0503... Aestus
14231034 6 3097 1791 +1306 kiln 0xb26f9666... BloXroute Max Profit
14232685 0 2997 1691 +1306 coinbase 0x8527d16c... Ultra Sound
14234037 7 3113 1808 +1305 p2porg 0xb26f9666... BloXroute Max Profit
14234559 3 3046 1741 +1305 whale_0x8ebd 0x8527d16c... Ultra Sound
14236188 7 3112 1808 +1304 kiln 0x850b00e0... BloXroute Max Profit
14232771 11 3178 1874 +1304 whale_0xfd67 0xa965c911... Ultra Sound
14232755 5 3078 1774 +1304 whale_0x8ebd 0x8527d16c... Ultra Sound
14234124 0 2995 1691 +1304 coinbase 0x851b00b1... BloXroute Max Profit
14237923 0 2995 1691 +1304 whale_0x8ebd 0x805e28e6... BloXroute Max Profit
14237335 0 2995 1691 +1304 coinbase 0xb26f9666... Titan Relay
14232992 7 3110 1808 +1302 whale_0x8ebd 0xb26f9666... Titan Relay
14237524 9 3143 1841 +1302 p2porg 0x8db2a99d... Ultra Sound
14235602 5 3076 1774 +1302 p2porg 0x88857150... Ultra Sound
14236820 1 3009 1708 +1301 kiln 0x88857150... Ultra Sound
14234905 10 3157 1857 +1300 figment 0xb26f9666... BloXroute Max Profit
14231696 5 3072 1774 +1298 p2porg 0x853b0078... Ultra Sound
14231893 5 3072 1774 +1298 coinbase 0x853b0078... BloXroute Max Profit
14234254 0 2989 1691 +1298 kiln 0x88a53ec4... BloXroute Regulated
14235075 6 3088 1791 +1297 kiln 0xb26f9666... BloXroute Max Profit
14231942 5 3071 1774 +1297 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14231368 0 2987 1691 +1296 coinbase 0x856b0004... BloXroute Max Profit
14232032 2 3020 1725 +1295 coinbase 0x85fb0503... Aestus
14237408 1 3003 1708 +1295 everstake 0xb67eaa5e... BloXroute Regulated
14234601 3 3036 1741 +1295 kiln 0xb26f9666... BloXroute Regulated
14230991 5 3069 1774 +1295 p2porg 0x85fb0503... Aestus
14235793 5 3069 1774 +1295 kiln 0xb26f9666... BloXroute Max Profit
14233980 2 3019 1725 +1294 kiln 0x9129eeb4... Ultra Sound
14231722 4 3052 1758 +1294 p2porg 0x85fb0503... Aestus
14233148 0 2985 1691 +1294 coinbase 0xb26f9666... BloXroute Regulated
14231469 2 3018 1725 +1293 whale_0x8ebd 0x85fb0503... Aestus
14233661 0 2984 1691 +1293 coinbase 0x856b0004... BloXroute Max Profit
14237414 0 2984 1691 +1293 nethermind_lido 0x805e28e6... BloXroute Regulated
14231276 1 3000 1708 +1292 everstake 0x853b0078... BloXroute Max Profit
14233969 0 2983 1691 +1292 kiln 0x88857150... Ultra Sound
14234012 7 3099 1808 +1291 whale_0x8ebd 0xb26f9666... Titan Relay
14236104 6 3082 1791 +1291 p2porg 0xb26f9666... BloXroute Max Profit
14234454 1 2999 1708 +1291 everstake 0xb26f9666... Titan Relay
14234509 1 2999 1708 +1291 kiln 0x88857150... Ultra Sound
14231738 5 3065 1774 +1291 p2porg 0xb26f9666... BloXroute Max Profit
14235346 0 2982 1691 +1291 coinbase 0x8527d16c... Ultra Sound
14234120 6 3080 1791 +1289 0x857b0038... BloXroute Max Profit
14237763 2 3013 1725 +1288 everstake 0xb26f9666... Titan Relay
14233884 6 3078 1791 +1287 whale_0x8ebd 0xb67eaa5e... Ultra Sound
14237712 0 2978 1691 +1287 kiln 0xb67eaa5e... BloXroute Regulated
14233576 9 3127 1841 +1286 ether.fi 0x88a53ec4... BloXroute Regulated
14234429 10 3143 1857 +1286 kiln 0xb26f9666... BloXroute Regulated
14233499 4 3043 1758 +1285 coinbase 0xb67eaa5e... Ultra Sound
14237342 1 2992 1708 +1284 nethermind_lido 0x8db2a99d... BloXroute Max Profit
14235343 2 3007 1725 +1282 coinbase 0xb26f9666... BloXroute Max Profit
14236613 1 2990 1708 +1282 kiln 0x856b0004... BloXroute Max Profit
14230825 1 2990 1708 +1282 kiln 0xb26f9666... BloXroute Max Profit
14236146 1 2990 1708 +1282 blockdaemon 0x8527d16c... Ultra Sound
14232921 10 3139 1857 +1282 coinbase 0x8527d16c... Ultra Sound
14235385 5 3056 1774 +1282 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14236979 0 2972 1691 +1281 kiln 0x83d6a6ab... Flashbots
14232509 0 2972 1691 +1281 coinbase 0xb26f9666... BloXroute Max Profit
14234400 7 3087 1808 +1279 coinbase 0x853b0078... BloXroute Max Profit
14234836 9 3120 1841 +1279 kiln 0xb67eaa5e... BloXroute Max Profit
14237645 1 2987 1708 +1279 everstake 0x88a53ec4... BloXroute Regulated
14231342 11 3152 1874 +1278 kiln 0xb7c5e609... BloXroute Max Profit
14232589 1 2984 1708 +1276 coinbase 0xb26f9666... BloXroute Max Profit
14234370 1 2983 1708 +1275 kiln 0x88857150... Ultra Sound
14236362 5 3049 1774 +1275 coinbase 0x856b0004... BloXroute Max Profit
14237322 7 3081 1808 +1273 whale_0xedc6 0x8db2a99d... BloXroute Max Profit
14231890 8 3097 1824 +1273 whale_0x8ebd 0x88857150... Ultra Sound
14231610 5 3047 1774 +1273 kiln 0xb26f9666... BloXroute Regulated
14236973 6 3063 1791 +1272 coinbase 0xb26f9666... Titan Relay
14231631 6 3063 1791 +1272 kiln 0xb26f9666... BloXroute Max Profit
14232455 0 2963 1691 +1272 coinbase 0x9129eeb4... Agnostic Gnosis
14235765 0 2963 1691 +1272 solo_stakers 0x88a53ec4... BloXroute Max Profit
14237746 1 2979 1708 +1271 kiln 0x88857150... Ultra Sound
14236024 1 2979 1708 +1271 kiln 0x8527d16c... Ultra Sound
14234321 5 3044 1774 +1270 kiln 0xb26f9666... BloXroute Max Profit
14237164 5 3044 1774 +1270 ether.fi 0x88a53ec4... BloXroute Max Profit
14232521 0 2961 1691 +1270 kiln 0x8527d16c... Ultra Sound
14233878 0 2961 1691 +1270 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
14235211 2 2994 1725 +1269 kiln 0x88857150... Ultra Sound
14231544 4 3027 1758 +1269 kiln 0xb26f9666... BloXroute Max Profit
14233943 1 2976 1708 +1268 everstake 0xb26f9666... Titan Relay
14236770 0 2958 1691 +1267 coinbase 0x88a53ec4... BloXroute Max Profit
14233601 0 2957 1691 +1266 everstake 0x88a53ec4... BloXroute Max Profit
14234819 0 2957 1691 +1266 coinbase 0x805e28e6... BloXroute Max Profit
14236903 9 3106 1841 +1265 p2porg 0x853b0078... BloXroute Max Profit
14230998 0 2956 1691 +1265 everstake 0xb26f9666... Titan Relay
14231031 6 3054 1791 +1263 everstake 0x88a53ec4... BloXroute Regulated
14237609 3 3004 1741 +1263 kiln 0x88857150... Ultra Sound
14236739 0 2954 1691 +1263 solo_stakers 0xb26f9666... Titan Relay
14231022 6 3053 1791 +1262 p2porg 0x85fb0503... Aestus
14234837 0 2952 1691 +1261 everstake 0x8db2a99d... Ultra Sound
14231680 0 2952 1691 +1261 blockdaemon_lido 0x8db2a99d... BloXroute Regulated
14236339 0 2952 1691 +1261 kiln 0xb26f9666... Titan Relay
14237229 1 2968 1708 +1260 ether.fi 0x8db2a99d... BloXroute Max Profit
14236266 0 2951 1691 +1260 kiln 0x8527d16c... Ultra Sound
14233453 6 3049 1791 +1258 coinbase 0xb26f9666... Titan Relay
14234348 0 2949 1691 +1258 kiln 0xb26f9666... BloXroute Max Profit
14235078 6 3048 1791 +1257 coinbase Local Local
14236521 9 3097 1841 +1256 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14234108 0 2947 1691 +1256 everstake 0x853b0078... BloXroute Max Profit
14234233 1 2963 1708 +1255 coinbase 0x88857150... Ultra Sound
14230839 6 3044 1791 +1253 kiln 0xb26f9666... BloXroute Max Profit
Total anomalies: 502

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