Fri, Apr 10, 2026

Propagation anomalies - 2026-04-10

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-04-10' AND slot_start_date_time < '2026-04-10'::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-04-10' AND slot_start_date_time < '2026-04-10'::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-04-10' AND slot_start_date_time < '2026-04-10'::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-04-10' AND slot_start_date_time < '2026-04-10'::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-04-10' AND slot_start_date_time < '2026-04-10'::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-04-10' AND slot_start_date_time < '2026-04-10'::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-04-10' AND slot_start_date_time < '2026-04-10'::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-04-10' AND slot_start_date_time < '2026-04-10'::date + INTERVAL 1 DAY
          AND event_date_time > '1970-01-01 00:00:01'
        GROUP BY slot, column_index
    )
    GROUP BY slot
)

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

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

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

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

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

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

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

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

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

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

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

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

print(f"Total valid blocks: {len(df):,}")
print(f"MEV blocks: {df['has_mev'].sum():,} ({df['has_mev'].mean()*100:.1f}%)")
print(f"Local blocks: {(~df['has_mev']).sum():,} ({(~df['has_mev']).mean()*100:.1f}%)")
Total valid blocks: 7,177
MEV blocks: 6,696 (93.3%)
Local blocks: 481 (6.7%)

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 = 1678.1 + 21.37 × blob_count (R² = 0.016)
Residual σ = 598.1ms
Anomalies (>2σ slow): 430 (6.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
14084448 17 6726 2041 +4685 upbit Local Local
14086144 0 6006 1678 +4328 abyss_finance Local Local
14080896 0 5687 1678 +4009 upbit Local Local
14082976 0 5675 1678 +3997 abyss_finance Local Local
14083441 5 5631 1785 +3846 whale_0xba8f Local Local
14079686 0 5249 1678 +3571 senseinode_lido Local Local
14080672 0 5073 1678 +3395 upbit Local Local
14083648 0 4890 1678 +3212 solo_stakers Local Local
14083040 0 4652 1678 +2974 upbit Local Local
14084449 0 4009 1678 +2331 whale_0x9212 Local Local
14081326 0 4006 1678 +2328 solo_stakers Local Local
14085138 0 3970 1678 +2292 solo_stakers Local Local
14080640 0 3942 1678 +2264 blockdaemon_lido Local Local
14081654 0 3853 1678 +2175 blockdaemon Local Local
14084670 6 3900 1806 +2094 solo_stakers Local Local
14080211 2 3781 1721 +2060 blockdaemon 0xb4ce6162... Ultra Sound
14085304 1 3552 1699 +1853 luno 0xb67eaa5e... BloXroute Regulated
14084046 4 3567 1764 +1803 whale_0xba8f Local Local
14084264 13 3758 1956 +1802 kraken 0xb26f9666... EthGas
14080834 1 3493 1699 +1794 blockdaemon 0x8a850621... Titan Relay
14082483 1 3478 1699 +1779 ether.fi 0xb67eaa5e... BloXroute Regulated
14084165 0 3434 1678 +1756 nethermind_lido 0xb26f9666... Aestus
14085438 0 3432 1678 +1754 blockdaemon_lido 0x8527d16c... Ultra Sound
14085096 11 3642 1913 +1729 blockdaemon 0x856b0004... BloXroute Max Profit
14085320 0 3399 1678 +1721 blockdaemon_lido 0xb26f9666... Titan Relay
14084134 5 3494 1785 +1709 blockdaemon 0x88857150... Ultra Sound
14086207 0 3384 1678 +1706 blockdaemon 0x8527d16c... Ultra Sound
14085707 3 3428 1742 +1686 blockdaemon 0x88857150... Ultra Sound
14085359 10 3570 1892 +1678 blockdaemon 0xb67eaa5e... BloXroute Regulated
14080320 10 3568 1892 +1676 solo_stakers 0x85fb0503... Ultra Sound
14085519 2 3394 1721 +1673 coinbase 0x823e0146... Aestus
14081328 0 3343 1678 +1665 blockdaemon_lido 0x8527d16c... Ultra Sound
14081058 0 3343 1678 +1665 blockdaemon 0xb4ce6162... Ultra Sound
14084772 0 3336 1678 +1658 blockdaemon_lido 0x855b00e6... BloXroute Max Profit
14085722 0 3336 1678 +1658 blockdaemon 0xb26f9666... Titan Relay
14081450 6 3463 1806 +1657 blockdaemon 0x8a850621... Titan Relay
14083696 0 3332 1678 +1654 blockdaemon_lido 0x8527d16c... Ultra Sound
14079929 6 3447 1806 +1641 blockdaemon_lido 0xb67eaa5e... Titan Relay
14084528 5 3418 1785 +1633 blockdaemon 0x855b00e6... BloXroute Max Profit
14082221 1 3332 1699 +1633 0x9129eeb4... Ultra Sound
14081400 1 3327 1699 +1628 blockdaemon 0x8527d16c... Ultra Sound
14085200 5 3412 1785 +1627 nethermind_lido 0xb26f9666... Aestus
14086264 1 3326 1699 +1627 blockdaemon 0x853b0078... Ultra Sound
14085275 1 3324 1699 +1625 blockdaemon 0x8db2a99d... BloXroute Max Profit
14084341 3 3365 1742 +1623 blockdaemon 0xb26f9666... Titan Relay
14085551 9 3492 1870 +1622 ether.fi 0x8527d16c... Ultra Sound
14085472 1 3319 1699 +1620 p2porg 0x850b00e0... Flashbots
14085607 5 3403 1785 +1618 blockdaemon 0xb67eaa5e... BloXroute Max Profit
14080728 0 3295 1678 +1617 ether.fi 0x853b0078... BloXroute Max Profit
14085417 1 3314 1699 +1615 blockdaemon_lido 0x855b00e6... BloXroute Max Profit
14080803 1 3309 1699 +1610 blockdaemon 0x850b00e0... BloXroute Max Profit
14084044 1 3307 1699 +1608 blockdaemon_lido 0x9129eeb4... Ultra Sound
14081791 0 3283 1678 +1605 blockdaemon 0xb26f9666... Titan Relay
14083612 1 3304 1699 +1605 ether.fi 0xb26f9666... BloXroute Max Profit
14085990 0 3273 1678 +1595 blockdaemon_lido 0x82c466b9... Ultra Sound
14083341 1 3294 1699 +1595 0xb26f9666... Titan Relay
14085500 4 3352 1764 +1588 blockdaemon_lido 0x823e0146... BloXroute Max Profit
14085242 7 3414 1828 +1586 whale_0xdc8d 0x850b00e0... BloXroute Regulated
14082449 5 3368 1785 +1583 luno 0xb67eaa5e... BloXroute Max Profit
14081153 0 3260 1678 +1582 0x851b00b1... Ultra Sound
14085874 14 3559 1977 +1582 ether.fi 0xb26f9666... Titan Relay
14082836 6 3384 1806 +1578 coinbase 0x8db2a99d... Aestus
14082076 2 3284 1721 +1563 blockdaemon_lido 0x88857150... Ultra Sound
14079616 5 3346 1785 +1561 p2porg 0xb26f9666... BloXroute Regulated
14081264 5 3344 1785 +1559 blockdaemon 0x823e0146... Ultra Sound
14084788 0 3235 1678 +1557 whale_0x8ebd 0x823e0146... Flashbots
14083435 5 3336 1785 +1551 blockdaemon_lido 0x853b0078... Ultra Sound
14080666 0 3225 1678 +1547 whale_0x8ebd 0xa965c911... Ultra Sound
14085775 5 3330 1785 +1545 blockdaemon 0x88a53ec4... BloXroute Regulated
14084958 0 3220 1678 +1542 whale_0x8ebd 0x88857150... Ultra Sound
14084926 0 3219 1678 +1541 kiln Local Local
14085528 1 3238 1699 +1539 gateway.fmas_lido 0x88857150... Ultra Sound
14084499 8 3383 1849 +1534 blockdaemon_lido 0x8527d16c... Ultra Sound
14085367 3 3268 1742 +1526 blockdaemon_lido 0xb67eaa5e... Titan Relay
14081793 7 3346 1828 +1518 blockdaemon_lido 0xb26f9666... Titan Relay
14086548 1 3217 1699 +1518 solo_stakers Local Local
14083338 0 3186 1678 +1508 coinbase 0xb26f9666... Aestus
14083770 10 3395 1892 +1503 blockdaemon_lido 0xb26f9666... Titan Relay
14083975 1 3200 1699 +1501 whale_0x8ebd 0x8527d16c... Ultra Sound
14084946 0 3175 1678 +1497 whale_0x8ebd 0x8527d16c... Ultra Sound
14080893 0 3173 1678 +1495 blockdaemon_lido 0xb26f9666... Titan Relay
14081364 0 3171 1678 +1493 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14085648 7 3320 1828 +1492 blockdaemon 0xb4ce6162... Ultra Sound
14085655 5 3277 1785 +1492 blockdaemon_lido 0x8527d16c... Ultra Sound
14079992 6 3298 1806 +1492 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
14081439 6 3294 1806 +1488 blockdaemon_lido 0x8527d16c... Ultra Sound
14083043 5 3272 1785 +1487 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14083402 5 3271 1785 +1486 bitstamp 0xb67eaa5e... BloXroute Max Profit
14079621 2 3204 1721 +1483 gateway.fmas_lido 0x856b0004... BloXroute Max Profit
14085920 5 3268 1785 +1483 blockdaemon_lido 0xb26f9666... Titan Relay
14080276 0 3160 1678 +1482 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
14085622 6 3278 1806 +1472 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
14085581 0 3149 1678 +1471 revolut 0x8527d16c... Ultra Sound
14085429 1 3170 1699 +1471 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14086596 1 3166 1699 +1467 blockdaemon_lido 0x853b0078... Ultra Sound
14081707 8 3314 1849 +1465 blockdaemon_lido 0x8527d16c... Ultra Sound
14083169 3 3202 1742 +1460 coinbase 0xb73d7672... Flashbots
14082130 0 3136 1678 +1458 gateway.fmas_lido 0x8527d16c... Ultra Sound
14084349 6 3261 1806 +1455 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14082359 6 3261 1806 +1455 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14083488 5 3239 1785 +1454 p2porg 0x8db2a99d... Flashbots
14082177 0 3132 1678 +1454 whale_0x8ebd 0xb67eaa5e... Aestus
14084131 4 3217 1764 +1453 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
14079974 5 3238 1785 +1453 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14081554 1 3152 1699 +1453 gateway.fmas_lido 0xb26f9666... Titan Relay
14080333 8 3301 1849 +1452 0xb67eaa5e... BloXroute Max Profit
14082427 1 3147 1699 +1448 gateway.fmas_lido 0x856b0004... BloXroute Max Profit
14083734 6 3253 1806 +1447 bitstamp 0x88a53ec4... BloXroute Regulated
14082834 0 3123 1678 +1445 p2porg 0x853b0078... BloXroute Regulated
14082174 0 3123 1678 +1445 0xb67eaa5e... BloXroute Max Profit
14086296 3 3182 1742 +1440 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14080269 3 3179 1742 +1437 whale_0x8ebd 0x85fb0503... Aestus
14083188 2 3156 1721 +1435 whale_0x8ebd 0x8527d16c... Ultra Sound
14083110 0 3113 1678 +1435 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
14083518 0 3113 1678 +1435 gateway.fmas_lido 0x8527d16c... Ultra Sound
14083665 6 3241 1806 +1435 p2porg 0x850b00e0... BloXroute Regulated
14080866 6 3240 1806 +1434 p2porg 0x850b00e0... BloXroute Regulated
14084419 0 3111 1678 +1433 p2porg 0x8db2a99d... Flashbots
14085091 0 3111 1678 +1433 0x851b00b1... BloXroute Max Profit
14081418 1 3129 1699 +1430 blockdaemon 0xb67eaa5e... BloXroute Max Profit
14082939 2 3150 1721 +1429 p2porg 0xb67eaa5e... BloXroute Regulated
14084773 0 3107 1678 +1429 gateway.fmas_lido 0x8db2a99d... Flashbots
14080531 5 3212 1785 +1427 0xa965c911... Ultra Sound
14080287 0 3105 1678 +1427 coinbase 0x99dbe3e8... Agnostic Gnosis
14081272 9 3297 1870 +1427 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
14080527 6 3232 1806 +1426 p2porg 0xac23f8cc... BloXroute Regulated
14081281 0 3103 1678 +1425 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14083246 0 3103 1678 +1425 p2porg 0x8db2a99d... BloXroute Max Profit
14086080 0 3103 1678 +1425 whale_0x8ebd 0x857b0038... Ultra Sound
14081009 1 3124 1699 +1425 gateway.fmas_lido 0x823e0146... Ultra Sound
14086464 0 3102 1678 +1424 whale_0x8ebd 0x853b0078... Aestus
14082107 0 3102 1678 +1424 0x856b0004... Aestus
14080302 0 3102 1678 +1424 kiln 0x88a53ec4... BloXroute Regulated
14084167 8 3271 1849 +1422 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14083033 9 3292 1870 +1422 whale_0x23be 0x850b00e0... BloXroute Max Profit
14083875 5 3206 1785 +1421 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14081406 14 3398 1977 +1421 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14086114 1 3120 1699 +1421 whale_0x8ebd 0x8527d16c... Ultra Sound
14084323 0 3098 1678 +1420 gateway.fmas_lido 0xb26f9666... Titan Relay
14086641 1 3118 1699 +1419 p2porg 0x850b00e0... Flashbots
14084192 6 3224 1806 +1418 0xac23f8cc... Flashbots
14086568 2 3137 1721 +1416 kiln 0xb26f9666... BloXroute Max Profit
14082487 0 3094 1678 +1416 0xb26f9666... BloXroute Max Profit
14086111 0 3094 1678 +1416 p2porg 0xb26f9666... Titan Relay
14083318 5 3200 1785 +1415 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14086496 6 3218 1806 +1412 ether.fi 0x8527d16c... EthGas
14084915 6 3217 1806 +1411 revolut 0x8db2a99d... Ultra Sound
14084329 5 3194 1785 +1409 blockdaemon 0xb26f9666... Titan Relay
14080567 6 3215 1806 +1409 revolut 0x9129eeb4... Ultra Sound
14080513 10 3300 1892 +1408 blockdaemon_lido 0x8db2a99d... Ultra Sound
14086012 0 3086 1678 +1408 whale_0x8ebd 0x8527d16c... Ultra Sound
14084111 0 3086 1678 +1408 gateway.fmas_lido 0x8527d16c... Ultra Sound
14081968 6 3214 1806 +1408 whale_0x8ebd 0xb26f9666... Titan Relay
14085639 6 3214 1806 +1408 whale_0x8ebd 0x823e0146... Ultra Sound
14086299 3 3148 1742 +1406 coinbase 0x8db2a99d... Ultra Sound
14082022 0 3082 1678 +1404 p2porg 0x853b0078... BloXroute Regulated
14081248 1 3102 1699 +1403 ether.fi 0x850b00e0... BloXroute Max Profit
14082692 2 3123 1721 +1402 whale_0x8ebd 0xb4ce6162... Ultra Sound
14081756 1 3100 1699 +1401 coinbase 0x8db2a99d... Aestus
14082361 12 3335 1935 +1400 whale_0x8ebd 0xb4ce6162... Ultra Sound
14085910 2 3121 1721 +1400 coinbase 0x8db2a99d... Aestus
14079890 1 3099 1699 +1400 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14081305 1 3099 1699 +1400 p2porg 0xac23f8cc... BloXroute Max Profit
14083539 1 3099 1699 +1400 whale_0x8ebd 0x8527d16c... Ultra Sound
14083525 0 3073 1678 +1395 p2porg 0x9129eeb4... Agnostic Gnosis
14085137 1 3094 1699 +1395 p2porg 0xb26f9666... Titan Relay
14084549 0 3071 1678 +1393 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
14083924 4 3156 1764 +1392 p2porg 0x853b0078... BloXroute Regulated
14083294 5 3177 1785 +1392 gateway.fmas_lido 0x8527d16c... Ultra Sound
14079797 11 3304 1913 +1391 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14082703 5 3173 1785 +1388 whale_0x8ebd 0xb26f9666... Titan Relay
14082559 0 3063 1678 +1385 p2porg 0xb67eaa5e... BloXroute Max Profit
14083628 0 3062 1678 +1384 kiln 0xb73d7672... Flashbots
14080006 5 3167 1785 +1382 p2porg 0x856b0004... Aestus
14081721 12 3314 1935 +1379 blockdaemon_lido 0xb26f9666... Titan Relay
14081953 3 3120 1742 +1378 whale_0x8ebd 0x8db2a99d... Aestus
14083270 1 3075 1699 +1376 0x9129eeb4... Agnostic Gnosis
14083364 3 3117 1742 +1375 whale_0xedc6 0xb26f9666... BloXroute Max Profit
14082696 1 3074 1699 +1375 blockdaemon 0x88857150... Ultra Sound
14086658 1 3073 1699 +1374 kiln 0x8527d16c... Ultra Sound
14082969 2 3094 1721 +1373 kiln 0xb67eaa5e... BloXroute Regulated
14085329 1 3072 1699 +1373 p2porg 0xb26f9666... BloXroute Max Profit
14083789 2 3093 1721 +1372 kiln 0xb7c5e609... BloXroute Max Profit
14080137 6 3178 1806 +1372 0x853b0078... BloXroute Regulated
14081778 8 3218 1849 +1369 gateway.fmas_lido 0x8527d16c... Ultra Sound
14085619 3 3111 1742 +1369 whale_0x8ebd 0x8527d16c... Ultra Sound
14083262 0 3046 1678 +1368 kiln 0xac23f8cc... Flashbots
14085698 1 3067 1699 +1368 coinbase 0xb67eaa5e... BloXroute Max Profit
14086765 0 3044 1678 +1366 whale_0xedc6 0x851b00b1... BloXroute Max Profit
14083692 6 3172 1806 +1366 kiln 0xb7c5e609... BloXroute Max Profit
14081278 0 3042 1678 +1364 p2porg 0x823e0146... Ultra Sound
14084315 1 3063 1699 +1364 coinbase 0xb67eaa5e... BloXroute Max Profit
14082058 2 3083 1721 +1362 kiln 0xb67eaa5e... BloXroute Regulated
14083275 5 3147 1785 +1362 coinbase 0xb26f9666... BloXroute Regulated
14084775 1 3059 1699 +1360 figment 0x8527d16c... Ultra Sound
14080964 1 3058 1699 +1359 kiln 0x8db2a99d... Ultra Sound
14084692 1 3057 1699 +1358 p2porg 0xb26f9666... BloXroute Max Profit
14085991 5 3142 1785 +1357 everstake 0xac23f8cc... BloXroute Max Profit
14081790 0 3030 1678 +1352 0xb67eaa5e... BloXroute Max Profit
14086266 6 3158 1806 +1352 blockdaemon 0x88857150... Ultra Sound
14080655 1 3050 1699 +1351 coinbase 0x8db2a99d... Aestus
14082240 7 3177 1828 +1349 whale_0x8ebd 0xac23f8cc... Aestus
14083306 1 3048 1699 +1349 kiln 0xb67eaa5e... BloXroute Regulated
14085279 7 3173 1828 +1345 coinbase 0x8527d16c... Ultra Sound
14084223 10 3237 1892 +1345 p2porg 0xb26f9666... Titan Relay
14083216 1 3044 1699 +1345 whale_0x8ebd 0xac23f8cc... Aestus
14086411 0 3022 1678 +1344 kiln 0x853b0078... Agnostic Gnosis
14085884 5 3127 1785 +1342 p2porg 0x8527d16c... Ultra Sound
14083708 1 3041 1699 +1342 coinbase 0xac23f8cc... Ultra Sound
14083197 7 3169 1828 +1341 gateway.fmas_lido 0x8527d16c... Ultra Sound
14081942 0 3019 1678 +1341 0x9129eeb4... Agnostic Gnosis
14082140 5 3125 1785 +1340 coinbase 0xac23f8cc... Aestus
14084490 0 3018 1678 +1340 gateway.fmas_lido 0x88a53ec4... BloXroute Regulated
14086010 3 3079 1742 +1337 whale_0xedc6 0xb26f9666... BloXroute Max Profit
14084408 2 3056 1721 +1335 kiln 0x88a53ec4... BloXroute Max Profit
14083558 1 3034 1699 +1335 coinbase 0x8db2a99d... Aestus
14083316 1 3034 1699 +1335 coinbase 0xb67eaa5e... BloXroute Regulated
14085972 8 3182 1849 +1333 blockdaemon 0x853b0078... Ultra Sound
14084663 5 3117 1785 +1332 blockdaemon_lido 0xb26f9666... Titan Relay
14086122 10 3223 1892 +1331 coinbase 0x850b00e0... BloXroute Max Profit
14081168 0 3009 1678 +1331 whale_0x8ebd 0xb26f9666... Titan Relay
14084112 5 3115 1785 +1330 p2porg 0xb26f9666... Titan Relay
14084324 3 3072 1742 +1330 kiln 0x8527d16c... Ultra Sound
14086473 5 3114 1785 +1329 p2porg 0x823e0146... Ultra Sound
14079920 0 3007 1678 +1329 whale_0x8ebd 0x853b0078... BloXroute Max Profit
14084996 6 3135 1806 +1329 coinbase 0x823e0146... BloXroute Max Profit
14085278 4 3092 1764 +1328 p2porg 0xb26f9666... Titan Relay
14084891 0 3004 1678 +1326 stader 0xa965c911... Ultra Sound
14081492 0 3004 1678 +1326 kiln 0xb67eaa5e... BloXroute Regulated
14086680 4 3089 1764 +1325 coinbase 0x8527d16c... Ultra Sound
14083637 5 3109 1785 +1324 p2porg 0xb26f9666... BloXroute Max Profit
14084037 6 3129 1806 +1323 0x850b00e0... BloXroute Max Profit
14085790 1 3022 1699 +1323 coinbase 0xb26f9666... BloXroute Regulated
14084450 7 3150 1828 +1322 kiln 0x9129eeb4... Agnostic Gnosis
14086273 0 3000 1678 +1322 coinbase 0xb4ce6162... Ultra Sound
14081838 5 3105 1785 +1320 coinbase 0x823e0146... Ultra Sound
14082893 5 3104 1785 +1319 p2porg 0xb26f9666... Titan Relay
14084076 6 3125 1806 +1319 p2porg 0x856b0004... BloXroute Max Profit
14085880 2 3039 1721 +1318 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14081267 0 2994 1678 +1316 kiln 0xb26f9666... Aestus
14081844 2 3036 1721 +1315 kiln 0x8db2a99d... BloXroute Max Profit
14082180 6 3120 1806 +1314 kiln 0x9129eeb4... Ultra Sound
14082251 8 3162 1849 +1313 coinbase 0xb67eaa5e... BloXroute Regulated
14086174 5 3097 1785 +1312 figment 0x853b0078... Agnostic Gnosis
14085569 3 3054 1742 +1312 whale_0x8ebd 0x853b0078... Agnostic Gnosis
14081077 1 3011 1699 +1312 coinbase 0xb26f9666... BloXroute Regulated
14082082 0 2989 1678 +1311 0xb26f9666... BloXroute Regulated
14081404 6 3117 1806 +1311 everstake 0x850b00e0... BloXroute Max Profit
14085151 3 3052 1742 +1310 whale_0x8ebd Local Local
14081634 6 3116 1806 +1310 coinbase 0x8527d16c... Ultra Sound
14081321 1 3009 1699 +1310 coinbase 0xb26f9666... Aestus
14085342 5 3094 1785 +1309 whale_0x8ebd 0x8db2a99d... Ultra Sound
14080304 8 3158 1849 +1309 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14083024 5 3093 1785 +1308 coinbase 0x823e0146... Aestus
14085821 0 2986 1678 +1308 kiln 0xac23f8cc... Flashbots
14082423 1 3007 1699 +1308 kiln 0x8db2a99d... Flashbots
14085086 1 3006 1699 +1307 kiln 0xb67eaa5e... BloXroute Max Profit
14083512 7 3134 1828 +1306 p2porg 0x8527d16c... Ultra Sound
14083398 0 2984 1678 +1306 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14086563 5 3090 1785 +1305 coinbase 0x88857150... Ultra Sound
14085260 5 3090 1785 +1305 p2porg 0xb26f9666... BloXroute Max Profit
14085423 6 3111 1806 +1305 coinbase 0x823e0146... Ultra Sound
14082824 1 3004 1699 +1305 coinbase Local Local
14080954 1 3004 1699 +1305 whale_0x8ebd 0x850b00e0... Flashbots
14080166 0 2982 1678 +1304 kiln 0x9129eeb4... Agnostic Gnosis
14085680 0 2982 1678 +1304 kiln 0x856b0004... Agnostic Gnosis
14085634 1 3003 1699 +1304 0x88a53ec4... BloXroute Regulated
14081146 6 3109 1806 +1303 coinbase 0xac23f8cc... Aestus
14083871 10 3194 1892 +1302 gateway.fmas_lido 0x8527d16c... Ultra Sound
14085687 7 3129 1828 +1301 p2porg 0xb26f9666... Titan Relay
14080561 5 3086 1785 +1301 coinbase 0x8527d16c... Ultra Sound
14083174 5 3086 1785 +1301 p2porg 0x853b0078... Agnostic Gnosis
14081289 8 3150 1849 +1301 p2porg 0xa965c911... Ultra Sound
14081964 1 3000 1699 +1301 0xb26f9666... Aestus
14080824 1 2999 1699 +1300 coinbase 0xb26f9666... Titan Relay
14084028 1 2999 1699 +1300 coinbase 0x9129eeb4... Agnostic Gnosis
14080696 2 3019 1721 +1298 kiln 0xb26f9666... Aestus
14084715 2 3018 1721 +1297 coinbase 0xb26f9666... Titan Relay
14081124 4 3060 1764 +1296 0x88857150... Ultra Sound
14084484 5 3080 1785 +1295 whale_0x8ebd 0xb26f9666... Titan Relay
14082798 11 3207 1913 +1294 blockdaemon_lido 0x9129eeb4... Titan Relay
14083670 1 2992 1699 +1293 ether.fi 0x850b00e0... BloXroute Max Profit
14084263 5 3076 1785 +1291 whale_0x8ebd 0x88857150... Ultra Sound
14079807 8 3140 1849 +1291 0x853b0078... Ultra Sound
14084752 10 3181 1892 +1289 gateway.fmas_lido 0x856b0004... Ultra Sound
14082472 5 3074 1785 +1289 coinbase 0xb26f9666... Titan Relay
14079893 6 3093 1806 +1287 coinbase 0x85fb0503... Aestus
14083705 7 3113 1828 +1285 whale_0xedc6 0x8db2a99d... Ultra Sound
14079715 0 2962 1678 +1284 solo_stakers 0x8527d16c... Ultra Sound
14080883 0 2961 1678 +1283 whale_0x8ebd 0x8527d16c... Ultra Sound
14081172 1 2981 1699 +1282 coinbase 0xac23f8cc... Ultra Sound
14079979 1 2978 1699 +1279 coinbase 0x853b0078... BloXroute Regulated
14081090 1 2978 1699 +1279 everstake 0x88857150... Ultra Sound
14083667 10 3170 1892 +1278 kiln 0xb67eaa5e... BloXroute Max Profit
14086032 1 2976 1699 +1277 coinbase 0x856b0004... BloXroute Max Profit
14080161 6 3082 1806 +1276 coinbase 0x9129eeb4... Agnostic Gnosis
14082671 1 2974 1699 +1275 stader 0xb26f9666... Titan Relay
14082146 0 2952 1678 +1274 everstake 0xb26f9666... Aestus
14079789 6 3080 1806 +1274 kiln 0x88a53ec4... BloXroute Regulated
14081699 5 3058 1785 +1273 kiln 0x853b0078... Agnostic Gnosis
14079760 0 2951 1678 +1273 kiln 0x85fb0503... BloXroute Max Profit
14081816 7 3100 1828 +1272 solo_stakers 0x850b00e0... BloXroute Max Profit
14082964 1 2971 1699 +1272 everstake 0xb26f9666... Titan Relay
14082291 1 2971 1699 +1272 everstake 0xb67eaa5e... BloXroute Max Profit
14080283 0 2949 1678 +1271 kiln 0x85fb0503... Aestus
14084346 2 2991 1721 +1270 coinbase 0x856b0004... Agnostic Gnosis
14083717 2 2991 1721 +1270 kiln 0x9129eeb4... Agnostic Gnosis
14082189 11 3183 1913 +1270 kiln 0xb67eaa5e... BloXroute Regulated
14079773 2 2987 1721 +1266 everstake 0xb67eaa5e... BloXroute Max Profit
14081154 5 3050 1785 +1265 kiln 0xb26f9666... Titan Relay
14083949 1 2964 1699 +1265 coinbase 0x856b0004... Aestus
14084488 1 2964 1699 +1265 everstake 0xb67eaa5e... BloXroute Regulated
14080510 1 2961 1699 +1262 everstake 0xb26f9666... Aestus
14081388 0 2939 1678 +1261 nethermind_lido 0xb26f9666... Aestus
14083835 0 2938 1678 +1260 everstake 0x851b00b1... BloXroute Max Profit
14084997 4 3023 1764 +1259 kiln 0x8db2a99d... BloXroute Max Profit
14086034 0 2937 1678 +1259 coinbase 0x850b00e0... BloXroute Max Profit
14086221 6 3065 1806 +1259 p2porg 0xb67eaa5e... Aestus
14081151 1 2958 1699 +1259 0x856b0004... BloXroute Max Profit
14080551 6 3064 1806 +1258 whale_0x8ebd 0x856b0004... Agnostic Gnosis
14080790 1 2957 1699 +1258 kiln 0x8527d16c... Ultra Sound
14085352 1 2957 1699 +1258 whale_0x8ebd 0x853b0078... Agnostic Gnosis
14082043 0 2935 1678 +1257 everstake 0xac23f8cc... Aestus
14085646 0 2935 1678 +1257 everstake 0xac23f8cc... Aestus
14082861 2 2977 1721 +1256 coinbase 0x856b0004... Agnostic Gnosis
14084032 5 3041 1785 +1256 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14085016 13 3211 1956 +1255 coinbase 0xb67eaa5e... BloXroute Regulated
14086386 6 3061 1806 +1255 p2porg 0xb26f9666... BloXroute Max Profit
14083401 1 2954 1699 +1255 everstake 0xb67eaa5e... BloXroute Regulated
14082038 0 2932 1678 +1254 whale_0x8ebd 0x856b0004... Agnostic Gnosis
14083978 0 2932 1678 +1254 coinbase 0xb26f9666... BloXroute Max Profit
14080571 0 2932 1678 +1254 coinbase 0x853b0078... BloXroute Max Profit
14086527 1 2953 1699 +1254 kiln 0xb26f9666... Titan Relay
14082481 5 3038 1785 +1253 whale_0x8ebd 0x856b0004... Aestus
14081762 8 3102 1849 +1253 bitstamp 0xb67eaa5e... BloXroute Regulated
14079718 0 2931 1678 +1253 everstake 0x85fb0503... Aestus
14082378 0 2930 1678 +1252 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14079643 9 3122 1870 +1252 p2porg 0x8527d16c... Ultra Sound
14083528 2 2972 1721 +1251 coinbase 0xb26f9666... BloXroute Max Profit
14083905 5 3035 1785 +1250 coinbase 0xb26f9666... Aestus
14082042 1 2948 1699 +1249 kiln 0x856b0004... Agnostic Gnosis
14084318 5 3033 1785 +1248 kiln 0xac23f8cc... Ultra Sound
14082550 5 3033 1785 +1248 kiln 0x9129eeb4... Ultra Sound
14082239 0 2925 1678 +1247 kiln 0xba003e46... Flashbots
14082499 9 3117 1870 +1247 stader 0x8527d16c... Ultra Sound
14080613 2 2967 1721 +1246 everstake 0x823e0146... BloXroute Max Profit
14086186 1 2945 1699 +1246 stader 0x850b00e0... BloXroute Max Profit
14082227 4 3009 1764 +1245 kiln 0xb26f9666... Aestus
14084606 0 2923 1678 +1245 everstake 0x855b00e6... Flashbots
14080294 0 2922 1678 +1244 kiln 0x8db2a99d... Ultra Sound
14082086 0 2922 1678 +1244 coinbase 0xb26f9666... BloXroute Max Profit
14081777 0 2922 1678 +1244 kiln 0xb26f9666... BloXroute Regulated
14082381 7 3071 1828 +1243 kiln 0xb26f9666... BloXroute Regulated
14084301 7 3071 1828 +1243 0x853b0078... Agnostic Gnosis
14082869 5 3028 1785 +1243 solo_stakers 0x850b00e0... BloXroute Max Profit
14082332 12 3177 1935 +1242 whale_0x8ebd 0x823e0146... BloXroute Max Profit
14080127 0 2920 1678 +1242 kiln 0x85fb0503... BloXroute Max Profit
14081386 0 2920 1678 +1242 kiln 0x8527d16c... Ultra Sound
14081925 1 2941 1699 +1242 everstake 0xb26f9666... Aestus
14086284 4 3005 1764 +1241 coinbase 0xb26f9666... Titan Relay
14086710 2 2962 1721 +1241 nethermind_lido 0x823e0146... Flashbots
14086061 5 3026 1785 +1241 coinbase 0x853b0078... Agnostic Gnosis
14082154 5 3026 1785 +1241 everstake 0xb67eaa5e... BloXroute Regulated
14082228 0 2919 1678 +1241 whale_0x8ebd 0x853b0078... Agnostic Gnosis
14085888 0 2919 1678 +1241 blockdaemon 0x9129eeb4... Ultra Sound
14083592 2 2960 1721 +1239 coinbase 0xb26f9666... BloXroute Max Profit
14081240 8 3088 1849 +1239 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14086457 1 2938 1699 +1239 everstake 0x850b00e0... BloXroute Max Profit
14084651 1 2937 1699 +1238 coinbase 0xb26f9666... BloXroute Regulated
14086112 0 2915 1678 +1237 everstake 0x8527d16c... Ultra Sound
14080108 0 2915 1678 +1237 kiln 0x85fb0503... BloXroute Max Profit
14086695 8 3084 1849 +1235 p2porg 0xb26f9666... BloXroute Max Profit
14086384 0 2913 1678 +1235 kiln 0x99cba505... Flashbots
14083857 0 2913 1678 +1235 coinbase Local Local
14084729 1 2934 1699 +1235 kiln 0x856b0004... Aestus
14086248 1 2934 1699 +1235 everstake 0x8527d16c... Ultra Sound
14081893 5 3018 1785 +1233 stader 0xb26f9666... BloXroute Max Profit
14080493 0 2911 1678 +1233 everstake 0x85fb0503... Aestus
14081813 0 2909 1678 +1231 everstake 0xb67eaa5e... BloXroute Regulated
14082896 11 3144 1913 +1231 whale_0x8ebd 0x853b0078... Agnostic Gnosis
14084299 1 2930 1699 +1231 solo_stakers 0xb26f9666... BloXroute Max Profit
14083531 1 2929 1699 +1230 nethermind_lido 0xb26f9666... Aestus
14085157 5 3014 1785 +1229 coinbase 0xb26f9666... Titan Relay
14082258 0 2907 1678 +1229 coinbase 0xb26f9666... BloXroute Regulated
14080078 0 2906 1678 +1228 everstake 0x99dbe3e8... Agnostic Gnosis
14081032 6 3034 1806 +1228 whale_0x8ebd 0x855b00e6... BloXroute Max Profit
14079781 0 2905 1678 +1227 coinbase 0xb26f9666... BloXroute Regulated
14085023 5 3011 1785 +1226 kiln 0x8527d16c... Ultra Sound
14083360 0 2904 1678 +1226 everstake 0xb26f9666... Ultra Sound
14084089 2 2946 1721 +1225 everstake 0x9129eeb4... Agnostic Gnosis
14083845 5 3010 1785 +1225 kiln 0xb67eaa5e... BloXroute Regulated
14085887 8 3074 1849 +1225 bitstamp 0x9589cf28... Agnostic Gnosis
14085719 3 2967 1742 +1225 everstake 0xb26f9666... Titan Relay
14081690 5 3009 1785 +1224 kiln 0x856b0004... Aestus
14081681 1 2922 1699 +1223 everstake 0x853b0078... Agnostic Gnosis
14084478 5 3007 1785 +1222 kiln Local Local
14085107 6 3028 1806 +1222 kiln 0x856b0004... Aestus
14084601 10 3113 1892 +1221 kiln 0xb26f9666... BloXroute Max Profit
14082460 1 2920 1699 +1221 everstake 0x9129eeb4... Ultra Sound
14079841 0 2898 1678 +1220 everstake 0xb26f9666... Titan Relay
14085418 0 2896 1678 +1218 everstake 0x8db2a99d... BloXroute Max Profit
14082079 9 3087 1870 +1217 whale_0x8ebd 0xb26f9666... Titan Relay
14081096 14 3193 1977 +1216 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14081671 1 2915 1699 +1216 nethermind_lido 0xb26f9666... Aestus
14080465 1 2915 1699 +1216 coinbase 0xb26f9666... BloXroute Max Profit
14086234 2 2935 1721 +1214 coinbase 0xb26f9666... BloXroute Max Profit
14082973 5 2999 1785 +1214 kiln 0x856b0004... Ultra Sound
14086519 0 2892 1678 +1214 everstake 0x853b0078... Agnostic Gnosis
14081572 0 2892 1678 +1214 whale_0x7275 0xb26f9666... BloXroute Max Profit
14082738 6 3019 1806 +1213 coinbase 0x856b0004... Ultra Sound
14079845 5 2997 1785 +1212 kiln 0x853b0078... Agnostic Gnosis
14082670 0 2890 1678 +1212 kiln 0xb26f9666... BloXroute Max Profit
14082489 6 3018 1806 +1212 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14084196 8 3059 1849 +1210 coinbase 0xb26f9666... Titan Relay
14085116 5 2993 1785 +1208 whale_0x8ebd Local Local
14085778 0 2886 1678 +1208 kiln 0xb26f9666... BloXroute Max Profit
14082463 6 3014 1806 +1208 coinbase 0x856b0004... Agnostic Gnosis
14080354 1 2906 1699 +1207 0xb26f9666... BloXroute Max Profit
14086127 1 2905 1699 +1206 everstake 0xb67eaa5e... BloXroute Regulated
14084556 1 2905 1699 +1206 ether.fi 0xb26f9666... Titan Relay
14084622 0 2883 1678 +1205 stader 0xb26f9666... Titan Relay
14084109 1 2904 1699 +1205 everstake 0xb26f9666... Aestus
14082486 0 2880 1678 +1202 everstake 0x88857150... Ultra Sound
14083492 0 2880 1678 +1202 everstake 0xb26f9666... Titan Relay
14083447 7 3029 1828 +1201 coinbase 0x856b0004... Aestus
14086095 3 2943 1742 +1201 whale_0x8ebd 0x853b0078... Agnostic Gnosis
14079957 1 2900 1699 +1201 solo_stakers 0x85fb0503... Aestus
14083281 12 3133 1935 +1198 coinbase 0x8527d16c... Ultra Sound
14079935 6 3004 1806 +1198 everstake 0x88a53ec4... BloXroute Max Profit
14083501 0 2875 1678 +1197 everstake 0x853b0078... Agnostic Gnosis
Total anomalies: 430

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