Thu, May 14, 2026

Propagation anomalies - 2026-05-14

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

print(f"Total valid blocks: {len(df):,}")
print(f"MEV blocks: {df['has_mev'].sum():,} ({df['has_mev'].mean()*100:.1f}%)")
print(f"Local blocks: {(~df['has_mev']).sum():,} ({(~df['has_mev']).mean()*100:.1f}%)")
Total valid blocks: 7,184
MEV blocks: 6,540 (91.0%)
Local blocks: 644 (9.0%)

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 = 1694.1 + 17.04 × blob_count (R² = 0.009)
Residual σ = 623.5ms
Anomalies (>2σ slow): 528 (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
14330174 0 11108 1694 +9414 rocketpool Local Local
14331104 0 6851 1694 +5157 upbit Local Local
14329696 0 6676 1694 +4982 upbit Local Local
14330880 0 6218 1694 +4524 upbit Local Local
14325478 0 5178 1694 +3484 whale_0x2f38 Local Local
14326075 0 4066 1694 +2372 rocklogicgmbh_lido Local Local
14328977 0 4040 1694 +2346 whale_0x8ebd Local Local
14326429 0 3994 1694 +2300 solo_stakers Local Local
14330560 0 3661 1694 +1967 blockdaemon_lido 0x8527d16c... Ultra Sound
14329055 12 3787 1899 +1888 revolut 0x850b00e0... BloXroute Regulated
14324968 4 3645 1762 +1883 nethermind_lido 0xa03781b9... Aestus
14330164 5 3646 1779 +1867 whale_0x8ebd 0x823e0146... BloXroute Max Profit
14324800 0 3473 1694 +1779 blockdaemon_lido 0x851b00b1... BloXroute Max Profit
14329728 1 3464 1711 +1753 rocketpool Local Local
14325805 0 3442 1694 +1748 blockdaemon_lido 0x856b0004... Ultra Sound
14326833 1 3457 1711 +1746 nethermind_lido 0x853b0078... BloXroute Max Profit
14326244 0 3433 1694 +1739 blockdaemon 0xb4ce6162... Ultra Sound
14324522 6 3526 1796 +1730 coinbase 0x85fb0503... BloXroute Max Profit
14329118 0 3421 1694 +1727 blockdaemon_lido 0xb67eaa5e... Ultra Sound
14329412 1 3426 1711 +1715 coinbase 0xa965c911... Ultra Sound
14325275 1 3414 1711 +1703 whale_0xdc8d 0x8527d16c... Ultra Sound
14330175 6 3497 1796 +1701 stakefish_lido Local Local
14325087 1 3408 1711 +1697 luno 0xb26f9666... BloXroute Max Profit
14326523 2 3425 1728 +1697 coinbase 0xb67eaa5e... BloXroute Max Profit
14325449 0 3390 1694 +1696 whale_0xdc8d 0x856b0004... Ultra Sound
14330847 6 3487 1796 +1691 blockdaemon 0x88a53ec4... BloXroute Regulated
14326320 5 3466 1779 +1687 blockdaemon 0x857b0038... Ultra Sound
14325761 2 3408 1728 +1680 whale_0xc541 0x88857150... Ultra Sound
14331589 1 3387 1711 +1676 blockdaemon_lido 0x853b0078... BloXroute Regulated
14327151 1 3385 1711 +1674 p2porg_lido 0x88a53ec4... BloXroute Regulated
14326655 9 3520 1847 +1673 blockdaemon 0x8a850621... Titan Relay
14329194 0 3359 1694 +1665 nethermind_lido 0x853b0078... BloXroute Max Profit
14325748 0 3359 1694 +1665 blockdaemon 0xb4ce6162... Ultra Sound
14329018 3 3408 1745 +1663 blockdaemon 0x8a850621... Ultra Sound
14325646 0 3353 1694 +1659 blockdaemon_lido 0xb26f9666... Titan Relay
14329762 0 3345 1694 +1651 blockdaemon 0x83d6a6ab... BloXroute Regulated
14325236 0 3341 1694 +1647 blockdaemon_lido 0xb67eaa5e... Ultra Sound
14326604 0 3338 1694 +1644 blockdaemon 0xb4ce6162... Ultra Sound
14329317 3 3385 1745 +1640 lido 0xb26f9666... Titan Relay
14324894 0 3332 1694 +1638 blockdaemon 0x823e0146... Ultra Sound
14324902 8 3468 1830 +1638 whale_0xdc8d 0xb67eaa5e... Ultra Sound
14326459 0 3329 1694 +1635 blockdaemon 0x88857150... Ultra Sound
14326335 2 3363 1728 +1635 0x856b0004... Ultra Sound
14328751 0 3328 1694 +1634 blockdaemon_lido 0x8527d16c... Ultra Sound
14331236 1 3342 1711 +1631 blockdaemon_lido 0x88a53ec4... BloXroute Regulated
14327234 1 3341 1711 +1630 blockdaemon 0xb67eaa5e... Ultra Sound
14329402 0 3323 1694 +1629 blockdaemon_lido 0x851b00b1... Ultra Sound
14327036 3 3370 1745 +1625 0xb26f9666... Titan Relay
14327842 0 3318 1694 +1624 blockdaemon_lido 0xb67eaa5e... Titan Relay
14329099 0 3317 1694 +1623 blockdaemon_lido 0xb67eaa5e... Ultra Sound
14328425 0 3317 1694 +1623 blockdaemon_lido 0x88857150... Ultra Sound
14329560 2 3345 1728 +1617 blockdaemon 0x8a850621... Titan Relay
14328156 5 3396 1779 +1617 whale_0xdc8d 0x8527d16c... Ultra Sound
14327362 5 3395 1779 +1616 kiln 0x88a53ec4... BloXroute Max Profit
14327937 2 3341 1728 +1613 blockdaemon_lido 0x853b0078... Ultra Sound
14326293 1 3315 1711 +1604 luno 0x856b0004... Ultra Sound
14327323 5 3381 1779 +1602 blockdaemon_lido 0x850b00e0... Ultra Sound
14325817 1 3312 1711 +1601 blockdaemon 0x8527d16c... Ultra Sound
14330943 2 3327 1728 +1599 blockdaemon_lido 0x88857150... Ultra Sound
14326710 0 3290 1694 +1596 blockdaemon_lido 0xb67eaa5e... Ultra Sound
14328447 0 3288 1694 +1594 whale_0xdc8d 0xa965c911... Ultra Sound
14331441 2 3320 1728 +1592 whale_0xfd67 0x853b0078... BloXroute Max Profit
14328098 1 3299 1711 +1588 luno 0x8527d16c... Ultra Sound
14331530 9 3435 1847 +1588 blockdaemon 0x8a850621... Ultra Sound
14330816 1 3298 1711 +1587 p2porg 0x8db2a99d... Agnostic Gnosis
14331336 6 3383 1796 +1587 blockdaemon_lido 0x88857150... Ultra Sound
14330008 0 3278 1694 +1584 blockdaemon_lido 0x851b00b1... Ultra Sound
14326554 0 3278 1694 +1584 revolut 0x853b0078... BloXroute Max Profit
14330423 5 3359 1779 +1580 blockdaemon_lido 0xb67eaa5e... Titan Relay
14327480 3 3324 1745 +1579 luno 0x853b0078... Ultra Sound
14324447 0 3272 1694 +1578 whale_0x8914 0x851b00b1... Ultra Sound
14330044 5 3356 1779 +1577 blockdaemon_lido 0x8527d16c... Ultra Sound
14329301 0 3266 1694 +1572 blockdaemon_lido 0x851b00b1... Ultra Sound
14330700 0 3265 1694 +1571 revolut 0xb26f9666... Titan Relay
14324399 0 3265 1694 +1571 blockdaemon_lido 0x851b00b1... BloXroute Max Profit
14329481 5 3350 1779 +1571 whale_0xdc8d 0xb26f9666... Titan Relay
14325785 12 3465 1899 +1566 infstones_lido 0x85fb0503... BloXroute Regulated
14325746 3 3307 1745 +1562 revolut 0x823e0146... Ultra Sound
14327045 7 3375 1813 +1562 blockdaemon_lido 0x850b00e0... BloXroute Regulated
14327580 5 3337 1779 +1558 blockdaemon_lido 0x853b0078... Ultra Sound
14327049 6 3354 1796 +1558 whale_0x4b5e 0xb67eaa5e... Titan Relay
14330344 6 3354 1796 +1558 kiln 0x88a53ec4... BloXroute Max Profit
14330425 2 3285 1728 +1557 revolut Local Local
14329011 9 3404 1847 +1557 blockdaemon_lido 0xb26f9666... Ultra Sound
14328178 0 3250 1694 +1556 blockdaemon 0x851b00b1... Ultra Sound
14325944 1 3264 1711 +1553 blockdaemon 0xb67eaa5e... Titan Relay
14327087 2 3281 1728 +1553 blockdaemon 0xb67eaa5e... Ultra Sound
14327449 10 3417 1864 +1553 whale_0xdc8d 0x8527d16c... Ultra Sound
14325551 3 3297 1745 +1552 blockdaemon_lido 0xb26f9666... Titan Relay
14328174 0 3245 1694 +1551 p2porg 0x8527d16c... Ultra Sound
14327809 0 3240 1694 +1546 whale_0x9212 Local Local
14324505 6 3341 1796 +1545 whale_0xdc8d 0xac23f8cc... Titan Relay
14328270 12 3443 1899 +1544 blockdaemon_lido 0xb67eaa5e... Titan Relay
14330928 1 3253 1711 +1542 blockdaemon 0x88857150... Ultra Sound
14325978 0 3233 1694 +1539 blockdaemon 0x8a850621... Ultra Sound
14325622 4 3301 1762 +1539 blockdaemon 0xb67eaa5e... Ultra Sound
14328766 10 3403 1864 +1539 blockdaemon 0x8a850621... Titan Relay
14327092 11 3418 1882 +1536 blockdaemon_lido 0xb67eaa5e... Ultra Sound
14324563 1 3246 1711 +1535 blockdaemon 0x8527d16c... Ultra Sound
14328667 2 3263 1728 +1535 whale_0xdc8d 0x8527d16c... Ultra Sound
14325498 5 3313 1779 +1534 whale_0x4b5e 0x88a53ec4... BloXroute Regulated
14325126 0 3227 1694 +1533 blockdaemon_lido 0xb26f9666... Titan Relay
14328357 0 3226 1694 +1532 blockdaemon_lido 0x851b00b1... BloXroute Max Profit
14325314 7 3344 1813 +1531 blockdaemon_lido 0x8527d16c... Ultra Sound
14330056 0 3223 1694 +1529 whale_0x3878 0x851b00b1... Ultra Sound
14329482 2 3257 1728 +1529 figment 0x88a53ec4... BloXroute Max Profit
14330976 5 3308 1779 +1529 p2porg_lido 0x88a53ec4... BloXroute Regulated
14330904 1 3238 1711 +1527 whale_0x8914 0x853b0078... Ultra Sound
14327953 2 3253 1728 +1525 whale_0x8ebd Local Local
14326775 6 3319 1796 +1523 whale_0x3878 0x88857150... Ultra Sound
14326929 0 3216 1694 +1522 blockdaemon_lido 0x851b00b1... BloXroute Max Profit
14331598 2 3249 1728 +1521 gateway.fmas_lido 0x88a53ec4... BloXroute Regulated
14330266 1 3231 1711 +1520 kiln 0x8527d16c... Ultra Sound
14329638 0 3212 1694 +1518 blockdaemon_lido 0x88857150... Ultra Sound
14330057 1 3229 1711 +1518 0x8db2a99d... Ultra Sound
14330852 0 3210 1694 +1516 gateway.fmas_lido 0x88a53ec4... BloXroute Regulated
14327145 2 3244 1728 +1516 blockdaemon 0x8527d16c... Ultra Sound
14330810 0 3206 1694 +1512 whale_0x8914 0x851b00b1... Ultra Sound
14327254 6 3307 1796 +1511 p2porg_lido 0x850b00e0... BloXroute Max Profit
14327551 0 3201 1694 +1507 blockdaemon 0x88a53ec4... BloXroute Regulated
14325981 0 3198 1694 +1504 whale_0xfd67 0x851b00b1... Ultra Sound
14325234 8 3333 1830 +1503 blockdaemon_lido 0xb26f9666... Titan Relay
14329232 5 3280 1779 +1501 blockdaemon_lido 0xb26f9666... Titan Relay
14330931 6 3297 1796 +1501 p2porg_lido 0x88a53ec4... BloXroute Regulated
14326745 0 3194 1694 +1500 blockdaemon_lido 0xb26f9666... Titan Relay
14326562 0 3194 1694 +1500 solo_stakers 0x88510a78... Flashbots
14326678 1 3211 1711 +1500 whale_0xfd67 0xb67eaa5e... Titan Relay
14325453 7 3310 1813 +1497 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
14327098 11 3378 1882 +1496 blockdaemon 0x8527d16c... Ultra Sound
14327855 0 3190 1694 +1496 whale_0xdc8d 0x853b0078... Ultra Sound
14327068 1 3207 1711 +1496 p2porg 0x850b00e0... BloXroute Regulated
14331217 5 3275 1779 +1496 Local Local
14325289 0 3189 1694 +1495 blockdaemon_lido Local Local
14325171 1 3199 1711 +1488 whale_0xfd67 0x88a53ec4... BloXroute Max Profit
14326270 6 3284 1796 +1488 p2porg_lido 0x88a53ec4... BloXroute Regulated
14328075 1 3195 1711 +1484 whale_0xfd67 0xb67eaa5e... Titan Relay
14330067 15 3433 1950 +1483 blockdaemon 0x8a850621... Titan Relay
14327387 6 3279 1796 +1483 0xa230e2cf... BloXroute Max Profit
14329908 0 3176 1694 +1482 whale_0x4b5e 0x851b00b1... Ultra Sound
14325037 3 3226 1745 +1481 p2porg_lido 0xb67eaa5e... BloXroute Regulated
14325408 0 3172 1694 +1478 whale_0x8ebd 0x823e0146... Ultra Sound
14330490 1 3188 1711 +1477 blockdaemon_lido 0x8db2a99d... BloXroute Max Profit
14324926 9 3319 1847 +1472 revolut 0x8527d16c... Ultra Sound
14329522 0 3164 1694 +1470 whale_0xba40 0x851b00b1... Ultra Sound
14325216 0 3164 1694 +1470 p2porg_lido 0x85fb0503... BloXroute Regulated
14329304 5 3249 1779 +1470 blockdaemon_lido 0xb67eaa5e... Ultra Sound
14329824 5 3249 1779 +1470 whale_0xedc6 0x856b0004... Ultra Sound
14328620 7 3283 1813 +1470 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14325812 1 3180 1711 +1469 p2porg_lido 0x88a53ec4... BloXroute Regulated
14327999 1 3179 1711 +1468 whale_0x8ebd Local Local
14330254 1 3177 1711 +1466 blockdaemon 0xb26f9666... Ultra Sound
14328045 1 3176 1711 +1465 blockdaemon_lido 0x856b0004... Ultra Sound
14325057 7 3277 1813 +1464 whale_0xc541 0x85fb0503... Ultra Sound
14326302 0 3154 1694 +1460 p2porg_lido 0xb67eaa5e... BloXroute Regulated
14325953 0 3152 1694 +1458 0x8db2a99d... Agnostic Gnosis
14326521 13 3372 1916 +1456 bitstamp 0x88a53ec4... BloXroute Regulated
14325558 1 3167 1711 +1456 whale_0xfd67 0x85fb0503... BloXroute Max Profit
14331483 7 3266 1813 +1453 p2porg 0x850b00e0... BloXroute Regulated
14325747 1 3163 1711 +1452 whale_0x8ebd 0x85fb0503... BloXroute Max Profit
14325276 6 3248 1796 +1452 whale_0xfd67 0xb67eaa5e... Titan Relay
14326353 1 3162 1711 +1451 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14331249 6 3246 1796 +1450 coinbase 0x8db2a99d... BloXroute Max Profit
14330359 1 3160 1711 +1449 gateway.fmas_lido 0x853b0078... BloXroute Max Profit
14329590 11 3330 1882 +1448 blockdaemon_lido 0x88857150... Ultra Sound
14328609 12 3347 1899 +1448 whale_0xdc8d 0xb26f9666... Titan Relay
14324549 0 3141 1694 +1447 whale_0x4b5e 0xb67eaa5e... Titan Relay
14326960 2 3172 1728 +1444 p2porg_lido 0x88a53ec4... BloXroute Regulated
14329526 0 3137 1694 +1443 blockdaemon 0x8db2a99d... Titan Relay
14327365 1 3149 1711 +1438 blockdaemon_lido 0xb26f9666... Titan Relay
14331039 2 3166 1728 +1438 gateway.fmas_lido 0x853b0078... Agnostic Gnosis
14331123 3 3183 1745 +1438 coinbase 0xb67eaa5e... BloXroute Regulated
14330073 7 3251 1813 +1438 p2porg_lido 0x88a53ec4... BloXroute Regulated
14328302 11 3318 1882 +1436 whale_0xedc6 0x856b0004... BloXroute Max Profit
14329856 5 3213 1779 +1434 whale_0x3878 0x8db2a99d... Titan Relay
14326471 21 3484 2052 +1432 blockdaemon_lido 0x88857150... Ultra Sound
14325809 1 3143 1711 +1432 p2porg_lido 0x88a53ec4... BloXroute Regulated
14325939 1 3143 1711 +1432 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14327985 1 3143 1711 +1432 p2porg_lido 0x88a53ec4... BloXroute Regulated
14326972 3 3177 1745 +1432 kiln 0x8527d16c... Ultra Sound
14330821 1 3142 1711 +1431 p2porg 0x88a53ec4... BloXroute Max Profit
14326118 1 3141 1711 +1430 bitstamp 0x88a53ec4... BloXroute Regulated
14325441 1 3141 1711 +1430 whale_0x8914 0x88a53ec4... BloXroute Regulated
14326248 8 3257 1830 +1427 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14325280 6 3222 1796 +1426 whale_0xc611 0xb67eaa5e... Titan Relay
14331418 0 3119 1694 +1425 p2porg Local Local
14327029 1 3136 1711 +1425 p2porg 0x853b0078... Ultra Sound
14327028 5 3204 1779 +1425 blockdaemon_lido 0x8527d16c... Ultra Sound
14326996 0 3117 1694 +1423 p2porg 0x850b00e0... BloXroute Regulated
14329825 0 3116 1694 +1422 p2porg_lido 0x823e0146... Aestus
14330002 4 3182 1762 +1420 p2porg_lido 0x88a53ec4... BloXroute Regulated
14329276 7 3233 1813 +1420 p2porg 0x850b00e0... BloXroute Regulated
14324520 5 3198 1779 +1419 bitstamp 0xb67eaa5e... BloXroute Regulated
14330408 5 3198 1779 +1419 p2porg_lido 0x88a53ec4... BloXroute Regulated
14329204 10 3282 1864 +1418 0x850b00e0... BloXroute Regulated
14327713 1 3128 1711 +1417 whale_0x23be 0x8db2a99d... BloXroute Regulated
14330881 9 3264 1847 +1417 whale_0x9212 0xa965c911... Ultra Sound
14329423 2 3144 1728 +1416 p2porg_lido 0x88a53ec4... BloXroute Regulated
14329806 6 3210 1796 +1414 whale_0x8ee5 0xb67eaa5e... BloXroute Regulated
14331310 5 3192 1779 +1413 p2porg 0x850b00e0... Flashbots
14331141 2 3140 1728 +1412 gateway.fmas_lido 0xac23f8cc... Flashbots
14328241 4 3174 1762 +1412 whale_0x8914 0xb67eaa5e... BloXroute Regulated
14329942 8 3242 1830 +1412 whale_0x8914 0x88a53ec4... BloXroute Max Profit
14328748 0 3104 1694 +1410 p2porg 0xb67eaa5e... Ultra Sound
14326323 1 3121 1711 +1410 whale_0x8ebd 0x8527d16c... Ultra Sound
14326154 6 3206 1796 +1410 p2porg_lido 0x850b00e0... BloXroute Max Profit
14328023 0 3103 1694 +1409 0x850b00e0... BloXroute Regulated
14327854 1 3119 1711 +1408 figment 0xb26f9666... Titan Relay
14324863 6 3204 1796 +1408 p2porg_lido 0x88a53ec4... BloXroute Regulated
14326223 1 3118 1711 +1407 whale_0xedc6 0x856b0004... BloXroute Max Profit
14327293 3 3152 1745 +1407 p2porg_lido 0x850b00e0... BloXroute Max Profit
14329006 9 3254 1847 +1407 blockdaemon 0x850b00e0... BloXroute Regulated
14329673 1 3117 1711 +1406 p2porg_lido 0x88a53ec4... BloXroute Regulated
14324521 0 3099 1694 +1405 p2porg 0x9129eeb4... Agnostic Gnosis
14325331 5 3184 1779 +1405 blockdaemon_lido 0xb26f9666... Titan Relay
14331521 6 3201 1796 +1405 p2porg_lido 0x88a53ec4... BloXroute Regulated
14325229 1 3115 1711 +1404 whale_0x8ebd 0x8527d16c... Ultra Sound
14327497 0 3096 1694 +1402 whale_0x8ebd 0x88857150... Ultra Sound
14326299 1 3113 1711 +1402 p2porg 0x853b0078... BloXroute Max Profit
14326423 5 3180 1779 +1401 coinbase 0xb26f9666... BloXroute Regulated
14329052 5 3179 1779 +1400 p2porg_lido 0x88a53ec4... BloXroute Regulated
14328590 0 3093 1694 +1399 0xa965c911... Ultra Sound
14330358 1 3110 1711 +1399 p2porg 0xb26f9666... Titan Relay
14331158 6 3193 1796 +1397 whale_0x8ebd 0x8db2a99d... Ultra Sound
14324504 3 3141 1745 +1396 whale_0xfd67 0x85fb0503... BloXroute Max Profit
14325588 1 3106 1711 +1395 p2porg_lido 0x88a53ec4... BloXroute Regulated
14326291 0 3088 1694 +1394 kiln 0xb67eaa5e... Ultra Sound
14329137 0 3088 1694 +1394 p2porg 0x83d6a6ab... Flashbots
14328236 1 3104 1711 +1393 coinbase 0xb26f9666... BloXroute Regulated
14326694 3 3138 1745 +1393 blockdaemon_lido 0xb26f9666... Titan Relay
14325515 6 3189 1796 +1393 whale_0x3878 0x85fb0503... BloXroute Max Profit
14327448 1 3103 1711 +1392 p2porg_lido 0x850b00e0... BloXroute Max Profit
14329714 2 3120 1728 +1392 p2porg_lido 0x88a53ec4... BloXroute Regulated
14325347 2 3120 1728 +1392 coinbase 0x8db2a99d... Ultra Sound
14327611 3 3137 1745 +1392 0xb26f9666... BloXroute Max Profit
14331326 9 3239 1847 +1392 p2porg_lido 0x850b00e0... BloXroute Regulated
14325298 0 3085 1694 +1391 p2porg_lido Local Local
14331290 1 3102 1711 +1391 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14327080 1 3101 1711 +1390 figment 0x8db2a99d... BloXroute Max Profit
14326630 0 3083 1694 +1389 whale_0x8914 0xb67eaa5e... BloXroute Max Profit
14330856 0 3083 1694 +1389 p2porg 0xba003e46... BloXroute Regulated
14331173 6 3185 1796 +1389 kiln 0x88a53ec4... BloXroute Regulated
14325459 5 3167 1779 +1388 p2porg 0x853b0078... BloXroute Regulated
14330538 5 3167 1779 +1388 p2porg_lido 0xb67eaa5e... BloXroute Regulated
14330361 7 3200 1813 +1387 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14325003 1 3097 1711 +1386 coinbase 0x8527d16c... Ultra Sound
14325348 3 3131 1745 +1386 0x8db2a99d... BloXroute Max Profit
14330897 6 3182 1796 +1386 p2porg_lido 0x850b00e0... BloXroute Max Profit
14326013 0 3079 1694 +1385 whale_0x8914 0x88a53ec4... BloXroute Max Profit
14325865 0 3079 1694 +1385 p2porg 0x853b0078... Agnostic Gnosis
14330078 7 3198 1813 +1385 p2porg_lido 0x88a53ec4... BloXroute Regulated
14326448 1 3095 1711 +1384 p2porg_lido 0x823e0146... BloXroute Max Profit
14327978 5 3163 1779 +1384 p2porg 0xb26f9666... Titan Relay
14330028 0 3077 1694 +1383 kiln 0x88a53ec4... BloXroute Max Profit
14330201 5 3162 1779 +1383 whale_0x8914 0xb67eaa5e... Titan Relay
14328828 0 3073 1694 +1379 whale_0x8ebd 0xb67eaa5e... Ultra Sound
14326595 0 3073 1694 +1379 coinbase 0xb26f9666... Titan Relay
14329548 0 3070 1694 +1376 kiln 0x851b00b1... BloXroute Max Profit
14326869 7 3189 1813 +1376 coinbase 0x88a53ec4... BloXroute Max Profit
14324701 6 3171 1796 +1375 p2porg_lido 0xb26f9666... BloXroute Regulated
14324474 1 3085 1711 +1374 p2porg_lido 0x850b00e0... BloXroute Max Profit
14326451 6 3170 1796 +1374 kiln 0x8527d16c... Ultra Sound
14324606 6 3170 1796 +1374 whale_0x8ebd 0xb26f9666... Ultra Sound
14326143 4 3135 1762 +1373 everstake 0x88a53ec4... BloXroute Max Profit
14330935 5 3152 1779 +1373 whale_0x8914 0x850b00e0... Aestus
14325249 7 3186 1813 +1373 p2porg 0xb67eaa5e... BloXroute Max Profit
14324450 8 3203 1830 +1373 blockdaemon_lido 0xb26f9666... Titan Relay
14331384 11 3254 1882 +1372 gateway.fmas_lido 0x853b0078... BloXroute Max Profit
14329773 1 3083 1711 +1372 whale_0x8ebd 0x8db2a99d... Titan Relay
14326166 1 3083 1711 +1372 p2porg 0xb26f9666... Titan Relay
14326250 3 3117 1745 +1372 p2porg 0xb26f9666... Titan Relay
14325131 6 3168 1796 +1372 p2porg_lido 0x88a53ec4... BloXroute Regulated
14324531 0 3065 1694 +1371 p2porg_lido 0x8a2d9d9a... BloXroute Max Profit
14328254 1 3082 1711 +1371 p2porg 0xb26f9666... Titan Relay
14330025 9 3218 1847 +1371 whale_0xfd67 0x850b00e0... BloXroute Max Profit
14324545 1 3081 1711 +1370 coinbase 0x85fb0503... BloXroute Regulated
14324778 5 3149 1779 +1370 stakefish 0x85fb0503... BloXroute Max Profit
14329069 12 3267 1899 +1368 whale_0x8914 0xb67eaa5e... Titan Relay
14329321 10 3232 1864 +1368 p2porg_lido 0x88a53ec4... BloXroute Regulated
14331056 0 3061 1694 +1367 p2porg_lido 0x8db2a99d... BloXroute Max Profit
14324766 0 3060 1694 +1366 kiln 0x8527d16c... Ultra Sound
14326135 0 3060 1694 +1366 p2porg 0x805e28e6... Ultra Sound
14324502 1 3077 1711 +1366 p2porg 0x9129eeb4... Agnostic Gnosis
14326966 5 3145 1779 +1366 p2porg 0xb26f9666... Titan Relay
14329858 1 3076 1711 +1365 coinbase 0x8527d16c... Ultra Sound
14325096 6 3161 1796 +1365 p2porg 0xb26f9666... BloXroute Regulated
14330787 7 3176 1813 +1363 figment 0x853b0078... Ultra Sound
14331090 3 3107 1745 +1362 kiln 0x8527d16c... Ultra Sound
14327839 5 3141 1779 +1362 gateway.fmas_lido 0x850b00e0... BloXroute Regulated
14331412 6 3158 1796 +1362 p2porg 0x853b0078... Ultra Sound
14328819 9 3209 1847 +1362 whale_0x8914 0x8db2a99d... Ultra Sound
14325419 6 3157 1796 +1361 whale_0x8ebd 0x857b0038... Ultra Sound
14328972 0 3054 1694 +1360 p2porg 0x80ad903b... BloXroute Regulated
14326419 1 3071 1711 +1360 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14329969 4 3122 1762 +1360 blockdaemon 0xb26f9666... Ultra Sound
14328759 5 3138 1779 +1359 0x8527d16c... Ultra Sound
14327099 0 3052 1694 +1358 whale_0x8ebd 0x8527d16c... Ultra Sound
14327719 0 3048 1694 +1354 bitstamp 0x88a53ec4... BloXroute Regulated
14328176 0 3048 1694 +1354 whale_0x8ebd 0x8527d16c... Ultra Sound
14326755 1 3065 1711 +1354 solo_stakers 0xb26f9666... BloXroute Regulated
14329135 9 3201 1847 +1354 whale_0x8ebd 0x8527d16c... Ultra Sound
14330576 0 3047 1694 +1353 p2porg 0x823e0146... Flashbots
14331030 0 3047 1694 +1353 whale_0x8ebd 0x8527d16c... Ultra Sound
14325230 0 3047 1694 +1353 blockdaemon_lido 0x823e0146... Ultra Sound
14330138 5 3132 1779 +1353 Local Local
14328871 5 3131 1779 +1352 p2porg 0xb67eaa5e... Ultra Sound
14329326 7 3165 1813 +1352 0x856b0004... Ultra Sound
14326497 0 3043 1694 +1349 solo_stakers 0x80ad903b... Ultra Sound
14328173 0 3043 1694 +1349 whale_0x8ebd 0x8527d16c... Ultra Sound
14325912 1 3060 1711 +1349 coinbase 0x823e0146... Titan Relay
14326385 0 3041 1694 +1347 coinbase 0xac23f8cc... Titan Relay
14329993 0 3041 1694 +1347 p2porg 0xac23f8cc... Flashbots
14326163 3 3092 1745 +1347 bitstamp 0x823e0146... BloXroute Max Profit
14329916 6 3143 1796 +1347 p2porg 0x853b0078... BloXroute Max Profit
14329939 7 3159 1813 +1346 p2porg 0x856b0004... Ultra Sound
14327548 1 3056 1711 +1345 p2porg 0x856b0004... Ultra Sound
14326644 2 3073 1728 +1345 coinbase 0xa965c911... Ultra Sound
14328081 1 3055 1711 +1344 kiln 0xb26f9666... BloXroute Max Profit
14324966 10 3208 1864 +1344 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14328779 0 3037 1694 +1343 p2porg 0x8527d16c... Ultra Sound
14326262 0 3037 1694 +1343 kiln 0x8db2a99d... BloXroute Max Profit
14331048 0 3037 1694 +1343 kiln 0x88857150... Ultra Sound
14328648 1 3053 1711 +1342 coinbase 0xb26f9666... BloXroute Max Profit
14326877 3 3087 1745 +1342 coinbase 0x8527d16c... Ultra Sound
14329463 5 3120 1779 +1341 p2porg 0xb26f9666... Titan Relay
14328988 0 3034 1694 +1340 p2porg 0x8527d16c... Ultra Sound
14330697 2 3068 1728 +1340 whale_0x8ebd 0x8527d16c... Ultra Sound
14325467 2 3068 1728 +1340 kiln 0x8527d16c... Ultra Sound
14331102 7 3153 1813 +1340 kiln 0xb67eaa5e... BloXroute Regulated
14324797 0 3033 1694 +1339 kiln 0x823e0146... Ultra Sound
14331428 5 3118 1779 +1339 p2porg 0xb26f9666... Titan Relay
14328673 6 3135 1796 +1339 p2porg 0x856b0004... Ultra Sound
14326506 12 3237 1899 +1338 p2porg_lido 0x88a53ec4... BloXroute Regulated
14326956 0 3032 1694 +1338 coinbase 0xb26f9666... Titan Relay
14328840 0 3032 1694 +1338 kiln Local Local
14326024 1 3049 1711 +1338 coinbase 0x853b0078... BloXroute Regulated
14325016 3 3083 1745 +1338 whale_0x8ebd 0x88857150... Ultra Sound
14326876 0 3031 1694 +1337 whale_0x8ebd 0x8527d16c... Ultra Sound
14329009 1 3048 1711 +1337 whale_0x8ebd 0x8527d16c... Ultra Sound
14325940 3 3082 1745 +1337 coinbase 0x8527d16c... Ultra Sound
14326256 5 3116 1779 +1337 bitstamp 0xb67eaa5e... BloXroute Regulated
14324558 5 3116 1779 +1337 figment 0x85fb0503... BloXroute Regulated
14330507 0 3030 1694 +1336 kiln 0x88a53ec4... BloXroute Regulated
14326675 4 3098 1762 +1336 coinbase 0xb26f9666... Titan Relay
14326780 1 3046 1711 +1335 kiln 0xb26f9666... BloXroute Max Profit
14327925 2 3063 1728 +1335 whale_0x8ebd Local Local
14325430 3 3080 1745 +1335 whale_0x8ebd 0x823e0146... Ultra Sound
14327792 7 3148 1813 +1335 p2porg 0xb26f9666... Titan Relay
14326981 0 3028 1694 +1334 kiln 0x8527d16c... Ultra Sound
14325360 3 3079 1745 +1334 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14330792 0 3027 1694 +1333 gateway.fmas_lido 0xb4ce6162... Ultra Sound
14326495 5 3112 1779 +1333 coinbase 0x823e0146... BloXroute Max Profit
14330052 0 3026 1694 +1332 p2porg 0xb26f9666... BloXroute Max Profit
14331017 0 3026 1694 +1332 kiln 0x8527d16c... Ultra Sound
14330725 1 3043 1711 +1332 coinbase 0x8527d16c... Ultra Sound
14330136 0 3025 1694 +1331 kiln 0x851b00b1... BloXroute Max Profit
14325152 5 3110 1779 +1331 coinbase 0x8527d16c... Ultra Sound
14325151 1 3041 1711 +1330 p2porg 0x85fb0503... BloXroute Max Profit
14331417 7 3143 1813 +1330 whale_0x8ebd 0x8527d16c... Ultra Sound
14329096 0 3023 1694 +1329 kiln 0x8527d16c... Ultra Sound
14330218 1 3039 1711 +1328 coinbase 0x8527d16c... Ultra Sound
14329914 0 3021 1694 +1327 whale_0x8ebd 0x8527d16c... Ultra Sound
14326787 5 3106 1779 +1327 whale_0x8ebd 0xb26f9666... Titan Relay
14326997 0 3020 1694 +1326 whale_0x8ebd 0x8527d16c... Ultra Sound
14327729 1 3036 1711 +1325 p2porg_lido 0x853b0078... BloXroute Max Profit
14331002 1 3035 1711 +1324 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14327777 3 3069 1745 +1324 p2porg 0x8527d16c... Ultra Sound
14331454 5 3103 1779 +1324 kiln 0xb26f9666... BloXroute Max Profit
14327824 0 3017 1694 +1323 coinbase 0xac09aa45... Agnostic Gnosis
14324757 7 3136 1813 +1323 piertwo 0x85fb0503... BloXroute Max Profit
14329162 0 3016 1694 +1322 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
14325821 5 3100 1779 +1321 p2porg 0x8527d16c... Ultra Sound
14329937 13 3236 1916 +1320 coinbase 0x88a53ec4... BloXroute Regulated
14326409 0 3014 1694 +1320 whale_0x8ebd 0x8527d16c... Ultra Sound
14331087 6 3116 1796 +1320 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14329417 9 3167 1847 +1320 blockdaemon_lido 0x8527d16c... Ultra Sound
14330465 0 3013 1694 +1319 coinbase 0x9129eeb4... Agnostic Gnosis
14329223 3 3064 1745 +1319 whale_0xedc6 0x8527d16c... Ultra Sound
14326695 5 3097 1779 +1318 p2porg_lido 0x823e0146... Ultra Sound
14329307 8 3148 1830 +1318 whale_0x8ebd 0x856b0004... Agnostic Gnosis
14327688 5 3096 1779 +1317 kiln 0xb26f9666... BloXroute Max Profit
14328619 0 3010 1694 +1316 kiln 0x856b0004... Ultra Sound
14327120 0 3010 1694 +1316 coinbase 0x8527d16c... Ultra Sound
14327693 3 3061 1745 +1316 kiln 0x9129eeb4... Ultra Sound
14330801 7 3128 1813 +1315 coinbase 0x88857150... Ultra Sound
14326942 0 3008 1694 +1314 coinbase 0xa965c911... Ultra Sound
14329896 1 3025 1711 +1314 coinbase 0x8527d16c... Ultra Sound
14326455 7 3127 1813 +1314 p2porg_lido 0x823e0146... Ultra Sound
14328683 8 3143 1830 +1313 coinbase 0x8527d16c... Ultra Sound
14326202 9 3160 1847 +1313 kiln 0x856b0004... BloXroute Max Profit
14330815 5 3091 1779 +1312 kiln 0x88a53ec4... BloXroute Regulated
14331388 0 3004 1694 +1310 coinbase 0xa03781b9... Ultra Sound
14324987 0 3004 1694 +1310 kiln 0xba003e46... BloXroute Max Profit
14331358 0 3004 1694 +1310 whale_0xedc6 0x853b0078... BloXroute Max Profit
14324442 7 3123 1813 +1310 coinbase Local Local
14325720 3 3054 1745 +1309 everstake 0x88857150... Ultra Sound
14327367 13 3224 1916 +1308 kiln 0xb26f9666... BloXroute Regulated
14327522 1 3019 1711 +1308 whale_0x8ebd 0x8527d16c... Ultra Sound
14327148 1 3018 1711 +1307 coinbase 0x8527d16c... Ultra Sound
14325659 1 3018 1711 +1307 coinbase 0xb26f9666... Titan Relay
14331482 5 3085 1779 +1306 p2porg 0x823e0146... BloXroute Max Profit
14325598 5 3085 1779 +1306 coinbase 0x8527d16c... Ultra Sound
14328328 6 3102 1796 +1306 whale_0x8ebd 0x8527d16c... Ultra Sound
14327986 6 3102 1796 +1306 p2porg 0xb26f9666... BloXroute Max Profit
14331252 0 2999 1694 +1305 everstake 0xb26f9666... Titan Relay
14324872 1 3016 1711 +1305 kiln 0x8527d16c... Ultra Sound
14329641 2 3033 1728 +1305 coinbase 0x8db2a99d... Ultra Sound
14325309 2 3033 1728 +1305 bitstamp Local Local
14331461 0 2998 1694 +1304 kiln 0x823e0146... BloXroute Max Profit
14329324 7 3117 1813 +1304 coinbase Local Local
14329818 0 2997 1694 +1303 kiln 0x851b00b1... Flashbots
14326938 3 3048 1745 +1303 coinbase 0x8527d16c... Ultra Sound
14330919 6 3099 1796 +1303 kiln 0x8527d16c... Ultra Sound
14331436 0 2996 1694 +1302 kiln 0x8527d16c... Ultra Sound
14326952 0 2996 1694 +1302 coinbase 0x8527d16c... Ultra Sound
14330448 1 3013 1711 +1302 kiln 0xb67eaa5e... Ultra Sound
14324608 2 3030 1728 +1302 everstake 0x88a53ec4... BloXroute Regulated
14329014 0 2995 1694 +1301 kiln 0x8527d16c... Ultra Sound
14325524 0 2994 1694 +1300 kiln 0x8db2a99d... Ultra Sound
14327378 1 3011 1711 +1300 everstake 0xb26f9666... Titan Relay
14325446 4 3062 1762 +1300 0x85fb0503... BloXroute Max Profit
14331262 0 2992 1694 +1298 0x8527d16c... Ultra Sound
14325880 0 2992 1694 +1298 kiln 0xb7c5e609... BloXroute Max Profit
14330230 5 3077 1779 +1298 figment 0x823e0146... Flashbots
14328251 5 3077 1779 +1298 coinbase 0xb67eaa5e... BloXroute Regulated
14328601 7 3111 1813 +1298 whale_0x8ebd 0xb26f9666... Ultra Sound
14329198 1 3008 1711 +1297 everstake 0xb26f9666... Titan Relay
14324858 10 3160 1864 +1296 upbit 0x85fb0503... BloXroute Regulated
14328983 3 3040 1745 +1295 kiln 0x856b0004... BloXroute Max Profit
14329657 6 3091 1796 +1295 p2porg 0xb26f9666... BloXroute Max Profit
14330450 11 3176 1882 +1294 p2porg 0xb26f9666... Titan Relay
14329480 4 3056 1762 +1294 kiln 0x8527d16c... Ultra Sound
14328554 5 3073 1779 +1294 p2porg 0xb26f9666... BloXroute Max Profit
14324854 2 3020 1728 +1292 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14331386 0 2985 1694 +1291 kiln 0xb67eaa5e... Ultra Sound
14330866 2 3019 1728 +1291 coinbase 0x823e0146... Ultra Sound
14328456 7 3104 1813 +1291 coinbase 0x8527d16c... Ultra Sound
14330326 0 2984 1694 +1290 coinbase Local Local
14326714 5 3069 1779 +1290 coinbase 0x8527d16c... Ultra Sound
14329222 5 3069 1779 +1290 p2porg 0x8527d16c... Ultra Sound
14326060 6 3086 1796 +1290 p2porg 0x8527d16c... Ultra Sound
14324706 0 2983 1694 +1289 p2porg_lido 0x85fb0503... BloXroute Max Profit
14328747 10 3153 1864 +1289 kiln 0x856b0004... BloXroute Max Profit
14329281 4 3050 1762 +1288 coinbase 0x856b0004... BloXroute Max Profit
14331562 12 3186 1899 +1287 0xb26f9666... BloXroute Max Profit
14327927 1 2998 1711 +1287 kiln 0x823e0146... Titan Relay
14327788 0 2980 1694 +1286 whale_0x8ebd 0xb4ce6162... Ultra Sound
14330756 5 3065 1779 +1286 p2porg 0x823e0146... BloXroute Max Profit
14326117 0 2979 1694 +1285 everstake 0x88a53ec4... BloXroute Max Profit
14327436 4 3047 1762 +1285 whale_0x8ebd 0x88857150... Ultra Sound
14328066 6 3080 1796 +1284 whale_0x8ebd 0x856b0004... Aestus
14328530 3 3028 1745 +1283 kiln 0x8527d16c... Ultra Sound
14327567 5 3062 1779 +1283 everstake 0x88a53ec4... BloXroute Max Profit
14327198 5 3062 1779 +1283 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14327149 10 3147 1864 +1283 0x8527d16c... Ultra Sound
14326851 8 3112 1830 +1282 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14329385 11 3163 1882 +1281 0x8527d16c... Ultra Sound
14331256 2 3009 1728 +1281 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
14326737 6 3077 1796 +1281 everstake Local Local
14328953 7 3094 1813 +1281 coinbase 0xb26f9666... Ultra Sound
14330518 10 3145 1864 +1281 kiln 0xb67eaa5e... BloXroute Regulated
14324491 1 2991 1711 +1280 kiln 0xb26f9666... BloXroute Max Profit
14325967 1 2991 1711 +1280 coinbase 0x88857150... Ultra Sound
14325532 1 2991 1711 +1280 coinbase 0x88857150... Ultra Sound
14325611 8 3110 1830 +1280 kiln 0x8db2a99d... Ultra Sound
14325050 1 2990 1711 +1279 whale_0x8ebd 0x8527d16c... Ultra Sound
14325618 7 3092 1813 +1279 p2porg 0x8527d16c... Ultra Sound
14326878 0 2972 1694 +1278 kiln 0x88857150... Ultra Sound
14329031 0 2972 1694 +1278 whale_0x8ebd 0x83bee517... Flashbots
14326192 4 3040 1762 +1278 figment 0xa03781b9... Ultra Sound
14328405 7 3091 1813 +1278 whale_0x8ebd 0x8527d16c... Ultra Sound
14325832 0 2971 1694 +1277 kiln 0x856b0004... BloXroute Max Profit
14330964 4 3039 1762 +1277 nethermind_lido 0x88a53ec4... BloXroute Regulated
14330646 8 3107 1830 +1277 whale_0x8ebd 0xb26f9666... Ultra Sound
14326932 1 2987 1711 +1276 kiln 0x8527d16c... Ultra Sound
14326950 6 3072 1796 +1276 kiln 0x8527d16c... Ultra Sound
14325795 7 3089 1813 +1276 whale_0x8ebd 0x8527d16c... Ultra Sound
14327530 2 3003 1728 +1275 coinbase 0x8527d16c... Ultra Sound
14331540 8 3105 1830 +1275 bitstamp 0xb26f9666... Titan Relay
14330860 5 3053 1779 +1274 kiln 0x8527d16c... Ultra Sound
14328464 6 3070 1796 +1274 bitstamp 0x850b00e0... BloXroute Max Profit
14327858 0 2966 1694 +1272 everstake 0xb26f9666... Titan Relay
14325001 10 3136 1864 +1272 whale_0x8ebd 0x85fb0503... BloXroute Regulated
14330323 14 3204 1933 +1271 0x853b0078... Ultra Sound
14326193 0 2965 1694 +1271 everstake 0xb26f9666... Titan Relay
14325951 2 2999 1728 +1271 kiln 0xb26f9666... BloXroute Max Profit
14324559 9 3118 1847 +1271 kiln 0x8527d16c... Ultra Sound
14329600 11 3152 1882 +1270 whale_0x8ebd 0xb4ce6162... Ultra Sound
14329004 8 3100 1830 +1270 kiln 0x8527d16c... Ultra Sound
14325492 3 3013 1745 +1268 everstake 0x8527d16c... Ultra Sound
14325745 7 3081 1813 +1268 Local Local
14328389 10 3132 1864 +1268 coinbase 0x8527d16c... Ultra Sound
14325046 0 2961 1694 +1267 0x823e0146... BloXroute Max Profit
14329909 11 3148 1882 +1266 whale_0x8ebd 0x8527d16c... Ultra Sound
14329534 0 2960 1694 +1266 kiln 0x8527d16c... Ultra Sound
14324702 0 2960 1694 +1266 whale_0x8ebd 0x8db2a99d... Ultra Sound
14326393 1 2976 1711 +1265 kiln 0x856b0004... BloXroute Max Profit
14330627 1 2975 1711 +1264 kiln 0xb26f9666... Aestus
14325071 11 3145 1882 +1263 p2porg 0x8db2a99d... Aestus
14324553 1 2973 1711 +1262 coinbase 0xb67eaa5e... Ultra Sound
14326035 7 3075 1813 +1262 0xb26f9666... Titan Relay
14325826 0 2955 1694 +1261 everstake 0x805e28e6... Titan Relay
14324454 5 3040 1779 +1261 coinbase 0x8527d16c... Ultra Sound
14325475 10 3125 1864 +1261 p2porg 0x8527d16c... Ultra Sound
14327759 1 2971 1711 +1260 kiln 0xb26f9666... BloXroute Max Profit
14327505 3 3005 1745 +1260 kiln 0x8527d16c... Ultra Sound
14327411 0 2953 1694 +1259 everstake 0xb26f9666... Titan Relay
14328393 21 3310 2052 +1258 whale_0x8ebd 0x8527d16c... Ultra Sound
14326970 6 3054 1796 +1258 coinbase 0x8527d16c... Ultra Sound
14330498 0 2951 1694 +1257 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14325250 1 2968 1711 +1257 kiln 0x8527d16c... Ultra Sound
14324430 6 3053 1796 +1257 figment 0x856b0004... Aestus
14324967 6 3052 1796 +1256 whale_0x8ebd 0x8527d16c... Ultra Sound
14325612 8 3086 1830 +1256 coinbase 0x8db2a99d... Ultra Sound
14331263 2 2983 1728 +1255 everstake Local Local
14325030 5 3033 1779 +1254 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14329333 2 2981 1728 +1253 kiln 0x853b0078... BloXroute Regulated
14325431 2 2981 1728 +1253 everstake 0xb26f9666... Titan Relay
14327475 1 2963 1711 +1252 kiln 0x8527d16c... Ultra Sound
14331570 11 3132 1882 +1250 coinbase 0x856b0004... BloXroute Max Profit
14325740 3 2995 1745 +1250 everstake 0xb26f9666... Titan Relay
14329160 3 2995 1745 +1250 kiln 0x8527d16c... Ultra Sound
14326868 1 2960 1711 +1249 whale_0x8ebd 0xb4ce6162... Ultra Sound
14330622 5 3028 1779 +1249 p2porg_lido 0x8db2a99d... BloXroute Max Profit
14324813 6 3045 1796 +1249 kiln 0x8db2a99d... Titan Relay
14329541 0 2942 1694 +1248 kiln 0x99cba505... BloXroute Max Profit
14325160 0 2942 1694 +1248 kiln 0x9129eeb4... Agnostic Gnosis
14331138 5 3027 1779 +1248 whale_0x8ee5 0x8527d16c... Ultra Sound
14330927 5 3027 1779 +1248 coinbase 0x823e0146... BloXroute Max Profit
Total anomalies: 528

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