Fri, Apr 17, 2026

Propagation anomalies - 2026-04-17

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

print(f"Total valid blocks: {len(df):,}")
print(f"MEV blocks: {df['has_mev'].sum():,} ({df['has_mev'].mean()*100:.1f}%)")
print(f"Local blocks: {(~df['has_mev']).sum():,} ({(~df['has_mev']).mean()*100:.1f}%)")
Total valid blocks: 7,193
MEV blocks: 6,799 (94.5%)
Local blocks: 394 (5.5%)

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 = 1676.6 + 18.00 × blob_count (R² = 0.011)
Residual σ = 607.6ms
Anomalies (>2σ slow): 527 (7.3%)
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
14133346 0 10318 1677 +8641 whale_0x6395 Local Local
14136544 1 6257 1695 +4562 upbit Local Local
14134912 0 5617 1677 +3940 upbit Local Local
14134304 0 5096 1677 +3419 abyss_finance Local Local
14135328 0 4819 1677 +3142 upbit Local Local
14134432 9 4287 1839 +2448 blockdaemon_lido Local Local
14135396 3 3828 1731 +2097 kraken 0xb26f9666... Titan Relay
14134291 3 3823 1731 +2092 everstake 0x857b0038... BloXroute Regulated
14131008 1 3731 1695 +2036 lido 0xac23f8cc... Flashbots
14135761 4 3776 1749 +2027 blockdaemon 0x857b0038... BloXroute Max Profit
14131300 0 3677 1677 +2000 kraken 0xb26f9666... Titan Relay
14132726 8 3709 1821 +1888 blockdaemon 0xb4ce6162... Ultra Sound
14131072 1 3579 1695 +1884 blockdaemon 0xb67eaa5e... BloXroute Regulated
14133912 11 3754 1875 +1879 ether.fi 0x8a850621... EthGas
14137061 5 3590 1767 +1823 blockdaemon_lido 0xb67eaa5e... Titan Relay
14130848 0 3465 1677 +1788 blockdaemon 0xb26f9666... Titan Relay
14137195 8 3607 1821 +1786 blockdaemon_lido 0x88857150... Ultra Sound
14133163 1 3480 1695 +1785 ether.fi 0xb67eaa5e... Titan Relay
14135054 1 3474 1695 +1779 blockdaemon_lido 0x8527d16c... Ultra Sound
14136571 1 3461 1695 +1766 blockdaemon_lido 0xb67eaa5e... Titan Relay
14130879 1 3458 1695 +1763 solo_stakers 0x8db2a99d... Agnostic Gnosis
14132025 3 3487 1731 +1756 whale_0xfd67 Local Local
14133386 5 3513 1767 +1746 blockdaemon_lido 0xb67eaa5e... Titan Relay
14133183 2 3455 1713 +1742 blockdaemon 0x8527d16c... Ultra Sound
14130731 0 3415 1677 +1738 ether.fi 0x8527d16c... Ultra Sound
14132033 0 3402 1677 +1725 nethermind_lido 0xb26f9666... Aestus
14131584 1 3415 1695 +1720 gateway.fmas_lido 0xb7c5e609... BloXroute Max Profit
14132389 0 3396 1677 +1719 nethermind_lido 0xb26f9666... Aestus
14132210 0 3396 1677 +1719 blockdaemon 0x8527d16c... Ultra Sound
14134254 1 3411 1695 +1716 blockdaemon_lido 0xb67eaa5e... Titan Relay
14131679 12 3609 1893 +1716 kraken 0xb26f9666... EthGas
14131694 7 3518 1803 +1715 blockdaemon_lido 0x850b00e0... Ultra Sound
14130239 3 3441 1731 +1710 blockdaemon 0x8a850621... Titan Relay
14131040 5 3472 1767 +1705 bitstamp 0xb67eaa5e... BloXroute Max Profit
14136576 4 3451 1749 +1702 blockdaemon 0x850b00e0... BloXroute Max Profit
14131452 0 3378 1677 +1701 nethermind_lido 0xb26f9666... Aestus
14133664 0 3349 1677 +1672 gateway.fmas_lido 0x83d6a6ab... Flashbots
14136324 0 3347 1677 +1670 blockdaemon_lido 0x853b0078... BloXroute Max Profit
14136574 1 3363 1695 +1668 blockdaemon 0x8a850621... Titan Relay
14132547 1 3353 1695 +1658 blockdaemon 0xb67eaa5e... BloXroute Max Profit
14132252 2 3370 1713 +1657 nethermind_lido 0xb26f9666... Aestus
14130614 0 3326 1677 +1649 coinbase 0x857b0038... BloXroute Regulated
14130296 10 3504 1857 +1647 ether.fi 0x850b00e0... BloXroute Max Profit
14134138 6 3431 1785 +1646 blockdaemon_lido 0xb67eaa5e... Titan Relay
14130640 9 3485 1839 +1646 everstake 0x857b0038... BloXroute Max Profit
14132641 0 3322 1677 +1645 blockdaemon 0x8a850621... Titan Relay
14132631 0 3322 1677 +1645 blockdaemon 0x9129eeb4... Ultra Sound
14133246 0 3320 1677 +1643 coinbase 0xb67eaa5e... Aestus
14131663 11 3515 1875 +1640 blockdaemon 0xb4ce6162... Ultra Sound
14134530 14 3569 1929 +1640 coinbase 0x88a53ec4... BloXroute Max Profit
14133387 2 3347 1713 +1634 ether.fi 0x823e0146... BloXroute Regulated
14134200 13 3545 1911 +1634 blockdaemon_lido 0xb67eaa5e... Titan Relay
14133714 10 3489 1857 +1632 blockdaemon 0x8a850621... Titan Relay
14132720 1 3326 1695 +1631 luno 0xb26f9666... Titan Relay
14131016 0 3307 1677 +1630 blockdaemon_lido 0x823e0146... Ultra Sound
14132149 1 3323 1695 +1628 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14131044 5 3395 1767 +1628 blockdaemon 0x88857150... Ultra Sound
14134313 1 3322 1695 +1627 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14131820 1 3313 1695 +1618 ether.fi 0x856b0004... BloXroute Max Profit
14130174 5 3380 1767 +1613 revolut 0x8527d16c... Ultra Sound
14136304 0 3286 1677 +1609 solo_stakers 0x851b00b1... Aestus
14130779 11 3484 1875 +1609 kraken 0x8527d16c... EthGas
14135395 5 3375 1767 +1608 blockdaemon 0x8db2a99d... BloXroute Max Profit
14133914 3 3336 1731 +1605 blockdaemon 0xb26f9666... Titan Relay
14133050 4 3353 1749 +1604 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
14131428 0 3280 1677 +1603 blockdaemon 0x853b0078... BloXroute Max Profit
14134674 5 3364 1767 +1597 luno 0x853b0078... Ultra Sound
14135950 4 3345 1749 +1596 blockdaemon_lido 0xb26f9666... Titan Relay
14133972 15 3538 1947 +1591 blockdaemon 0x850b00e0... Ultra Sound
14130511 4 3339 1749 +1590 blockdaemon_lido 0x8527d16c... Ultra Sound
14130092 5 3355 1767 +1588 blockdaemon 0x88510a78... Titan Relay
14132477 8 3407 1821 +1586 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14134414 5 3352 1767 +1585 blockdaemon 0x8527d16c... Ultra Sound
14137089 2 3297 1713 +1584 whale_0x75ff 0xb67eaa5e... Titan Relay
14130428 1 3275 1695 +1580 blockdaemon 0x857b0038... BloXroute Regulated
14130790 5 3346 1767 +1579 ether.fi Local Local
14137017 2 3290 1713 +1577 whale_0xdc8d 0xb26f9666... Titan Relay
14134489 0 3253 1677 +1576 revolut 0xb26f9666... Titan Relay
14133533 0 3251 1677 +1574 0xb67eaa5e... BloXroute Regulated
14136116 0 3251 1677 +1574 blockdaemon 0x8527d16c... Ultra Sound
14134509 11 3449 1875 +1574 luno 0xb67eaa5e... BloXroute Max Profit
14131560 0 3250 1677 +1573 luno 0x9129eeb4... Ultra Sound
14134094 6 3358 1785 +1573 blockdaemon_lido 0xb26f9666... Titan Relay
14136477 2 3285 1713 +1572 blockdaemon 0xb26f9666... Titan Relay
14131654 5 3339 1767 +1572 blockdaemon 0xb26f9666... Titan Relay
14133839 8 3393 1821 +1572 whale_0x8ebd 0x857b0038... Ultra Sound
14136307 9 3411 1839 +1572 blockdaemon 0x88857150... Ultra Sound
14132785 0 3248 1677 +1571 blockdaemon_lido 0x88857150... Ultra Sound
14135988 1 3266 1695 +1571 blockdaemon 0x8527d16c... Ultra Sound
14136543 2 3281 1713 +1568 blockdaemon 0x856b0004... BloXroute Max Profit
14132369 9 3405 1839 +1566 nethermind_lido 0x8c852572... Aestus
14136722 1 3259 1695 +1564 whale_0xc541 0x850b00e0... Ultra Sound
14134866 5 3328 1767 +1561 solo_stakers 0xb67eaa5e... BloXroute Max Profit
14131571 0 3233 1677 +1556 blockdaemon_lido 0x850b00e0... Ultra Sound
14136251 8 3375 1821 +1554 blockdaemon 0xb67eaa5e... BloXroute Max Profit
14135658 8 3374 1821 +1553 whale_0xdc8d 0xb67eaa5e... BloXroute Regulated
14134179 4 3300 1749 +1551 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14131319 0 3227 1677 +1550 p2porg 0x851b00b1... Ultra Sound
14136666 1 3245 1695 +1550 revolut 0x88a53ec4... BloXroute Regulated
14134694 7 3351 1803 +1548 blockdaemon_lido 0xb26f9666... Titan Relay
14134229 8 3367 1821 +1546 0xb26f9666... Titan Relay
14130626 3 3275 1731 +1544 whale_0x8ebd 0x85fb0503... Ultra Sound
14136932 0 3218 1677 +1541 blockdaemon 0x88857150... Ultra Sound
14135484 0 3217 1677 +1540 whale_0x4b5e 0xb67eaa5e... Titan Relay
14133503 1 3234 1695 +1539 revolut 0xb67eaa5e... BloXroute Max Profit
14133934 15 3486 1947 +1539 p2porg 0x857b0038... BloXroute Regulated
14132174 5 3301 1767 +1534 0xb26f9666... Titan Relay
14135390 0 3208 1677 +1531 blockdaemon_lido 0xb26f9666... Titan Relay
14133570 5 3296 1767 +1529 blockdaemon_lido 0x8527d16c... Ultra Sound
14133691 6 3305 1785 +1520 blockdaemon_lido 0x850b00e0... Ultra Sound
14133481 1 3212 1695 +1517 revolut 0xb26f9666... Titan Relay
14130228 0 3193 1677 +1516 whale_0x8914 0xb67eaa5e... Aestus
14135355 7 3319 1803 +1516 blockdaemon 0xb26f9666... Titan Relay
14135893 0 3188 1677 +1511 revolut 0x99cba505... BloXroute Max Profit
14130010 0 3185 1677 +1508 revolut 0x853b0078... Ultra Sound
14136903 4 3257 1749 +1508 p2porg 0x850b00e0... BloXroute Max Profit
14131191 1 3200 1695 +1505 solo_stakers Local Local
14135329 1 3200 1695 +1505 whale_0x8ebd 0x9129eeb4... Agnostic Gnosis
14132169 6 3290 1785 +1505 coinbase 0x88a53ec4... BloXroute Max Profit
14130966 1 3199 1695 +1504 revolut 0xb26f9666... Titan Relay
14133192 5 3271 1767 +1504 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14135375 1 3198 1695 +1503 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14136133 9 3342 1839 +1503 revolut 0x856b0004... Ultra Sound
14134285 1 3197 1695 +1502 blockdaemon 0x850b00e0... BloXroute Max Profit
14133881 1 3194 1695 +1499 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14136780 0 3175 1677 +1498 blockdaemon 0x853b0078... BloXroute Max Profit
14136889 2 3211 1713 +1498 blockdaemon 0x8527d16c... Ultra Sound
14136887 1 3191 1695 +1496 gateway.fmas_lido 0xb26f9666... Titan Relay
14132721 8 3316 1821 +1495 whale_0xdc8d 0x8527d16c... Ultra Sound
14133706 8 3316 1821 +1495 blockdaemon 0xb26f9666... Titan Relay
14136935 0 3171 1677 +1494 0xb67eaa5e... Aestus
14132900 5 3260 1767 +1493 blockdaemon_lido 0x8527d16c... Ultra Sound
14134299 2 3204 1713 +1491 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14133779 5 3257 1767 +1490 whale_0x8ebd 0x857b0038... Ultra Sound
14134679 8 3309 1821 +1488 blockdaemon 0xb26f9666... Titan Relay
14136066 0 3163 1677 +1486 gateway.fmas_lido 0x851b00b1... BloXroute Max Profit
14130215 0 3162 1677 +1485 whale_0x8ebd 0xb26f9666... Titan Relay
14131783 0 3160 1677 +1483 solo_stakers 0x88a53ec4... BloXroute Regulated
14136119 6 3266 1785 +1481 whale_0x8914 0xb67eaa5e... Titan Relay
14135594 6 3266 1785 +1481 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14134070 0 3157 1677 +1480 whale_0x4b5e 0xb67eaa5e... Titan Relay
14132523 1 3175 1695 +1480 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
14136773 6 3265 1785 +1480 whale_0x8914 0xb67eaa5e... Titan Relay
14136919 5 3246 1767 +1479 kiln 0x88857150... Ultra Sound
14134848 0 3155 1677 +1478 stakefish 0x8db2a99d... BloXroute Max Profit
14130417 6 3263 1785 +1478 0xb67eaa5e... BloXroute Max Profit
14134820 0 3154 1677 +1477 whale_0x4b5e 0xb67eaa5e... Titan Relay
14130499 0 3153 1677 +1476 bitstamp 0x88a53ec4... BloXroute Regulated
14135583 8 3297 1821 +1476 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
14132203 0 3151 1677 +1474 blockdaemon 0xb26f9666... Titan Relay
14130865 0 3150 1677 +1473 whale_0x8914 0x856b0004... Agnostic Gnosis
14133513 1 3168 1695 +1473 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14134519 0 3149 1677 +1472 gateway.fmas_lido 0x88a53ec4... BloXroute Regulated
14133307 2 3185 1713 +1472 gateway.fmas_lido 0x88857150... Ultra Sound
14132808 0 3145 1677 +1468 p2porg 0x850b00e0... BloXroute Regulated
14133303 0 3144 1677 +1467 whale_0x8914 0x851b00b1... Ultra Sound
14131232 5 3234 1767 +1467 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14132042 0 3143 1677 +1466 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14135424 1 3160 1695 +1465 p2porg 0x853b0078... Aestus
14134909 4 3214 1749 +1465 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14132445 7 3268 1803 +1465 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14136968 0 3141 1677 +1464 kiln 0x857b0038... BloXroute Max Profit
14137073 5 3231 1767 +1464 gateway.fmas_lido 0x88a53ec4... BloXroute Regulated
14133039 1 3158 1695 +1463 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14136871 1 3157 1695 +1462 gateway.fmas_lido 0x8527d16c... Ultra Sound
14130037 0 3136 1677 +1459 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14132531 2 3172 1713 +1459 revolut 0xb26f9666... Titan Relay
14135560 8 3280 1821 +1459 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14135700 1 3152 1695 +1457 p2porg 0xb26f9666... Titan Relay
14133795 3 3188 1731 +1457 whale_0xedc6 0x850b00e0... BloXroute Max Profit
14134382 4 3205 1749 +1456 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14134759 0 3130 1677 +1453 gateway.fmas_lido 0xba003e46... Flashbots
14132555 0 3130 1677 +1453 gateway.fmas_lido 0x823e0146... BloXroute Max Profit
14131375 11 3328 1875 +1453 blockdaemon 0xb67eaa5e... BloXroute Regulated
14136565 1 3146 1695 +1451 p2porg 0xb26f9666... Titan Relay
14136553 2 3164 1713 +1451 p2porg 0x823e0146... Flashbots
14136944 4 3200 1749 +1451 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
14133940 0 3127 1677 +1450 gateway.fmas_lido 0x8527d16c... Ultra Sound
14133001 0 3127 1677 +1450 gateway.fmas_lido 0xa965c911... Ultra Sound
14130281 1 3145 1695 +1450 gateway.fmas_lido 0xac23f8cc... Ultra Sound
14132401 3 3181 1731 +1450 whale_0x8ebd Local Local
14133952 6 3234 1785 +1449 whale_0x3878 0xb67eaa5e... Titan Relay
14130565 7 3251 1803 +1448 ether.fi 0x857b0038... BloXroute Max Profit
14131242 1 3142 1695 +1447 0x850b00e0... BloXroute Regulated
14132337 6 3232 1785 +1447 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14130718 0 3123 1677 +1446 whale_0x8914 0x8527d16c... Ultra Sound
14135530 0 3122 1677 +1445 gateway.fmas_lido 0x823e0146... BloXroute Max Profit
14135099 1 3140 1695 +1445 gateway.fmas_lido 0x856b0004... Ultra Sound
14133911 8 3263 1821 +1442 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14134065 18 3443 2001 +1442 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14131302 6 3224 1785 +1439 revolut 0xb26f9666... Titan Relay
14136804 6 3224 1785 +1439 revolut 0xb26f9666... Titan Relay
14134237 10 3296 1857 +1439 revolut 0x856b0004... Ultra Sound
14131445 11 3314 1875 +1439 p2porg 0xb7c5e609... BloXroute Regulated
14131481 7 3239 1803 +1436 blockdaemon_lido 0xb26f9666... Titan Relay
14134330 6 3220 1785 +1435 coinbase 0x88a53ec4... BloXroute Max Profit
14135356 3 3165 1731 +1434 gateway.fmas_lido 0xac23f8cc... BloXroute Max Profit
14130559 5 3200 1767 +1433 figment 0xb26f9666... Titan Relay
14134074 5 3199 1767 +1432 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14131970 0 3107 1677 +1430 coinbase 0xb26f9666... Titan Relay
14136916 1 3125 1695 +1430 figment 0xb26f9666... Titan Relay
14132767 5 3195 1767 +1428 whale_0x8914 0xb67eaa5e... Aestus
14135785 0 3104 1677 +1427 whale_0x8ebd 0x8527d16c... Ultra Sound
14133311 6 3212 1785 +1427 whale_0x8ebd 0x8a850621... Titan Relay
14130153 0 3103 1677 +1426 gateway.fmas_lido 0x88857150... Ultra Sound
14136053 0 3101 1677 +1424 stader 0xb26f9666... Titan Relay
14135282 7 3227 1803 +1424 blockdaemon 0xb67eaa5e... BloXroute Max Profit
14130815 8 3245 1821 +1424 whale_0x8ebd 0xb4ce6162... Ultra Sound
14131902 2 3134 1713 +1421 coinbase 0xb67eaa5e... BloXroute Regulated
14135183 8 3242 1821 +1421 gateway.fmas_lido 0x853b0078... Ultra Sound
14131994 0 3097 1677 +1420 whale_0x8ebd 0x8db2a99d... Ultra Sound
14136027 1 3115 1695 +1420 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14132614 0 3095 1677 +1418 whale_0xfd67 0x88857150... Ultra Sound
14130475 1 3111 1695 +1416 p2porg 0x850b00e0... BloXroute Max Profit
14135552 0 3092 1677 +1415 whale_0x8ebd 0x8527d16c... Ultra Sound
14135033 6 3199 1785 +1414 p2porg 0xb26f9666... Titan Relay
14133347 1 3107 1695 +1412 whale_0x8ebd 0x82c466b9... Titan Relay
14136807 1 3106 1695 +1411 blockdaemon_lido 0x9129eeb4... Ultra Sound
14132876 2 3124 1713 +1411 blockdaemon 0x8527d16c... Ultra Sound
14131087 6 3195 1785 +1410 whale_0x8914 0x88a53ec4... Aestus
14134375 0 3086 1677 +1409 whale_0xedc6 0x823e0146... BloXroute Max Profit
14134754 0 3085 1677 +1408 whale_0x8ebd 0xb26f9666... Titan Relay
14135589 2 3121 1713 +1408 blockdaemon_lido 0x853b0078... BloXroute Max Profit
14134747 5 3175 1767 +1408 kiln 0x88a53ec4... BloXroute Max Profit
14133228 0 3084 1677 +1407 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14131551 1 3102 1695 +1407 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
14134223 2 3120 1713 +1407 p2porg 0x88a53ec4... BloXroute Max Profit
14133023 6 3191 1785 +1406 whale_0x8ebd 0x88857150... Ultra Sound
14131779 2 3118 1713 +1405 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14132501 1 3099 1695 +1404 p2porg 0xb67eaa5e... BloXroute Regulated
14135547 3 3132 1731 +1401 coinbase 0xb26f9666... Titan Relay
14135351 12 3294 1893 +1401 blockdaemon 0x8527d16c... Ultra Sound
14136463 0 3076 1677 +1399 0x851b00b1... BloXroute Max Profit
14134703 1 3094 1695 +1399 0xb67eaa5e... BloXroute Regulated
14134501 4 3146 1749 +1397 kiln 0xb67eaa5e... BloXroute Regulated
14133890 5 3161 1767 +1394 blockdaemon 0xb67eaa5e... BloXroute Regulated
14133392 0 3070 1677 +1393 p2porg 0x857b0038... BloXroute Regulated
14130518 0 3070 1677 +1393 kiln 0x88a53ec4... BloXroute Regulated
14133217 6 3177 1785 +1392 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14132218 7 3195 1803 +1392 whale_0xedc6 0x856b0004... Ultra Sound
14135716 6 3175 1785 +1390 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14131544 8 3211 1821 +1390 coinbase 0x88a53ec4... BloXroute Regulated
14135245 1 3084 1695 +1389 whale_0x8ebd 0x88857150... Ultra Sound
14130705 2 3102 1713 +1389 p2porg 0xb67eaa5e... BloXroute Max Profit
14132499 14 3318 1929 +1389 p2porg 0x850b00e0... BloXroute Regulated
14131157 1 3081 1695 +1386 whale_0x8ebd 0xb26f9666... Titan Relay
14130290 4 3135 1749 +1386 whale_0xc611 0x88857150... Ultra Sound
14135828 7 3189 1803 +1386 gateway.fmas_lido 0x856b0004... BloXroute Max Profit
14132993 0 3062 1677 +1385 figment 0x850b00e0... BloXroute Max Profit
14132357 0 3062 1677 +1385 coinbase 0xb26f9666... Titan Relay
14133802 0 3061 1677 +1384 p2porg 0x850b00e0... BloXroute Regulated
14134620 0 3060 1677 +1383 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14130686 0 3060 1677 +1383 whale_0x8914 0x88a53ec4... BloXroute Max Profit
14136733 1 3077 1695 +1382 whale_0x8ebd 0x853b0078... Ultra Sound
14132408 1 3077 1695 +1382 p2porg 0x88a53ec4... BloXroute Regulated
14130922 0 3054 1677 +1377 p2porg 0x857b0038... BloXroute Regulated
14134719 0 3054 1677 +1377 coinbase 0xb26f9666... Titan Relay
14132289 6 3162 1785 +1377 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14132979 2 3089 1713 +1376 coinbase 0x8527d16c... Ultra Sound
14135682 3 3107 1731 +1376 p2porg 0xb26f9666... Aestus
14135944 0 3052 1677 +1375 kiln 0x8527d16c... Ultra Sound
14131996 2 3088 1713 +1375 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14131251 0 3051 1677 +1374 kiln 0x851b00b1... Flashbots
14134779 6 3159 1785 +1374 p2porg 0x850b00e0... BloXroute Regulated
14133483 0 3050 1677 +1373 whale_0x8ebd 0xb26f9666... Aestus
14136964 0 3050 1677 +1373 p2porg 0x851b00b1... BloXroute Max Profit
14132278 2 3086 1713 +1373 p2porg 0xb7c5e609... BloXroute Regulated
14136179 0 3049 1677 +1372 coinbase 0x9129eeb4... Agnostic Gnosis
14134696 5 3139 1767 +1372 0x8527d16c... Ultra Sound
14131969 5 3138 1767 +1371 p2porg 0x850b00e0... Ultra Sound
14136061 1 3065 1695 +1370 whale_0x8ebd 0x8527d16c... Ultra Sound
14135781 2 3083 1713 +1370 p2porg 0x82c466b9... Titan Relay
14136681 0 3046 1677 +1369 whale_0xc611 0xb67eaa5e... BloXroute Regulated
14130013 1 3064 1695 +1369 whale_0xfd67 0x88a53ec4... BloXroute Max Profit
14135894 0 3045 1677 +1368 p2porg 0x8db2a99d... BloXroute Max Profit
14135485 5 3135 1767 +1368 p2porg 0xb67eaa5e... BloXroute Max Profit
14134380 0 3044 1677 +1367 kiln 0xb67eaa5e... BloXroute Max Profit
14131913 0 3043 1677 +1366 figment 0xb26f9666... BloXroute Max Profit
14130052 0 3043 1677 +1366 whale_0x8ebd 0xb26f9666... Titan Relay
14130621 2 3079 1713 +1366 p2porg 0x856b0004... Agnostic Gnosis
14136184 2 3079 1713 +1366 abyss_finance 0x8db2a99d... Ultra Sound
14131153 0 3042 1677 +1365 p2porg 0x805e28e6... Flashbots
14133135 0 3042 1677 +1365 whale_0x8ebd 0x99cba505... BloXroute Max Profit
14133268 1 3060 1695 +1365 p2porg 0x853b0078... Agnostic Gnosis
14136095 0 3041 1677 +1364 p2porg 0x99cba505... BloXroute Max Profit
14133324 5 3131 1767 +1364 kiln 0xb67eaa5e... BloXroute Regulated
14130702 0 3039 1677 +1362 coinbase 0xb26f9666... Aestus
14136811 0 3038 1677 +1361 coinbase 0xb67eaa5e... BloXroute Regulated
14134573 5 3128 1767 +1361 0xb26f9666... Titan Relay
14132978 6 3146 1785 +1361 p2porg 0x856b0004... Ultra Sound
14133642 1 3055 1695 +1360 kiln 0xb7c5e609... BloXroute Max Profit
14134295 0 3036 1677 +1359 whale_0x8ebd 0x857b0038... BloXroute Max Profit
14132032 0 3036 1677 +1359 coinbase 0x82c466b9... Titan Relay
14133730 15 3306 1947 +1359 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14136816 0 3035 1677 +1358 whale_0xfd67 0xb67eaa5e... BloXroute Regulated
14135657 0 3035 1677 +1358 p2porg 0xb67eaa5e... BloXroute Regulated
14134398 0 3034 1677 +1357 coinbase 0xb67eaa5e... BloXroute Regulated
14132541 1 3052 1695 +1357 nethermind_lido 0x853b0078... Agnostic Gnosis
14130752 1 3052 1695 +1357 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14137002 3 3088 1731 +1357 figment 0x856b0004... Ultra Sound
14136626 0 3033 1677 +1356 p2porg 0x856b0004... Ultra Sound
14134706 1 3051 1695 +1356 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14136107 1 3051 1695 +1356 p2porg 0x82c466b9... Ultra Sound
14135934 5 3123 1767 +1356 whale_0x8ebd 0x850b00e0... Flashbots
14135506 5 3123 1767 +1356 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14136835 0 3032 1677 +1355 0x823e0146... Ultra Sound
14137170 0 3032 1677 +1355 coinbase 0x8527d16c... Ultra Sound
14133984 0 3032 1677 +1355 ether.fi 0xb67eaa5e... BloXroute Regulated
14133103 1 3050 1695 +1355 kiln 0xb73d7672... Flashbots
14136406 1 3050 1695 +1355 p2porg 0x853b0078... Agnostic Gnosis
14130722 0 3031 1677 +1354 p2porg 0x8db2a99d... Ultra Sound
14133872 0 3030 1677 +1353 coinbase 0xb26f9666... BloXroute Regulated
14134792 1 3048 1695 +1353 coinbase 0x823e0146... Ultra Sound
14130693 5 3120 1767 +1353 whale_0xf273 0x85fb0503... Ultra Sound
14136039 6 3138 1785 +1353 kiln 0x8db2a99d... Flashbots
14130489 2 3065 1713 +1352 kiln 0xb26f9666... BloXroute Max Profit
14133815 5 3118 1767 +1351 whale_0x8ebd 0x88857150... Ultra Sound
14131998 0 3026 1677 +1349 coinbase 0xb67eaa5e... BloXroute Regulated
14132530 5 3116 1767 +1349 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14130972 1 3043 1695 +1348 p2porg 0x85fb0503... Aestus
14132931 6 3133 1785 +1348 coinbase 0xb26f9666... Titan Relay
14135381 7 3151 1803 +1348 whale_0x8ebd 0xb26f9666... Titan Relay
14133827 5 3114 1767 +1347 coinbase 0xb26f9666... BloXroute Regulated
14130424 0 3023 1677 +1346 whale_0xfd67 0xb67eaa5e... BloXroute Regulated
14131241 9 3185 1839 +1346 whale_0x8ebd 0xb26f9666... Titan Relay
14133552 8 3166 1821 +1345 whale_0x8ebd 0xb26f9666... Titan Relay
14133635 5 3111 1767 +1344 p2porg 0x856b0004... Ultra Sound
14137196 7 3147 1803 +1344 coinbase 0x8527d16c... Ultra Sound
14130001 0 3020 1677 +1343 whale_0xfd67 0x88a53ec4... BloXroute Regulated
14131218 0 3020 1677 +1343 coinbase 0xb26f9666... BloXroute Regulated
14136674 5 3110 1767 +1343 coinbase 0x8527d16c... Ultra Sound
14137137 6 3128 1785 +1343 0xb26f9666... Aestus
14134198 6 3128 1785 +1343 p2porg 0xb26f9666... Titan Relay
14130354 0 3019 1677 +1342 p2porg 0x85fb0503... Aestus
14133070 1 3037 1695 +1342 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14134748 1 3037 1695 +1342 p2porg 0x8527d16c... Ultra Sound
14133908 14 3271 1929 +1342 whale_0x8914 0x88a53ec4... BloXroute Max Profit
14133597 0 3018 1677 +1341 whale_0x8ebd 0xb26f9666... Titan Relay
14133765 3 3072 1731 +1341 kiln 0x8527d16c... Ultra Sound
14136037 2 3053 1713 +1340 p2porg 0xb4ce6162... Ultra Sound
14134880 6 3125 1785 +1340 coinbase 0x853b0078... Ultra Sound
14134120 8 3160 1821 +1339 coinbase 0x88a53ec4... BloXroute Regulated
14136129 1 3033 1695 +1338 coinbase 0x856b0004... Agnostic Gnosis
14136837 1 3033 1695 +1338 coinbase 0x88a53ec4... BloXroute Max Profit
14135640 0 3014 1677 +1337 p2porg 0x823e0146... Ultra Sound
14133334 1 3032 1695 +1337 coinbase 0x853b0078... BloXroute Max Profit
14134995 1 3031 1695 +1336 coinbase 0xb26f9666... BloXroute Max Profit
14133271 0 3012 1677 +1335 coinbase 0x88857150... Ultra Sound
14133416 5 3098 1767 +1331 whale_0x8914 0xb67eaa5e... BloXroute Regulated
14136500 6 3116 1785 +1331 0x856b0004... BloXroute Max Profit
14136047 8 3152 1821 +1331 kiln 0xac23f8cc... Flashbots
14135065 12 3224 1893 +1331 whale_0x8ebd 0x8527d16c... Ultra Sound
14132948 0 3007 1677 +1330 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14132505 3 3061 1731 +1330 kiln 0xb26f9666... BloXroute Max Profit
14130440 5 3097 1767 +1330 coinbase 0x8527d16c... Ultra Sound
14130468 8 3151 1821 +1330 ether.fi 0x8527d16c... EthGas
14136687 3 3060 1731 +1329 kiln 0xb26f9666... Titan Relay
14132580 1 3022 1695 +1327 whale_0x8ebd 0xb26f9666... Titan Relay
14135002 9 3166 1839 +1327 whale_0x8914 0xb67eaa5e... BloXroute Regulated
14136372 0 3003 1677 +1326 whale_0x8ebd 0x857b0038... BloXroute Max Profit
14131338 0 3002 1677 +1325 coinbase 0x85fb0503... Aestus
14130906 0 3000 1677 +1323 everstake 0xb26f9666... Titan Relay
14135251 0 3000 1677 +1323 coinbase 0x88a53ec4... BloXroute Regulated
14133698 5 3090 1767 +1323 kiln 0xb67eaa5e... BloXroute Regulated
14130726 0 2998 1677 +1321 coinbase 0x9129eeb4... Agnostic Gnosis
14135258 0 2998 1677 +1321 coinbase 0x850b00e0... BloXroute Max Profit
14131117 0 2998 1677 +1321 coinbase 0x8527d16c... Ultra Sound
14134723 8 3142 1821 +1321 p2porg 0xb26f9666... Titan Relay
14135344 1 3015 1695 +1320 coinbase 0xb26f9666... Titan Relay
14132141 0 2995 1677 +1318 coinbase 0x88510a78... Titan Relay
14132687 0 2994 1677 +1317 whale_0x8ebd Local Local
14132016 0 2994 1677 +1317 coinbase 0x88a53ec4... BloXroute Max Profit
14136472 6 3099 1785 +1314 whale_0x8ebd 0x88857150... Ultra Sound
14134189 0 2989 1677 +1312 kiln 0xb67eaa5e... BloXroute Max Profit
14130374 0 2989 1677 +1312 coinbase 0x88a53ec4... BloXroute Max Profit
14132533 0 2989 1677 +1312 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14132831 0 2988 1677 +1311 coinbase 0x8db2a99d... Ultra Sound
14134334 5 3077 1767 +1310 coinbase 0xb26f9666... BloXroute Max Profit
14135250 8 3129 1821 +1308 whale_0x8ebd Local Local
14131856 0 2983 1677 +1306 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14135100 4 3055 1749 +1306 blockdaemon 0xb4ce6162... Ultra Sound
14131912 5 3073 1767 +1306 p2porg 0xb26f9666... BloXroute Max Profit
14135769 2 3017 1713 +1304 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14134210 0 2980 1677 +1303 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14135916 0 2980 1677 +1303 kiln 0x8527d16c... Ultra Sound
14131828 0 2978 1677 +1301 0x9129eeb4... Ultra Sound
14134546 5 3068 1767 +1301 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14130494 5 3068 1767 +1301 kiln 0x85fb0503... Aestus
14133999 1 2995 1695 +1300 kiln 0x856b0004... Ultra Sound
14134630 5 3067 1767 +1300 kiln 0xb26f9666... BloXroute Regulated
14136912 0 2976 1677 +1299 coinbase 0x88857150... Ultra Sound
14135454 0 2976 1677 +1299 coinbase 0x99cba505... BloXroute Max Profit
14132837 0 2974 1677 +1297 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14133151 13 3207 1911 +1296 coinbase 0xb26f9666... BloXroute Regulated
14133676 0 2970 1677 +1293 kiln 0x8527d16c... Ultra Sound
14132835 2 3006 1713 +1293 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14131710 5 3060 1767 +1293 everstake 0xb67eaa5e... BloXroute Max Profit
14132951 6 3078 1785 +1293 kiln 0xb26f9666... BloXroute Max Profit
14132299 7 3096 1803 +1293 coinbase 0xb26f9666... Titan Relay
14134771 6 3076 1785 +1291 coinbase 0x856b0004... Ultra Sound
14134972 6 3075 1785 +1290 solo_stakers 0xb4ce6162... Ultra Sound
14130950 2 3002 1713 +1289 kiln 0x88510a78... Titan Relay
14130986 11 3164 1875 +1289 p2porg 0xb67eaa5e... BloXroute Max Profit
14133525 8 3108 1821 +1287 solo_stakers 0xac23f8cc... BloXroute Max Profit
14133377 6 3071 1785 +1286 kiln 0xb26f9666... Titan Relay
14133196 1 2980 1695 +1285 0xb67eaa5e... BloXroute Regulated
14133160 0 2961 1677 +1284 whale_0x8ebd 0x99cba505... Flashbots
14135985 1 2978 1695 +1283 kiln 0xb26f9666... Aestus
14133204 1 2978 1695 +1283 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14134625 9 3122 1839 +1283 coinbase 0x8527d16c... Ultra Sound
14131671 2 2995 1713 +1282 kiln 0xb26f9666... Aestus
14133497 1 2975 1695 +1280 everstake 0xb26f9666... Titan Relay
14135378 2 2993 1713 +1280 kiln 0x856b0004... Agnostic Gnosis
14134763 7 3083 1803 +1280 everstake 0x88a53ec4... BloXroute Regulated
14133445 5 3045 1767 +1278 coinbase 0xb26f9666... Titan Relay
14131562 9 3117 1839 +1278 coinbase 0xb26f9666... Titan Relay
14134417 0 2953 1677 +1276 everstake 0xb26f9666... Titan Relay
14131575 1 2971 1695 +1276 kiln 0xb26f9666... Aestus
14135460 3 3007 1731 +1276 stader 0x856b0004... Agnostic Gnosis
14130326 16 3240 1965 +1275 whale_0x4b5e 0x85fb0503... Ultra Sound
14130483 1 2969 1695 +1274 coinbase 0x856b0004... BloXroute Max Profit
14135297 1 2968 1695 +1273 everstake 0x856b0004... Aestus
14130866 5 3040 1767 +1273 kiln 0xb67eaa5e... Aestus
14130156 0 2948 1677 +1271 everstake 0xb26f9666... Titan Relay
14137143 1 2966 1695 +1271 coinbase 0xb26f9666... BloXroute Max Profit
14136725 0 2947 1677 +1270 kiln 0x850b00e0... BloXroute Max Profit
14134540 1 2963 1695 +1268 kiln 0xb7c5e609... BloXroute Max Profit
14136891 5 3035 1767 +1268 kiln 0xb67eaa5e... BloXroute Max Profit
14133206 5 3035 1767 +1268 kiln 0xb26f9666... BloXroute Max Profit
14134566 8 3089 1821 +1268 coinbase 0xb26f9666... Titan Relay
14137172 7 3070 1803 +1267 kiln 0xb67eaa5e... BloXroute Regulated
14131522 1 2961 1695 +1266 everstake 0x856b0004... Ultra Sound
14133123 7 3069 1803 +1266 everstake 0xb26f9666... Titan Relay
14130385 0 2939 1677 +1262 everstake 0xb26f9666... Titan Relay
14130923 0 2938 1677 +1261 kiln 0x853b0078... Agnostic Gnosis
14131349 8 3081 1821 +1260 coinbase 0x8527d16c... Ultra Sound
14133388 1 2953 1695 +1258 everstake 0xb67eaa5e... BloXroute Regulated
14136813 8 3078 1821 +1257 whale_0x8ebd 0x8527d16c... Ultra Sound
14130113 0 2932 1677 +1255 coinbase Local Local
14131729 3 2986 1731 +1255 kiln 0x853b0078... Ultra Sound
14131968 0 2930 1677 +1253 everstake 0xb26f9666... Titan Relay
14131811 1 2948 1695 +1253 kiln 0xb26f9666... BloXroute Regulated
14134234 5 3020 1767 +1253 ether.fi 0xb67eaa5e... BloXroute Max Profit
14131923 7 3056 1803 +1253 kraken 0x8527d16c... EthGas
14132200 16 3218 1965 +1253 0x88a53ec4... BloXroute Regulated
14131781 2 2965 1713 +1252 everstake 0x88a53ec4... BloXroute Regulated
14136597 4 3001 1749 +1252 coinbase 0x853b0078... BloXroute Max Profit
14136868 11 3127 1875 +1252 coinbase 0x856b0004... Ultra Sound
14135534 0 2928 1677 +1251 stader 0x853b0078... Agnostic Gnosis
14133699 1 2946 1695 +1251 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14135346 0 2926 1677 +1249 kiln 0x8527d16c... Ultra Sound
14135924 6 3034 1785 +1249 kiln 0x856b0004... BloXroute Max Profit
14131916 0 2925 1677 +1248 kiln 0x856b0004... Ultra Sound
14134182 5 3015 1767 +1248 coinbase 0xb26f9666... Aestus
14135478 0 2924 1677 +1247 kiln 0xb67eaa5e... BloXroute Regulated
14135103 1 2942 1695 +1247 coinbase Local Local
14134675 11 3122 1875 +1247 coinbase 0xb26f9666... Titan Relay
14130393 7 3049 1803 +1246 coinbase 0xb26f9666... Titan Relay
14133191 0 2922 1677 +1245 kiln 0x853b0078... Ultra Sound
14134653 0 2922 1677 +1245 everstake 0xb26f9666... Titan Relay
14134595 1 2939 1695 +1244 0xb67eaa5e... BloXroute Regulated
14132130 5 3011 1767 +1244 kiln Local Local
14135545 8 3065 1821 +1244 coinbase 0x823e0146... Flashbots
14136178 9 3083 1839 +1244 coinbase 0x8527d16c... Ultra Sound
14131007 0 2920 1677 +1243 everstake 0xb67eaa5e... BloXroute Max Profit
14134937 1 2938 1695 +1243 everstake 0xb67eaa5e... BloXroute Max Profit
14133149 2 2954 1713 +1241 everstake 0xb26f9666... Aestus
14134176 11 3116 1875 +1241 everstake 0x850b00e0... BloXroute Max Profit
14134154 0 2917 1677 +1240 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14131657 1 2935 1695 +1240 kiln 0x856b0004... BloXroute Max Profit
14137186 3 2971 1731 +1240 coinbase 0xb26f9666... BloXroute Regulated
14135139 7 3042 1803 +1239 everstake 0x856b0004... Aestus
14132647 0 2915 1677 +1238 whale_0x8ebd 0x99cba505... Flashbots
14132893 0 2915 1677 +1238 coinbase 0xb26f9666... BloXroute Regulated
14130194 5 3005 1767 +1238 kiln 0x85fb0503... Aestus
14131538 0 2914 1677 +1237 everstake 0xb26f9666... Titan Relay
14134336 1 2932 1695 +1237 everstake 0xb26f9666... Titan Relay
14133105 1 2932 1695 +1237 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14136823 0 2913 1677 +1236 nethermind_lido 0xb26f9666... Aestus
14137022 0 2913 1677 +1236 whale_0x8ebd Local Local
14133218 0 2913 1677 +1236 coinbase 0x853b0078... BloXroute Max Profit
14132851 7 3039 1803 +1236 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14135222 17 3219 1983 +1236 everstake 0xb67eaa5e... BloXroute Max Profit
14136073 0 2912 1677 +1235 kiln 0x99cba505... Flashbots
14133115 0 2912 1677 +1235 everstake 0x850b00e0... BloXroute Max Profit
14132106 0 2912 1677 +1235 kiln 0x88a53ec4... BloXroute Regulated
14132037 1 2930 1695 +1235 everstake 0xb67eaa5e... BloXroute Regulated
14131496 5 3002 1767 +1235 kiln 0x850b00e0... Ultra Sound
14131579 0 2911 1677 +1234 everstake 0xb26f9666... Titan Relay
14136533 0 2911 1677 +1234 nethermind_lido 0x856b0004... Aestus
14134786 3 2965 1731 +1234 nethermind_lido 0x88857150... Ultra Sound
14133212 4 2983 1749 +1234 kiln 0xb26f9666... BloXroute Regulated
14137059 1 2928 1695 +1233 everstake 0xb26f9666... Titan Relay
14136983 0 2909 1677 +1232 coinbase Local Local
14136378 1 2926 1695 +1231 kiln 0x856b0004... BloXroute Max Profit
14130842 2 2943 1713 +1230 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14130046 5 2997 1767 +1230 coinbase 0x8db2a99d... Aestus
14131507 1 2924 1695 +1229 solo_stakers 0x853b0078... Ultra Sound
14130246 0 2905 1677 +1228 everstake 0x85fb0503... Aestus
14130054 7 3031 1803 +1228 kiln 0x850b00e0... BloXroute Max Profit
14135574 8 3049 1821 +1228 coinbase 0x8527d16c... Ultra Sound
14130530 0 2904 1677 +1227 everstake 0x9129eeb4... Agnostic Gnosis
14136330 0 2904 1677 +1227 nethermind_lido 0x8db2a99d... Aestus
14132786 0 2904 1677 +1227 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14133106 1 2922 1695 +1227 everstake 0x853b0078... Aestus
14136408 1 2922 1695 +1227 coinbase 0x856b0004... BloXroute Max Profit
14131588 0 2903 1677 +1226 everstake 0xb26f9666... Titan Relay
14130514 0 2902 1677 +1225 whale_0x8ebd 0x853b0078... BloXroute Max Profit
14133693 2 2937 1713 +1224 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14135620 1 2918 1695 +1223 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14137116 0 2899 1677 +1222 coinbase 0xb26f9666... BloXroute Max Profit
14130488 0 2898 1677 +1221 kiln 0x823e0146... Flashbots
14132532 4 2970 1749 +1221 kiln 0xb26f9666... BloXroute Regulated
14131861 9 3060 1839 +1221 bitstamp 0xb67eaa5e... BloXroute Regulated
14130493 0 2897 1677 +1220 everstake 0x856b0004... BloXroute Max Profit
14130913 0 2896 1677 +1219 kraken 0x8527d16c... EthGas
14133355 1 2913 1695 +1218 coinbase Local Local
14131652 1 2913 1695 +1218 kiln 0xb26f9666... BloXroute Regulated
14137096 4 2967 1749 +1218 coinbase 0xb26f9666... BloXroute Regulated
14130982 2 2930 1713 +1217 everstake 0x88857150... Ultra Sound
14133877 0 2893 1677 +1216 kiln Local Local
14132330 0 2893 1677 +1216 kiln 0xb26f9666... BloXroute Max Profit
14130498 5 2983 1767 +1216 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14132495 0 2892 1677 +1215 coinbase 0xb26f9666... BloXroute Regulated
14130515 0 2892 1677 +1215 kiln 0xb26f9666... BloXroute Max Profit
14136740 0 2892 1677 +1215 everstake 0x9129eeb4... Agnostic Gnosis
14134979 7 3018 1803 +1215 kiln 0xb26f9666... Titan Relay
Total anomalies: 527

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