Wed, Apr 22, 2026

Propagation anomalies - 2026-04-22

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-22' AND slot_start_date_time < '2026-04-22'::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-22' AND slot_start_date_time < '2026-04-22'::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-22' AND slot_start_date_time < '2026-04-22'::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-22' AND slot_start_date_time < '2026-04-22'::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-22' AND slot_start_date_time < '2026-04-22'::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-22' AND slot_start_date_time < '2026-04-22'::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-22' AND slot_start_date_time < '2026-04-22'::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-22' AND slot_start_date_time < '2026-04-22'::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,182
MEV blocks: 6,871 (95.7%)
Local blocks: 311 (4.3%)

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 = 1656.5 + 21.54 × blob_count (R² = 0.015)
Residual σ = 588.7ms
Anomalies (>2σ slow): 497 (6.9%)
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
14167551 6 10233 1786 +8447 csm_operator524_lido Local Local
14167552 0 6840 1656 +5184 rocketpool Local Local
14171776 0 6179 1656 +4523 upbit Local Local
14172032 0 6006 1656 +4350 upbit Local Local
14172192 0 5930 1656 +4274 upbit Local Local
14172128 0 5414 1656 +3758 upbit Local Local
14169219 0 4886 1656 +3230 whale_0xba8f Local Local
14169376 0 4569 1656 +2913 upbit Local Local
14172832 0 4452 1656 +2796 liquid_collective Local Local
14166432 0 4328 1656 +2672 blockdaemon_lido Local Local
14170583 0 4327 1656 +2671 ether.fi Local Local
14167665 0 4006 1656 +2350 abyss_finance Local Local
14172786 6 3945 1786 +2159 whale_0xdc8d 0x857b0038... BloXroute Max Profit
14167296 0 3765 1656 +2109 blockdaemon Local Local
14172129 0 3671 1656 +2015 solo_stakers Local Local
14171777 0 3584 1656 +1928 abyss_finance Local Local
14170912 3 3639 1721 +1918 coinbase 0x88a53ec4... BloXroute Max Profit
14167256 0 3570 1656 +1914 ether.fi 0xb26f9666... Titan Relay
14169184 1 3576 1678 +1898 blockdaemon 0x857b0038... BloXroute Max Profit
14169984 9 3746 1850 +1896 revolut 0x88a53ec4... BloXroute Regulated
14167353 3 3605 1721 +1884 whale_0xdc8d 0x857b0038... BloXroute Max Profit
14168864 6 3664 1786 +1878 0x88a53ec4... BloXroute Regulated
14168667 2 3541 1700 +1841 blockdaemon_lido 0xb26f9666... Titan Relay
14172244 1 3498 1678 +1820 whale_0xdc8d 0x853b0078... BloXroute Regulated
14172423 1 3465 1678 +1787 blockdaemon 0x857b0038... BloXroute Max Profit
14169805 13 3710 1936 +1774 blockdaemon 0x857b0038... BloXroute Regulated
14169786 10 3630 1872 +1758 blockdaemon 0x856b0004... Ultra Sound
14169640 0 3414 1656 +1758 blockdaemon 0x853b0078... Ultra Sound
14169746 5 3521 1764 +1757 blockdaemon 0x850b00e0... BloXroute Max Profit
14166383 2 3456 1700 +1756 blockdaemon_lido 0x88857150... Ultra Sound
14169724 1 3433 1678 +1755 blockdaemon_lido 0x8527d16c... Ultra Sound
14169632 0 3408 1656 +1752 p2porg 0xb67eaa5e... Aestus
14167053 4 3476 1743 +1733 blockdaemon 0x850b00e0... Ultra Sound
14167563 4 3464 1743 +1721 blockdaemon 0xb67eaa5e... Ultra Sound
14169406 11 3613 1893 +1720 blockdaemon_lido 0x88857150... Ultra Sound
14169636 1 3381 1678 +1703 blockdaemon_lido 0xb26f9666... Titan Relay
14168063 1 3380 1678 +1702 blockdaemon 0x850b00e0... Ultra Sound
14169419 1 3376 1678 +1698 blockdaemon 0x8a850621... Titan Relay
14168450 6 3474 1786 +1688 whale_0x8914 0xb67eaa5e... Aestus
14169291 1 3343 1678 +1665 blockdaemon 0xb4ce6162... Ultra Sound
14171471 6 3450 1786 +1664 nethermind_lido 0xb26f9666... BloXroute Max Profit
14172895 1 3325 1678 +1647 kiln 0xb67eaa5e... BloXroute Regulated
14166282 0 3302 1656 +1646 revolut 0xb67eaa5e... BloXroute Regulated
14168680 0 3302 1656 +1646 upbit 0x851b00b1... Ultra Sound
14166704 5 3399 1764 +1635 blockdaemon_lido 0x856b0004... Ultra Sound
14171608 3 3355 1721 +1634 blockdaemon 0x857b0038... Ultra Sound
14170761 7 3441 1807 +1634 blockdaemon 0x88a53ec4... BloXroute Regulated
14172426 9 3482 1850 +1632 blockdaemon_lido 0x88857150... Ultra Sound
14167483 0 3286 1656 +1630 p2porg 0xb67eaa5e... BloXroute Regulated
14170713 7 3434 1807 +1627 ether.fi 0x856b0004... Ultra Sound
14171660 0 3283 1656 +1627 blockdaemon_lido 0x88857150... Ultra Sound
14168929 5 3390 1764 +1626 blockdaemon 0x850b00e0... BloXroute Max Profit
14170552 4 3366 1743 +1623 luno 0x88a53ec4... BloXroute Regulated
14169658 5 3387 1764 +1623 blockdaemon 0xb26f9666... Titan Relay
14168842 2 3320 1700 +1620 blockdaemon 0x853b0078... BloXroute Max Profit
14167434 1 3292 1678 +1614 blockdaemon_lido 0x8527d16c... Ultra Sound
14172630 0 3267 1656 +1611 blockdaemon_lido 0x8527d16c... Ultra Sound
14168378 0 3259 1656 +1603 ether.fi 0x850b00e0... BloXroute Max Profit
14168995 1 3280 1678 +1602 revolut 0x853b0078... Ultra Sound
14166983 0 3257 1656 +1601 revolut 0xb26f9666... Titan Relay
14172752 0 3257 1656 +1601 solo_stakers 0xb4ce6162... Ultra Sound
14172970 2 3300 1700 +1600 0xb67eaa5e... BloXroute Regulated
14170069 3 3321 1721 +1600 revolut 0xb67eaa5e... BloXroute Max Profit
14168078 6 3384 1786 +1598 blockdaemon_lido 0xb7c5e609... BloXroute Max Profit
14167233 10 3468 1872 +1596 ether.fi 0x850b00e0... BloXroute Max Profit
14173082 1 3273 1678 +1595 whale_0xc611 0x850b00e0... Ultra Sound
14171165 3 3316 1721 +1595 luno 0x856b0004... Ultra Sound
14170767 4 3335 1743 +1592 blockdaemon_lido 0x850b00e0... Ultra Sound
14169316 1 3267 1678 +1589 revolut 0xb26f9666... Titan Relay
14170888 1 3266 1678 +1588 whale_0xfd67 0xb67eaa5e... Aestus
14168555 3 3306 1721 +1585 0x850b00e0... BloXroute Regulated
14170186 1 3262 1678 +1584 blockdaemon_lido 0x853b0078... Ultra Sound
14171447 7 3391 1807 +1584 nethermind_lido 0x856b0004... BloXroute Max Profit
14171463 6 3366 1786 +1580 blockdaemon 0x8527d16c... Ultra Sound
14172135 6 3360 1786 +1574 blockdaemon 0x8a850621... Titan Relay
14167946 2 3272 1700 +1572 blockdaemon 0xb26f9666... Titan Relay
14169866 6 3352 1786 +1566 revolut 0xb26f9666... Titan Relay
14166218 5 3326 1764 +1562 blockdaemon 0xb26f9666... Titan Relay
14167366 5 3323 1764 +1559 luno 0x856b0004... Ultra Sound
14169449 5 3322 1764 +1558 blockdaemon_lido 0x88857150... Ultra Sound
14169265 10 3429 1872 +1557 blockdaemon 0x857b0038... Ultra Sound
14171128 10 3429 1872 +1557 blockdaemon_lido 0x850b00e0... Ultra Sound
14172574 0 3211 1656 +1555 everstake 0x857b0038... BloXroute Max Profit
14166372 6 3339 1786 +1553 blockdaemon 0xb26f9666... Titan Relay
14166281 2 3251 1700 +1551 revolut 0xb67eaa5e... BloXroute Regulated
14168811 8 3375 1829 +1546 blockdaemon_lido 0x853b0078... Ultra Sound
14168255 3 3267 1721 +1546 revolut 0xb26f9666... Titan Relay
14170969 5 3309 1764 +1545 blockdaemon_lido 0x850b00e0... Ultra Sound
14170674 1 3219 1678 +1541 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
14166304 5 3305 1764 +1541 p2porg 0x850b00e0... Ultra Sound
14170793 7 3343 1807 +1536 blockdaemon 0x8a850621... Titan Relay
14167676 0 3191 1656 +1535 revolut 0xb26f9666... Titan Relay
14168897 5 3298 1764 +1534 whale_0xdc8d 0x88857150... Ultra Sound
14172254 2 3232 1700 +1532 p2porg 0x857b0038... BloXroute Regulated
14166976 5 3293 1764 +1529 p2porg 0xb7c5beef... BloXroute Max Profit
14169614 3 3248 1721 +1527 revolut 0xb26f9666... Titan Relay
14171134 1 3204 1678 +1526 gateway.fmas_lido 0x856b0004... Ultra Sound
14166564 0 3180 1656 +1524 blockdaemon 0x850b00e0... BloXroute Max Profit
14170082 0 3172 1656 +1516 0x850b00e0... Ultra Sound
14172753 1 3191 1678 +1513 p2porg 0xb26f9666... Titan Relay
14168992 0 3164 1656 +1508 p2porg 0x853b0078... Titan Relay
14168336 0 3162 1656 +1506 revolut 0xb26f9666... Titan Relay
14172986 5 3268 1764 +1504 whale_0x8914 0xb67eaa5e... Titan Relay
14172544 3 3224 1721 +1503 p2porg 0xb26f9666... BloXroute Max Profit
14173104 10 3372 1872 +1500 blockdaemon_lido 0x853b0078... BloXroute Max Profit
14172398 9 3349 1850 +1499 blockdaemon_lido 0x8527d16c... Ultra Sound
14172076 5 3260 1764 +1496 blockdaemon_lido 0xb26f9666... Titan Relay
14173005 1 3171 1678 +1493 whale_0x8914 0xb67eaa5e... Titan Relay
14172262 13 3424 1936 +1488 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14167975 3 3207 1721 +1486 revolut 0x853b0078... Ultra Sound
14171044 0 3142 1656 +1486 whale_0xfd67 0x805e28e6... Ultra Sound
14170276 9 3335 1850 +1485 blockdaemon 0x88857150... Ultra Sound
14166631 0 3140 1656 +1484 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14167453 0 3137 1656 +1481 whale_0xfd67 0x851b00b1... Ultra Sound
14172598 6 3266 1786 +1480 0xb26f9666... Titan Relay
14167395 9 3330 1850 +1480 luno 0x8527d16c... Ultra Sound
14170271 3 3200 1721 +1479 whale_0x8ebd 0x857b0038... Ultra Sound
14168685 0 3135 1656 +1479 coinbase 0x851b00b1... Ultra Sound
14172516 6 3260 1786 +1474 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14172834 6 3258 1786 +1472 whale_0xfd67 0x850b00e0... Ultra Sound
14169243 5 3236 1764 +1472 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14166481 0 3128 1656 +1472 whale_0x8914 0x82c466b9... Flashbots
14166871 9 3321 1850 +1471 whale_0xdc8d 0x8527d16c... Ultra Sound
14169896 0 3126 1656 +1470 upbit 0x88857150... Ultra Sound
14168447 0 3126 1656 +1470 whale_0x4b5e 0xb67eaa5e... Titan Relay
14173119 1 3147 1678 +1469 0xb67eaa5e... BloXroute Regulated
14168254 5 3230 1764 +1466 whale_0xfd67 0x850b00e0... Ultra Sound
14171300 10 3335 1872 +1463 blockdaemon 0x8a850621... Titan Relay
14172219 1 3140 1678 +1462 whale_0x8ebd 0x856b0004... Ultra Sound
14166364 0 3118 1656 +1462 blockdaemon 0x8db2a99d... BloXroute Max Profit
14171540 1 3138 1678 +1460 whale_0x8ebd 0xb26f9666... Titan Relay
14169568 5 3224 1764 +1460 p2porg 0x850b00e0... Flashbots
14170763 0 3115 1656 +1459 p2porg 0x805e28e6... Flashbots
14171156 1 3136 1678 +1458 p2porg 0xb67eaa5e... BloXroute Max Profit
14169752 9 3308 1850 +1458 blockdaemon_lido 0xb26f9666... Titan Relay
14172749 0 3111 1656 +1455 figment 0xb26f9666... BloXroute Max Profit
14168794 1 3131 1678 +1453 kiln 0x856b0004... Ultra Sound
14172211 0 3105 1656 +1449 figment 0x850b00e0... BloXroute Max Profit
14171833 9 3297 1850 +1447 revolut 0xb26f9666... Titan Relay
14168505 7 3246 1807 +1439 whale_0x6ddb 0xb67eaa5e... Titan Relay
14168955 2 3137 1700 +1437 whale_0xfd67 0xb67eaa5e... BloXroute Regulated
14169929 1 3115 1678 +1437 whale_0x8ebd 0xb26f9666... Titan Relay
14169909 0 3089 1656 +1433 upbit 0x88a53ec4... BloXroute Regulated
14167402 0 3082 1656 +1426 p2porg 0xb26f9666... Titan Relay
14171726 3 3145 1721 +1424 whale_0x8ebd 0xb26f9666... Titan Relay
14168030 3 3145 1721 +1424 whale_0x3878 0x850b00e0... Ultra Sound
14168919 9 3274 1850 +1424 blockdaemon_lido 0xb26f9666... Titan Relay
14170484 2 3123 1700 +1423 0x853b0078... Titan Relay
14172143 0 3079 1656 +1423 everstake 0xb26f9666... Titan Relay
14171564 0 3077 1656 +1421 kiln 0x853b0078... Ultra Sound
14172552 0 3075 1656 +1419 p2porg 0x8db2a99d... Flashbots
14172906 1 3096 1678 +1418 coinbase 0xb67eaa5e... BloXroute Max Profit
14169154 1 3096 1678 +1418 kiln 0x88a53ec4... BloXroute Regulated
14169477 1 3095 1678 +1417 figment 0xb67eaa5e... Ultra Sound
14169020 0 3073 1656 +1417 figment 0xb26f9666... Titan Relay
14168158 5 3180 1764 +1416 p2porg 0x850b00e0... BloXroute Regulated
14170428 4 3158 1743 +1415 whale_0xfd67 0x82c466b9... Ultra Sound
14171391 1 3092 1678 +1414 solo_stakers 0xb67eaa5e... BloXroute Max Profit
14171772 1 3091 1678 +1413 coinbase 0x823e0146... BloXroute Max Profit
14172083 11 3306 1893 +1413 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14171734 0 3069 1656 +1413 coinbase 0x88857150... Ultra Sound
14168565 3 3132 1721 +1411 kiln 0xb67eaa5e... BloXroute Max Profit
14167536 13 3347 1936 +1411 kiln 0x88a53ec4... BloXroute Max Profit
14172628 0 3067 1656 +1411 p2porg 0x88a53ec4... BloXroute Max Profit
14172974 0 3066 1656 +1410 figment 0xb26f9666... BloXroute Max Profit
14170986 1 3087 1678 +1409 p2porg 0x91b123d8... Titan Relay
14169027 7 3216 1807 +1409 p2porg 0x850b00e0... BloXroute Regulated
14172564 0 3065 1656 +1409 p2porg 0x99cba505... Flashbots
14170398 1 3085 1678 +1407 p2porg 0x853b0078... Titan Relay
14171891 0 3063 1656 +1407 whale_0x8ebd 0x856b0004... Ultra Sound
14167216 0 3062 1656 +1406 p2porg 0x850b00e0... BloXroute Regulated
14170126 3 3126 1721 +1405 whale_0x4b5e 0x88a53ec4... BloXroute Max Profit
14171706 0 3061 1656 +1405 p2porg 0xb26f9666... Titan Relay
14166987 4 3147 1743 +1404 whale_0x8914 0x850b00e0... Ultra Sound
14172987 1 3080 1678 +1402 p2porg 0x853b0078... BloXroute Max Profit
14168156 2 3101 1700 +1401 blockdaemon 0x853b0078... Ultra Sound
14168867 5 3165 1764 +1401 p2porg 0x8527d16c... Ultra Sound
14168229 0 3057 1656 +1401 p2porg 0x853b0078... Flashbots
14172770 5 3164 1764 +1400 solo_stakers 0x850b00e0... Aestus
14166479 11 3293 1893 +1400 blockdaemon 0x8527d16c... Ultra Sound
14173124 3 3120 1721 +1399 coinbase 0xb67eaa5e... BloXroute Max Profit
14172108 6 3183 1786 +1397 whale_0x8914 0xb67eaa5e... Titan Relay
14168499 1 3075 1678 +1397 coinbase 0xb67eaa5e... BloXroute Regulated
14172107 0 3053 1656 +1397 abyss_finance 0xb26f9666... BloXroute Regulated
14172304 0 3052 1656 +1396 whale_0x8ebd 0x851b00b1... BloXroute Max Profit
14171709 9 3245 1850 +1395 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14171448 0 3051 1656 +1395 p2porg 0xb26f9666... BloXroute Regulated
14169344 0 3051 1656 +1395 whale_0xfd67 0xb67eaa5e... BloXroute Max Profit
14172841 0 3049 1656 +1393 p2porg 0xb26f9666... Titan Relay
14168150 4 3135 1743 +1392 blockdaemon 0x853b0078... Ultra Sound
14168261 0 3046 1656 +1390 solo_stakers 0x857b0038... Titan Relay
14172489 1 3066 1678 +1388 coinbase 0xb67eaa5e... BloXroute Regulated
14166334 0 3043 1656 +1387 coinbase 0x853b0078... Ultra Sound
14172960 6 3172 1786 +1386 whale_0xc611 0x85fb0503... Ultra Sound
14166271 0 3041 1656 +1385 whale_0x8914 0x88a53ec4... BloXroute Max Profit
14171404 3 3105 1721 +1384 coinbase 0xb26f9666... Titan Relay
14167336 0 3039 1656 +1383 p2porg 0x8527d16c... Ultra Sound
14171766 0 3038 1656 +1382 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
14167098 0 3038 1656 +1382 everstake 0xb26f9666... Titan Relay
14170342 0 3035 1656 +1379 p2porg 0x823e0146... Ultra Sound
14169147 6 3163 1786 +1377 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14172359 3 3097 1721 +1376 kiln 0xb67eaa5e... BloXroute Regulated
14170234 7 3182 1807 +1375 blockdaemon 0xb26f9666... Titan Relay
14170012 5 3135 1764 +1371 whale_0x8914 0x88a53ec4... BloXroute Max Profit
14170333 1 3048 1678 +1370 p2porg 0xb26f9666... BloXroute Max Profit
14172851 1 3048 1678 +1370 kiln 0x8527d16c... Ultra Sound
14172537 6 3154 1786 +1368 whale_0x8914 0x88a53ec4... BloXroute Max Profit
14166752 0 3024 1656 +1368 everstake 0xb26f9666... Titan Relay
14168391 1 3045 1678 +1367 whale_0x8ebd 0x853b0078... BloXroute Max Profit
14172326 2 3066 1700 +1366 coinbase 0x823e0146... Ultra Sound
14171321 1 3044 1678 +1366 p2porg 0x850b00e0... BloXroute Max Profit
14172000 2 3063 1700 +1363 coinbase 0x8527d16c... Ultra Sound
14169179 0 3019 1656 +1363 coinbase 0x88a53ec4... BloXroute Max Profit
14166693 7 3169 1807 +1362 whale_0x6ddb 0x88a53ec4... BloXroute Regulated
14172966 0 3018 1656 +1362 kiln 0x8db2a99d... Flashbots
14171094 8 3190 1829 +1361 whale_0xfd67 0xb67eaa5e... Titan Relay
14167588 0 3017 1656 +1361 kiln 0xb26f9666... Titan Relay
14167752 1 3038 1678 +1360 kiln 0xb67eaa5e... BloXroute Max Profit
14168178 5 3124 1764 +1360 0x856b0004... Ultra Sound
14168942 0 3016 1656 +1360 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14167389 2 3059 1700 +1359 p2porg 0x853b0078... Ultra Sound
14170152 6 3145 1786 +1359 p2porg 0xb67eaa5e... BloXroute Max Profit
14171342 2 3058 1700 +1358 0x853b0078... Ultra Sound
14171710 1 3036 1678 +1358 whale_0x8ebd 0x823e0146... Ultra Sound
14166477 8 3186 1829 +1357 gateway.fmas_lido 0x853b0078... BloXroute Max Profit
14168354 7 3164 1807 +1357 p2porg 0xb26f9666... Titan Relay
14170957 0 3013 1656 +1357 p2porg 0xb26f9666... BloXroute Max Profit
14170116 3 3075 1721 +1354 0x856b0004... Ultra Sound
14169240 4 3095 1743 +1352 p2porg 0x853b0078... Ultra Sound
14166291 1 3030 1678 +1352 kiln 0xb67eaa5e... BloXroute Regulated
14169172 3 3073 1721 +1352 kiln 0x88a53ec4... BloXroute Regulated
14172957 9 3200 1850 +1350 coinbase 0xb67eaa5e... BloXroute Regulated
14170250 6 3135 1786 +1349 p2porg 0x853b0078... Titan Relay
14169855 8 3178 1829 +1349 kiln 0x856b0004... Ultra Sound
14168908 5 3113 1764 +1349 whale_0x4b5e 0xb7c5e609... Titan Relay
14172276 0 3005 1656 +1349 coinbase 0x8db2a99d... Ultra Sound
14170864 4 3090 1743 +1347 coinbase 0x856b0004... Ultra Sound
14172088 0 3001 1656 +1345 whale_0x8ebd 0x856b0004... Ultra Sound
14172265 0 3000 1656 +1344 kiln 0x851b00b1... BloXroute Max Profit
14168045 1 3021 1678 +1343 p2porg 0xb26f9666... BloXroute Max Profit
14170197 13 3278 1936 +1342 kiln 0xb67eaa5e... BloXroute Max Profit
14171806 1 3019 1678 +1341 p2porg 0x8db2a99d... BloXroute Max Profit
14170607 1 3018 1678 +1340 coinbase 0x853b0078... Ultra Sound
14168914 5 3104 1764 +1340 whale_0x8ebd 0xb26f9666... Titan Relay
14166530 5 3103 1764 +1339 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14171617 2 3038 1700 +1338 whale_0x8ebd 0x853b0078... BloXroute Max Profit
14172654 1 3015 1678 +1337 coinbase 0x856b0004... BloXroute Max Profit
14166330 5 3095 1764 +1331 whale_0x8ebd 0xb26f9666... Titan Relay
14172433 0 2985 1656 +1329 coinbase 0x823e0146... Flashbots
14171796 0 2985 1656 +1329 kiln 0x8527d16c... Ultra Sound
14166657 6 3114 1786 +1328 everstake 0x88a53ec4... BloXroute Max Profit
14171522 5 3091 1764 +1327 whale_0x8ebd 0x8527d16c... Ultra Sound
14172977 0 2982 1656 +1326 0xb67eaa5e... BloXroute Max Profit
14171326 6 3110 1786 +1324 coinbase 0x853b0078... Ultra Sound
14172994 6 3108 1786 +1322 gateway.fmas_lido 0x85fb0503... Ultra Sound
14170675 4 3062 1743 +1319 kiln 0x88a53ec4... BloXroute Max Profit
14171176 6 3103 1786 +1317 p2porg 0xb26f9666... Titan Relay
14171914 4 3058 1743 +1315 whale_0xedc6 0x8db2a99d... Flashbots
14171857 0 2971 1656 +1315 whale_0xedc6 0xb26f9666... BloXroute Max Profit
14173003 3 3035 1721 +1314 0x8527d16c... Ultra Sound
14167252 7 3121 1807 +1314 p2porg 0x850b00e0... Flashbots
14168365 6 3099 1786 +1313 kiln 0x856b0004... Ultra Sound
14171377 6 3098 1786 +1312 kiln 0x8527d16c... Ultra Sound
14166661 7 3119 1807 +1312 p2porg 0x853b0078... Ultra Sound
14171305 8 3140 1829 +1311 everstake 0xb67eaa5e... BloXroute Regulated
14167226 6 3096 1786 +1310 kiln 0x88a53ec4... BloXroute Regulated
14166830 0 2965 1656 +1309 kiln 0xb26f9666... Aestus
14170431 1 2986 1678 +1308 kiln 0x853b0078... Ultra Sound
14170659 1 2985 1678 +1307 everstake 0xb26f9666... Titan Relay
14172678 0 2963 1656 +1307 everstake 0xb26f9666... Titan Relay
14167401 7 3113 1807 +1306 p2porg 0xb26f9666... Titan Relay
14169534 1 2983 1678 +1305 kiln 0x856b0004... BloXroute Max Profit
14172064 0 2961 1656 +1305 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
14172081 2 3002 1700 +1302 kiln 0x88857150... Ultra Sound
14167084 4 3045 1743 +1302 kiln 0x88857150... Ultra Sound
14169055 1 2980 1678 +1302 kiln 0xb58080ea... BloXroute Max Profit
14168155 0 2958 1656 +1302 kiln 0x856b0004... Ultra Sound
14171966 1 2978 1678 +1300 coinbase 0x853b0078... BloXroute Max Profit
14169770 1 2978 1678 +1300 coinbase 0xb26f9666... BloXroute Max Profit
14166115 0 2956 1656 +1300 kiln 0xb26f9666... BloXroute Regulated
14168435 1 2977 1678 +1299 kiln 0x8527d16c... Ultra Sound
14171033 0 2955 1656 +1299 kiln 0x823e0146... Ultra Sound
14171464 9 3148 1850 +1298 p2porg 0x853b0078... BloXroute Max Profit
14170482 0 2954 1656 +1298 kiln 0x8527d16c... Ultra Sound
14167723 0 2954 1656 +1298 kiln 0x856b0004... Ultra Sound
14171396 0 2954 1656 +1298 whale_0xedc6 0xb26f9666... BloXroute Max Profit
14173130 6 3083 1786 +1297 kiln 0x856b0004... Ultra Sound
14171931 6 3083 1786 +1297 0xb26f9666... BloXroute Max Profit
14167560 5 3061 1764 +1297 0xb26f9666... BloXroute Max Profit
14169937 1 2974 1678 +1296 0x856b0004... Ultra Sound
14170913 0 2952 1656 +1296 whale_0x8ebd 0x857b0038... Ultra Sound
14170978 0 2952 1656 +1296 nethermind_lido 0xb26f9666... Aestus
14168731 0 2951 1656 +1295 kiln 0x8527d16c... Ultra Sound
14168887 2 2994 1700 +1294 everstake 0xb26f9666... Titan Relay
14169195 1 2972 1678 +1294 coinbase 0x856b0004... BloXroute Max Profit
14172109 5 3058 1764 +1294 everstake 0x88a53ec4... BloXroute Regulated
14167629 0 2948 1656 +1292 kiln 0x856b0004... Ultra Sound
14169562 2 2991 1700 +1291 everstake 0xb67eaa5e... BloXroute Regulated
14167016 4 3034 1743 +1291 kiln 0x88a53ec4... BloXroute Max Profit
14166181 0 2946 1656 +1290 kiln 0x88857150... Ultra Sound
14168367 2 2989 1700 +1289 coinbase 0x856b0004... BloXroute Max Profit
14170372 1 2967 1678 +1289 kiln 0x8527d16c... Ultra Sound
14167248 4 3031 1743 +1288 everstake 0x88a53ec4... BloXroute Regulated
14171063 6 3074 1786 +1288 p2porg 0xb26f9666... BloXroute Regulated
14171525 8 3115 1829 +1286 kiln 0xb26f9666... Aestus
14169302 1 2964 1678 +1286 everstake 0xb26f9666... Titan Relay
14168327 0 2941 1656 +1285 whale_0x7275 0x853b0078... Ultra Sound
14171995 1 2962 1678 +1284 kiln 0x8527d16c... Ultra Sound
14166998 9 3134 1850 +1284 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14170383 9 3132 1850 +1282 p2porg 0xb26f9666... BloXroute Max Profit
14172493 1 2959 1678 +1281 solo_stakers 0xb67eaa5e... BloXroute Regulated
14172508 0 2937 1656 +1281 coinbase 0xb26f9666... BloXroute Max Profit
14169273 2 2979 1700 +1279 kiln 0x856b0004... BloXroute Max Profit
14169531 5 3043 1764 +1279 0x856b0004... BloXroute Max Profit
14166119 6 3064 1786 +1278 everstake 0xb67eaa5e... BloXroute Regulated
14172348 6 3064 1786 +1278 whale_0x8ebd 0xb26f9666... Aestus
14171639 7 3084 1807 +1277 p2porg 0xb26f9666... BloXroute Max Profit
14172585 7 3084 1807 +1277 whale_0x8ebd 0xb26f9666... Titan Relay
14171504 1 2954 1678 +1276 everstake 0xb26f9666... Aestus
14168797 3 2996 1721 +1275 kiln 0x8527d16c... Ultra Sound
14167439 0 2929 1656 +1273 kiln 0x88a53ec4... BloXroute Regulated
14172404 0 2928 1656 +1272 kiln 0xb67eaa5e... Ultra Sound
14170273 0 2926 1656 +1270 nethermind_lido 0xb26f9666... Aestus
14173029 1 2947 1678 +1269 everstake 0xb67eaa5e... BloXroute Max Profit
14171337 0 2925 1656 +1269 nethermind_lido 0x88857150... Ultra Sound
14169418 1 2946 1678 +1268 0x850b00e0... BloXroute Max Profit
14168194 0 2924 1656 +1268 0xb26f9666... BloXroute Max Profit
14172058 2 2967 1700 +1267 coinbase 0xb26f9666... BloXroute Max Profit
14172247 0 2923 1656 +1267 nethermind_lido 0xb26f9666... Aestus
14169699 1 2944 1678 +1266 stader 0xb26f9666... Titan Relay
14168856 0 2922 1656 +1266 kiln 0x88a53ec4... BloXroute Max Profit
14171427 2 2965 1700 +1265 everstake 0xb26f9666... Titan Relay
14166821 1 2942 1678 +1264 everstake 0xb67eaa5e... BloXroute Regulated
14166430 5 3028 1764 +1264 coinbase 0xb26f9666... BloXroute Regulated
14171452 1 2941 1678 +1263 coinbase 0xb26f9666... BloXroute Max Profit
14166588 11 3156 1893 +1263 coinbase 0x853b0078... Ultra Sound
14166729 9 3112 1850 +1262 solo_stakers 0xb67eaa5e... BloXroute Max Profit
14168891 1 2939 1678 +1261 kiln 0x8527d16c... Ultra Sound
14168421 0 2917 1656 +1261 everstake 0x805e28e6... Ultra Sound
14167641 12 3175 1915 +1260 kiln 0xb67eaa5e... BloXroute Max Profit
14167028 0 2916 1656 +1260 everstake 0xb67eaa5e... BloXroute Max Profit
14170662 5 3023 1764 +1259 kiln 0x88a53ec4... BloXroute Regulated
14172860 0 2914 1656 +1258 everstake 0xb26f9666... Titan Relay
14172160 0 2914 1656 +1258 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14166314 4 3000 1743 +1257 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14173180 6 3043 1786 +1257 coinbase 0xb67eaa5e... BloXroute Max Profit
14171904 0 2913 1656 +1257 coinbase 0xb26f9666... BloXroute Max Profit
14166118 0 2910 1656 +1254 kiln 0x9129eeb4... Agnostic Gnosis
14167170 0 2910 1656 +1254 kiln 0x805e28e6... BloXroute Max Profit
14166487 4 2996 1743 +1253 everstake 0xb67eaa5e... BloXroute Regulated
14172050 0 2909 1656 +1253 coinbase 0xb26f9666... BloXroute Max Profit
14169674 2 2952 1700 +1252 coinbase 0xb26f9666... BloXroute Max Profit
14167671 6 3037 1786 +1251 solo_stakers 0xb67eaa5e... BloXroute Regulated
14167422 0 2907 1656 +1251 everstake 0xb26f9666... Titan Relay
14171743 10 3121 1872 +1249 whale_0x8ebd 0x856b0004... Ultra Sound
14172236 3 2970 1721 +1249 coinbase 0x856b0004... BloXroute Max Profit
14168904 0 2905 1656 +1249 everstake 0x853b0078... Ultra Sound
14169130 1 2924 1678 +1246 whale_0x8ebd 0x823e0146... Flashbots
14166205 0 2902 1656 +1246 everstake 0xb26f9666... Titan Relay
14169048 0 2902 1656 +1246 kiln 0xb26f9666... BloXroute Max Profit
14172783 6 3030 1786 +1244 whale_0x8ebd 0x853b0078... BloXroute Max Profit
14171916 5 3008 1764 +1244 everstake 0x8527d16c... Ultra Sound
14172248 3 2964 1721 +1243 bitstamp 0xb67eaa5e... BloXroute Regulated
14172210 5 3004 1764 +1240 coinbase 0xb26f9666... BloXroute Regulated
14167913 0 2895 1656 +1239 everstake 0x8527d16c... Ultra Sound
14170613 0 2895 1656 +1239 whale_0x8ebd 0x851b00b1... Ultra Sound
14166134 3 2959 1721 +1238 everstake 0xb26f9666... Titan Relay
14168128 5 3002 1764 +1238 coinbase 0xb26f9666... BloXroute Max Profit
14171568 7 3045 1807 +1238 coinbase 0xb26f9666... Titan Relay
14170302 0 2894 1656 +1238 everstake 0xb26f9666... Aestus
14166615 1 2915 1678 +1237 kiln 0xb26f9666... BloXroute Max Profit
14169731 0 2893 1656 +1237 kiln 0xb26f9666... BloXroute Max Profit
14169587 0 2893 1656 +1237 kiln 0x853b0078... BloXroute Max Profit
14167514 0 2892 1656 +1236 kiln 0xb26f9666... BloXroute Max Profit
14166263 3 2956 1721 +1235 solo_stakers 0xb26f9666... BloXroute Regulated
14169695 5 2999 1764 +1235 everstake 0x88a53ec4... BloXroute Max Profit
14172300 9 3085 1850 +1235 ether.fi 0xb67eaa5e... BloXroute Max Profit
14166415 1 2912 1678 +1234 everstake 0xb26f9666... Titan Relay
14172791 6 3019 1786 +1233 coinbase 0xb26f9666... BloXroute Regulated
14172148 0 2889 1656 +1233 kiln 0x8527d16c... Ultra Sound
14168611 5 2996 1764 +1232 kiln 0x853b0078... BloXroute Max Profit
14169142 11 3125 1893 +1232 p2porg 0x8527d16c... Ultra Sound
14168188 0 2888 1656 +1232 kiln 0x8527d16c... Ultra Sound
14169119 6 3017 1786 +1231 gateway.fmas_lido 0x88a53ec4... BloXroute Regulated
14172183 9 3081 1850 +1231 kiln 0x85fb0503... Aestus
14169812 0 2887 1656 +1231 everstake 0x853b0078... Ultra Sound
14168413 8 3059 1829 +1230 everstake 0x850b00e0... BloXroute Max Profit
14169648 1 2908 1678 +1230 whale_0x8ebd 0xb4ce6162... Ultra Sound
14167756 0 2886 1656 +1230 everstake 0xb26f9666... Titan Relay
14167748 2 2929 1700 +1229 everstake 0xb26f9666... Titan Relay
14171723 6 3015 1786 +1229 everstake 0x88a53ec4... BloXroute Max Profit
14167790 0 2885 1656 +1229 everstake 0x853b0078... Ultra Sound
14168284 1 2906 1678 +1228 everstake 0xb26f9666... Titan Relay
14170611 1 2906 1678 +1228 coinbase 0xb4ce6162... Ultra Sound
14171956 2 2927 1700 +1227 nethermind_lido 0x856b0004... BloXroute Max Profit
14171646 1 2904 1678 +1226 everstake 0xb26f9666... Titan Relay
14170873 5 2990 1764 +1226 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14168981 6 3011 1786 +1225 kiln 0x8527d16c... Ultra Sound
14167787 0 2881 1656 +1225 everstake 0xb26f9666... Titan Relay
14171130 8 3053 1829 +1224 kiln 0x856b0004... Ultra Sound
14170000 1 2902 1678 +1224 everstake 0xb26f9666... Titan Relay
14172625 2 2922 1700 +1222 bitstamp 0x88857150... Ultra Sound
14171039 6 3008 1786 +1222 kiln 0xb26f9666... Aestus
14171462 1 2900 1678 +1222 everstake 0xb26f9666... Titan Relay
14169979 5 2986 1764 +1222 everstake 0xb26f9666... Titan Relay
14166180 2 2921 1700 +1221 everstake 0x853b0078... Ultra Sound
14171818 7 3028 1807 +1221 coinbase 0xb26f9666... BloXroute Max Profit
14169491 0 2877 1656 +1221 kiln 0x853b0078... BloXroute Max Profit
14173085 3 2940 1721 +1219 solo_stakers 0x853b0078... Ultra Sound
14173144 1 2896 1678 +1218 kiln 0x85fb0503... Aestus
14171357 0 2873 1656 +1217 everstake 0xb67eaa5e... BloXroute Max Profit
14169117 2 2916 1700 +1216 everstake 0x88a53ec4... BloXroute Max Profit
14167578 4 2959 1743 +1216 kiln Local Local
14170889 6 3002 1786 +1216 kiln 0xb26f9666... BloXroute Regulated
14167458 1 2894 1678 +1216 everstake 0x853b0078... Ultra Sound
14166781 14 3173 1958 +1215 p2porg 0x853b0078... Titan Relay
14166837 3 2936 1721 +1215 kiln 0x85fb0503... Aestus
14168126 0 2871 1656 +1215 everstake 0xb26f9666... Aestus
14172676 5 2978 1764 +1214 kiln 0xb26f9666... Aestus
14170650 1 2891 1678 +1213 everstake 0xb26f9666... Titan Relay
14166145 10 3084 1872 +1212 everstake 0x88a53ec4... BloXroute Regulated
14166881 1 2890 1678 +1212 everstake 0x8db2a99d... BloXroute Max Profit
14168656 3 2933 1721 +1212 everstake 0xb67eaa5e... BloXroute Regulated
14170437 7 3019 1807 +1212 ether.fi 0x88a53ec4... BloXroute Max Profit
14169169 1 2889 1678 +1211 everstake 0xb26f9666... Titan Relay
14171183 1 2889 1678 +1211 kiln 0xb26f9666... BloXroute Regulated
14169615 7 3018 1807 +1211 kiln 0x88857150... Ultra Sound
14170079 0 2867 1656 +1211 everstake 0xb67eaa5e... BloXroute Max Profit
14169579 2 2910 1700 +1210 everstake 0x853b0078... Ultra Sound
14171925 1 2888 1678 +1210 everstake 0x856b0004... BloXroute Max Profit
14169274 3 2931 1721 +1210 everstake 0xb26f9666... Titan Relay
14171751 7 3017 1807 +1210 kiln Local Local
14172175 0 2866 1656 +1210 everstake 0xb26f9666... Titan Relay
14169885 4 2952 1743 +1209 0x853b0078... Ultra Sound
14171502 3 2930 1721 +1209 coinbase 0x853b0078... BloXroute Max Profit
14166491 0 2865 1656 +1209 kiln 0xb26f9666... BloXroute Regulated
14168796 6 2994 1786 +1208 kiln 0x856b0004... Ultra Sound
14170235 0 2864 1656 +1208 everstake 0x853b0078... Ultra Sound
14168838 0 2864 1656 +1208 kiln 0xb26f9666... BloXroute Regulated
14169366 3 2928 1721 +1207 everstake 0xb26f9666... Titan Relay
14167345 5 2971 1764 +1207 kiln 0xb26f9666... BloXroute Max Profit
14170024 0 2863 1656 +1207 ether.fi 0xb67eaa5e... BloXroute Regulated
14171926 6 2991 1786 +1205 kiln 0xb26f9666... BloXroute Max Profit
14171055 1 2883 1678 +1205 everstake 0xb26f9666... Titan Relay
14170502 1 2883 1678 +1205 everstake 0xb26f9666... Titan Relay
14169425 0 2861 1656 +1205 everstake 0x853b0078... BloXroute Max Profit
14167271 1 2882 1678 +1204 everstake 0xb26f9666... Titan Relay
14170356 5 2968 1764 +1204 everstake 0xb67eaa5e... BloXroute Regulated
14170244 5 2968 1764 +1204 nethermind_lido 0xb26f9666... Aestus
14172455 0 2860 1656 +1204 whale_0x405b 0xb67eaa5e... Aestus
14168770 0 2860 1656 +1204 kiln 0xb26f9666... BloXroute Max Profit
14170419 5 2967 1764 +1203 kiln 0xb26f9666... BloXroute Regulated
14169332 0 2858 1656 +1202 everstake 0xb26f9666... Titan Relay
14172022 5 2965 1764 +1201 kiln 0x823e0146... BloXroute Max Profit
14172221 5 2965 1764 +1201 everstake 0xb26f9666... Titan Relay
14168980 4 2943 1743 +1200 nethermind_lido 0xb26f9666... Aestus
14170262 0 2856 1656 +1200 everstake 0xb26f9666... Titan Relay
14168211 3 2920 1721 +1199 everstake 0xb26f9666... Titan Relay
14167586 9 3049 1850 +1199 kiln 0xb26f9666... BloXroute Max Profit
14171336 1 2876 1678 +1198 0x853b0078... BloXroute Max Profit
14167471 2 2897 1700 +1197 kiln 0x853b0078... BloXroute Max Profit
14169585 1 2875 1678 +1197 everstake 0xb26f9666... Titan Relay
14168358 1 2875 1678 +1197 everstake 0xb26f9666... Titan Relay
14168081 1 2875 1678 +1197 everstake 0xb26f9666... Aestus
14169074 0 2853 1656 +1197 kiln 0x853b0078... BloXroute Max Profit
14172632 0 2853 1656 +1197 everstake 0x853b0078... BloXroute Max Profit
14168364 0 2852 1656 +1196 0x853b0078... Ultra Sound
14166296 6 2981 1786 +1195 kiln 0x856b0004... Ultra Sound
14166255 14 3153 1958 +1195 p2porg 0x853b0078... Ultra Sound
14168314 3 2916 1721 +1195 everstake 0x88a53ec4... BloXroute Max Profit
14171548 5 2959 1764 +1195 kiln 0x85fb0503... Aestus
14172857 0 2851 1656 +1195 everstake 0x85fb0503... Aestus
14171343 1 2870 1678 +1192 everstake 0x85fb0503... Aestus
14166638 0 2847 1656 +1191 blockdaemon 0xb4ce6162... Ultra Sound
14171387 0 2847 1656 +1191 solo_stakers 0xb26f9666... BloXroute Max Profit
14169452 0 2845 1656 +1189 kiln 0xb26f9666... BloXroute Max Profit
14172621 6 2974 1786 +1188 coinbase 0xb26f9666... BloXroute Regulated
14171071 1 2866 1678 +1188 bitstamp 0x88a53ec4... BloXroute Regulated
14168994 5 2952 1764 +1188 whale_0x8ebd 0x8a850621... Titan Relay
14168424 0 2844 1656 +1188 ether.fi 0x856b0004... Ultra Sound
14166464 6 2973 1786 +1187 everstake 0x88a53ec4... BloXroute Max Profit
14170561 6 2973 1786 +1187 everstake 0x853b0078... Ultra Sound
14171029 1 2865 1678 +1187 everstake 0x8db2a99d... Flashbots
14171453 0 2843 1656 +1187 kiln Local Local
14170190 2 2886 1700 +1186 coinbase 0xb4ce6162... Ultra Sound
14166508 5 2949 1764 +1185 everstake 0xb26f9666... Titan Relay
14166359 5 2948 1764 +1184 nethermind_lido 0xb26f9666... Aestus
14169848 0 2840 1656 +1184 blockdaemon 0x88857150... Ultra Sound
14168056 2 2882 1700 +1182 everstake 0xb26f9666... Titan Relay
14167574 1 2860 1678 +1182 solo_stakers 0xb26f9666... BloXroute Max Profit
14169745 3 2903 1721 +1182 everstake 0x853b0078... Ultra Sound
14166130 0 2838 1656 +1182 everstake 0x823e0146... Flashbots
14168911 6 2967 1786 +1181 kiln 0x856b0004... BloXroute Max Profit
14168252 2 2880 1700 +1180 kiln 0xb26f9666... BloXroute Max Profit
14167769 5 2944 1764 +1180 everstake 0xb26f9666... Titan Relay
14172266 8 3007 1829 +1178 coinbase 0xb26f9666... BloXroute Regulated
14166442 7 2985 1807 +1178 kiln Local Local
Total anomalies: 497

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