Mon, May 18, 2026

Propagation anomalies - 2026-05-18

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-18' AND slot_start_date_time < '2026-05-18'::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-18' AND slot_start_date_time < '2026-05-18'::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-18' AND slot_start_date_time < '2026-05-18'::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-18' AND slot_start_date_time < '2026-05-18'::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-18' AND slot_start_date_time < '2026-05-18'::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-18' AND slot_start_date_time < '2026-05-18'::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-18' AND slot_start_date_time < '2026-05-18'::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-18' AND slot_start_date_time < '2026-05-18'::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,695 (93.2%)
Local blocks: 489 (6.8%)

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 = 1686.5 + 18.48 × blob_count (R² = 0.012)
Residual σ = 623.6ms
Anomalies (>2σ slow): 511 (7.1%)
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
14359969 0 10927 1686 +9241 consensyscodefi_lido Local Local
14355872 0 7076 1686 +5390 upbit Local Local
14360192 0 6618 1686 +4932 upbit Local Local
14355648 6 6326 1797 +4529 blockdaemon 0x856b0004... Ultra Sound
14358976 0 6042 1686 +4356 upbit Local Local
14359968 5 5399 1779 +3620 upbit Local Local
14356377 0 4147 1686 +2461 solo_stakers Local Local
14353472 0 3890 1686 +2204 solo_stakers Local Local
14359202 0 3886 1686 +2200 whale_0x8ebd Local Local
14353824 1 3856 1705 +2151 kraken 0x8527d16c... Ultra Sound
14355008 1 3796 1705 +2091 blockdaemon_lido Local Local
14358708 6 3797 1797 +2000 kiln 0x857b0038... BloXroute Regulated
14355361 5 3762 1779 +1983 blockdaemon 0x853b0078... BloXroute Regulated
14356800 6 3706 1797 +1909 whale_0xdc8d 0x823e0146... BloXroute Max Profit
14357552 1 3606 1705 +1901 stakefish_lido 0xb67eaa5e... Titan Relay
14359132 3 3579 1742 +1837 stakefish 0x856b0004... BloXroute Max Profit
14353949 5 3566 1779 +1787 blockdaemon 0x8a850621... Ultra Sound
14353407 1 3467 1705 +1762 coinbase 0x8db2a99d... BloXroute Max Profit
14359267 0 3434 1686 +1748 whale_0x8ebd 0x8a850621... Titan Relay
14359696 0 3395 1686 +1709 blockdaemon 0xb4ce6162... Ultra Sound
14354847 2 3424 1723 +1701 blockdaemon 0x8a850621... Titan Relay
14353774 0 3377 1686 +1691 blockdaemon 0xa230e2cf... BloXroute Max Profit
14356397 0 3363 1686 +1677 nethermind_lido 0x856b0004... BloXroute Max Profit
14355429 9 3519 1853 +1666 blockdaemon 0x857b0038... BloXroute Max Profit
14355898 0 3346 1686 +1660 blockdaemon 0x851b00b1... BloXroute Max Profit
14358816 0 3345 1686 +1659 blockdaemon_lido 0x851b00b1... BloXroute Max Profit
14353956 1 3362 1705 +1657 blockdaemon 0x8a850621... Titan Relay
14359789 0 3343 1686 +1657 whale_0xfd67 0x88a53ec4... Aestus
14358226 1 3360 1705 +1655 blockdaemon_lido 0xb26f9666... Titan Relay
14355113 1 3346 1705 +1641 blockdaemon_lido 0xb67eaa5e... Titan Relay
14359008 5 3416 1779 +1637 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
14356398 5 3416 1779 +1637 nethermind_lido 0x8db2a99d... BloXroute Max Profit
14355817 1 3342 1705 +1637 whale_0xdc8d 0xb26f9666... Ultra Sound
14355739 5 3414 1779 +1635 blockdaemon 0x8a850621... Titan Relay
14354289 5 3414 1779 +1635 luno 0xa230e2cf... BloXroute Max Profit
14357444 4 3392 1760 +1632 blockdaemon 0x8527d16c... Ultra Sound
14354470 3 3372 1742 +1630 solo_stakers 0xb26f9666... Titan Relay
14356124 1 3332 1705 +1627 blockdaemon_lido 0x88857150... Ultra Sound
14354560 0 3313 1686 +1627 p2porg 0xa230e2cf... BloXroute Regulated
14354582 1 3331 1705 +1626 blockdaemon 0x8527d16c... Ultra Sound
14354249 0 3311 1686 +1625 blockdaemon 0xb26f9666... Titan Relay
14358600 1 3329 1705 +1624 blockdaemon_lido 0x9129eeb4... Ultra Sound
14355679 1 3329 1705 +1624 blockdaemon 0x823e0146... BloXroute Regulated
14354835 6 3419 1797 +1622 blockdaemon 0x8527d16c... Ultra Sound
14355558 0 3306 1686 +1620 whale_0xdc8d 0x851b00b1... BloXroute Max Profit
14354945 1 3323 1705 +1618 blockdaemon_lido 0x8527d16c... Ultra Sound
14353200 10 3483 1871 +1612 blockdaemon_lido 0x88a53ec4... BloXroute Regulated
14354877 1 3312 1705 +1607 luno 0x8527d16c... Ultra Sound
14356253 10 3477 1871 +1606 solo_stakers Local Local
14354234 5 3382 1779 +1603 luno 0x8527d16c... Ultra Sound
14358983 4 3363 1760 +1603 whale_0xdc8d 0x8527d16c... Ultra Sound
14357569 0 3286 1686 +1600 blockdaemon_lido 0x805e28e6... Ultra Sound
14357904 0 3284 1686 +1598 blockdaemon_lido 0xb67eaa5e... Titan Relay
14359166 1 3301 1705 +1596 blockdaemon 0x88857150... Ultra Sound
14358532 3 3337 1742 +1595 whale_0xdc8d 0x8db2a99d... Ultra Sound
14357571 9 3447 1853 +1594 ether.fi 0xb67eaa5e... Titan Relay
14353504 1 3297 1705 +1592 p2porg 0x8527d16c... Ultra Sound
14355811 6 3389 1797 +1592 blockdaemon_lido 0x8527d16c... Ultra Sound
14354774 10 3460 1871 +1589 blockdaemon_lido 0x88857150... Ultra Sound
14356824 6 3380 1797 +1583 p2porg_lido 0x857b0038... Ultra Sound
14359091 7 3397 1816 +1581 blockdaemon 0x8527d16c... Ultra Sound
14353631 8 3412 1834 +1578 revolut 0x850b00e0... BloXroute Regulated
14354140 10 3448 1871 +1577 blockdaemon 0x8a850621... Titan Relay
14354476 5 3355 1779 +1576 blockdaemon 0x8db2a99d... BloXroute Max Profit
14360029 5 3355 1779 +1576 0x88a53ec4... BloXroute Max Profit
14355581 0 3260 1686 +1574 whale_0xdc8d 0xb26f9666... Titan Relay
14358007 6 3366 1797 +1569 blockdaemon_lido 0x8527d16c... Ultra Sound
14355545 3 3309 1742 +1567 blockdaemon_lido 0x9129eeb4... Ultra Sound
14355813 1 3269 1705 +1564 blockdaemon 0x8db2a99d... BloXroute Max Profit
14354153 0 3250 1686 +1564 luno 0xa230e2cf... BloXroute Max Profit
14355751 0 3249 1686 +1563 whale_0xfd67 0x8527d16c... Ultra Sound
14355209 6 3359 1797 +1562 blockdaemon 0xb67eaa5e... Ultra Sound
14357723 6 3358 1797 +1561 blockdaemon 0x850b00e0... BloXroute Max Profit
14357347 0 3247 1686 +1561 blockdaemon_lido 0x851b00b1... BloXroute Max Profit
14357403 2 3283 1723 +1560 blockdaemon_lido 0xb67eaa5e... Ultra Sound
14354083 0 3246 1686 +1560 blockdaemon 0x805e28e6... Ultra Sound
14355668 0 3244 1686 +1558 revolut 0x88a53ec4... BloXroute Regulated
14357208 1 3262 1705 +1557 revolut 0xb26f9666... Titan Relay
14353783 0 3242 1686 +1556 blockdaemon 0x8a850621... Ultra Sound
14356593 6 3352 1797 +1555 luno 0x8527d16c... Ultra Sound
14355086 0 3238 1686 +1552 blockdaemon_lido 0xb67eaa5e... Ultra Sound
14355032 4 3311 1760 +1551 gateway.fmas_lido 0x88a53ec4... BloXroute Regulated
14357544 5 3329 1779 +1550 blockdaemon_lido 0x8527d16c... Ultra Sound
14356233 11 3439 1890 +1549 blockdaemon 0xb7c5beef... BloXroute Max Profit
14358768 1 3254 1705 +1549 blockdaemon_lido 0x823e0146... Ultra Sound
14356981 7 3361 1816 +1545 blockdaemon 0x8db2a99d... BloXroute Max Profit
14358645 2 3268 1723 +1545 blockdaemon_lido 0xb26f9666... Titan Relay
14355266 2 3268 1723 +1545 revolut 0x823e0146... BloXroute Max Profit
14360390 7 3360 1816 +1544 blockdaemon 0xb26f9666... Ultra Sound
14358591 1 3249 1705 +1544 blockdaemon_lido 0x8db2a99d... Titan Relay
14353797 6 3339 1797 +1542 luno 0x8527d16c... Ultra Sound
14355747 0 3226 1686 +1540 blockdaemon 0x851b00b1... BloXroute Max Profit
14360070 3 3272 1742 +1530 p2porg 0x850b00e0... BloXroute Regulated
14354362 5 3308 1779 +1529 luno 0x8527d16c... Ultra Sound
14357707 8 3363 1834 +1529 blockdaemon 0x8a850621... Titan Relay
14359444 0 3215 1686 +1529 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
14359533 0 3213 1686 +1527 gateway.fmas_lido 0x851b00b1... BloXroute Max Profit
14358380 9 3379 1853 +1526 blockdaemon 0x8527d16c... Ultra Sound
14355370 0 3212 1686 +1526 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
14360360 7 3341 1816 +1525 gateway.fmas_lido 0x850b00e0... Ultra Sound
14359082 8 3358 1834 +1524 blockdaemon 0x8527d16c... Ultra Sound
14359365 3 3265 1742 +1523 blockdaemon_lido 0x8db2a99d... Ultra Sound
14358428 9 3373 1853 +1520 blockdaemon_lido 0xb67eaa5e... Titan Relay
14357291 0 3206 1686 +1520 blockdaemon_lido 0xb67eaa5e... Titan Relay
14359426 1 3224 1705 +1519 whale_0x8914 0xb67eaa5e... BloXroute Regulated
14360160 1 3224 1705 +1519 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14359932 1 3222 1705 +1517 kiln 0x823e0146... Flashbots
14356922 9 3368 1853 +1515 blockdaemon_lido 0x88857150... Ultra Sound
14359621 0 3201 1686 +1515 luno 0x88cd924c... Ultra Sound
14357399 9 3366 1853 +1513 whale_0xdc8d 0x8527d16c... Ultra Sound
14353820 0 3199 1686 +1513 gateway.fmas_lido 0x857b0038... Ultra Sound
14357472 0 3198 1686 +1512 whale_0x8914 0xb67eaa5e... Titan Relay
14358531 9 3364 1853 +1511 whale_0x8ebd Local Local
14353284 6 3308 1797 +1511 whale_0xdc8d 0x856b0004... BloXroute Max Profit
14356165 2 3233 1723 +1510 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
14354927 2 3232 1723 +1509 revolut 0xb7c5e609... BloXroute Max Profit
14356639 3 3250 1742 +1508 blockdaemon 0x8527d16c... Ultra Sound
14359996 5 3285 1779 +1506 whale_0x3878 0xb67eaa5e... Aestus
14356104 1 3210 1705 +1505 whale_0xdc8d 0x8527d16c... Ultra Sound
14358439 11 3394 1890 +1504 whale_0xdc8d 0x8527d16c... Ultra Sound
14354585 7 3320 1816 +1504 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
14356537 1 3209 1705 +1504 whale_0x4b5e 0x850b00e0... Ultra Sound
14357764 5 3281 1779 +1502 revolut 0x8db2a99d... Ultra Sound
14358758 1 3206 1705 +1501 whale_0x3878 0x8db2a99d... Ultra Sound
14353495 5 3279 1779 +1500 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14359566 1 3204 1705 +1499 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
14354964 11 3388 1890 +1498 0x8527d16c... Ultra Sound
14353348 2 3221 1723 +1498 whale_0xdc8d 0x856b0004... Ultra Sound
14355274 0 3184 1686 +1498 p2porg 0x88a53ec4... BloXroute Max Profit
14357092 0 3183 1686 +1497 whale_0xc611 0xb67eaa5e... Titan Relay
14357224 1 3201 1705 +1496 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
14353594 0 3178 1686 +1492 blockdaemon 0x96f44633... BloXroute Max Profit
14355941 0 3177 1686 +1491 blockdaemon 0xb26f9666... Ultra Sound
14359816 0 3176 1686 +1490 solo_stakers Local Local
14354024 0 3175 1686 +1489 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
14354924 0 3174 1686 +1488 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
14356455 5 3265 1779 +1486 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
14353722 1 3191 1705 +1486 kiln 0x88a53ec4... BloXroute Regulated
14353784 6 3282 1797 +1485 blockdaemon_lido 0x853b0078... BloXroute Max Profit
14355496 0 3171 1686 +1485 whale_0x8ebd 0xb26f9666... Titan Relay
14355527 1 3188 1705 +1483 whale_0xfd67 0x850b00e0... Ultra Sound
14360018 13 3408 1927 +1481 p2porg Local Local
14357849 0 3166 1686 +1480 stader 0xb26f9666... Titan Relay
14355630 3 3221 1742 +1479 p2porg_lido 0xb67eaa5e... BloXroute Regulated
14357467 0 3165 1686 +1479 p2porg_lido 0x851b00b1... Ultra Sound
14353304 5 3256 1779 +1477 coinbase Local Local
14357015 0 3163 1686 +1477 whale_0xfd67 0x851b00b1... Ultra Sound
14360005 0 3163 1686 +1477 p2porg_lido Local Local
14359524 0 3161 1686 +1475 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14357196 0 3161 1686 +1475 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
14358451 6 3271 1797 +1474 p2porg 0x88857150... Ultra Sound
14354545 0 3160 1686 +1474 whale_0x8914 0xb67eaa5e... Titan Relay
14358559 0 3158 1686 +1472 revolut 0x8527d16c... Ultra Sound
14354171 5 3250 1779 +1471 blockdaemon_lido 0xa230e2cf... BloXroute Max Profit
14358002 5 3249 1779 +1470 kiln 0xb67eaa5e... BloXroute Max Profit
14355307 6 3267 1797 +1470 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14357755 5 3248 1779 +1469 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
14359724 1 3170 1705 +1465 whale_0xc611 0x823e0146... Titan Relay
14358954 0 3151 1686 +1465 p2porg 0x88a53ec4... BloXroute Regulated
14358493 1 3168 1705 +1463 p2porg 0xb26f9666... BloXroute Max Profit
14359853 0 3149 1686 +1463 blockdaemon_lido 0x851b00b1... BloXroute Max Profit
14354772 5 3241 1779 +1462 blockdaemon_lido 0xa230e2cf... BloXroute Max Profit
14354730 5 3237 1779 +1458 blockdaemon 0x8527d16c... Ultra Sound
14357908 4 3218 1760 +1458 p2porg_lido 0xb67eaa5e... BloXroute Regulated
14353980 4 3217 1760 +1457 whale_0x8ebd 0x8527d16c... Ultra Sound
14356028 1 3161 1705 +1456 whale_0xf273 0xb67eaa5e... Titan Relay
14354391 4 3216 1760 +1456 revolut 0x8527d16c... Ultra Sound
14356241 0 3142 1686 +1456 whale_0x8ebd 0x8527d16c... Ultra Sound
14358624 3 3197 1742 +1455 abyss_finance 0x8db2a99d... Titan Relay
14356805 5 3232 1779 +1453 whale_0x8914 0xb67eaa5e... Titan Relay
14354138 6 3250 1797 +1453 coinbase 0x88a53ec4... BloXroute Regulated
14353829 5 3231 1779 +1452 kiln 0x850b00e0... BloXroute Max Profit
14354651 0 3138 1686 +1452 whale_0x4b5e 0xb67eaa5e... Titan Relay
14354242 0 3138 1686 +1452 p2porg_lido 0xb67eaa5e... BloXroute Regulated
14357964 10 3321 1871 +1450 gateway.fmas_lido 0x850b00e0... Flashbots
14357496 0 3132 1686 +1446 p2porg 0x853b0078... BloXroute Regulated
14357815 3 3186 1742 +1444 p2porg_lido 0x88a53ec4... BloXroute Max Profit
14354851 0 3130 1686 +1444 coinbase 0x8527d16c... Ultra Sound
14355986 3 3184 1742 +1442 whale_0x8914 0x823e0146... Ultra Sound
14355473 1 3146 1705 +1441 p2porg 0x850b00e0... BloXroute Regulated
14355797 12 3346 1908 +1438 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
14356454 5 3216 1779 +1437 p2porg_lido 0x88a53ec4... BloXroute Max Profit
14358028 8 3271 1834 +1437 p2porg 0x88857150... Ultra Sound
14359806 2 3160 1723 +1437 whale_0x8914 0x850b00e0... Ultra Sound
14354374 5 3210 1779 +1431 p2porg_lido 0xb7c5e609... BloXroute Max Profit
14359579 10 3302 1871 +1431 revolut 0x853b0078... BloXroute Max Profit
14357878 6 3228 1797 +1431 blockdaemon 0x8527d16c... Ultra Sound
14358990 6 3227 1797 +1430 whale_0x8914 0xb67eaa5e... Titan Relay
14353987 6 3227 1797 +1430 p2porg_lido 0x88a53ec4... BloXroute Max Profit
14358246 6 3227 1797 +1430 blockdaemon_lido 0xb26f9666... Titan Relay
14358236 4 3190 1760 +1430 coinbase 0xb26f9666... Titan Relay
14356022 0 3116 1686 +1430 blockdaemon 0x8527d16c... Ultra Sound
14353948 7 3245 1816 +1429 revolut 0xb26f9666... Titan Relay
14356258 0 3113 1686 +1427 p2porg_lido 0x851b00b1... BloXroute Max Profit
14354132 7 3242 1816 +1426 whale_0xfd67 0xa230e2cf... BloXroute Max Profit
14356173 7 3241 1816 +1425 p2porg_lido 0xb67eaa5e... BloXroute Regulated
14354384 5 3204 1779 +1425 whale_0x8914 0x8db2a99d... Ultra Sound
14359384 2 3148 1723 +1425 p2porg 0x850b00e0... BloXroute Regulated
14357018 0 3111 1686 +1425 whale_0x8ebd 0x88857150... Ultra Sound
14356360 4 3183 1760 +1423 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14357045 0 3109 1686 +1423 kiln 0x850b00e0... Flashbots
14356048 1 3127 1705 +1422 blockdaemon_lido 0xb26f9666... Titan Relay
14359472 15 3385 1964 +1421 whale_0xdc8d 0xb26f9666... Ultra Sound
14355753 11 3311 1890 +1421 whale_0xdc8d 0xb26f9666... Titan Relay
14358315 1 3125 1705 +1420 p2porg_lido 0x88a53ec4... BloXroute Max Profit
14358243 15 3381 1964 +1417 blockdaemon_lido 0x8527d16c... Ultra Sound
14357085 1 3122 1705 +1417 whale_0x4b5e 0xb67eaa5e... BloXroute Max Profit
14359244 1 3121 1705 +1416 p2porg 0xb26f9666... Titan Relay
14355968 0 3102 1686 +1416 p2porg_lido 0x823e0146... Flashbots
14357284 14 3359 1945 +1414 revolut 0x856b0004... Ultra Sound
14356038 0 3100 1686 +1414 p2porg_lido 0x851b00b1... BloXroute Max Profit
14353529 1 3118 1705 +1413 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14354395 0 3099 1686 +1413 coinbase 0x8527d16c... Ultra Sound
14357905 5 3190 1779 +1411 stader 0x823e0146... Flashbots
14358449 5 3188 1779 +1409 p2porg_lido Local Local
14354648 1 3113 1705 +1408 kiln 0xb67eaa5e... BloXroute Regulated
14357252 20 3462 2056 +1406 blockdaemon 0xb26f9666... Ultra Sound
14360329 1 3109 1705 +1404 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14354089 6 3201 1797 +1404 p2porg 0x9129eeb4... Ultra Sound
14358458 6 3197 1797 +1400 0x850b00e0... BloXroute Max Profit
14357763 4 3160 1760 +1400 p2porg_lido 0x850b00e0... BloXroute Max Profit
14354961 2 3123 1723 +1400 coinbase 0xa230e2cf... BloXroute Max Profit
14355708 0 3086 1686 +1400 p2porg_lido 0x851b00b1... Ultra Sound
14356841 3 3141 1742 +1399 whale_0x8ebd 0x8527d16c... Ultra Sound
14360229 1 3103 1705 +1398 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14355690 1 3103 1705 +1398 whale_0x8ebd 0x8527d16c... Ultra Sound
14353346 0 3084 1686 +1398 p2porg 0x83cae7e5... Titan Relay
14356577 0 3084 1686 +1398 p2porg 0x850b00e0... BloXroute Regulated
14359735 9 3247 1853 +1394 kiln 0x853b0078... BloXroute Max Profit
14358207 1 3098 1705 +1393 whale_0x8ebd 0x8527d16c... Ultra Sound
14355948 1 3097 1705 +1392 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14358599 8 3226 1834 +1392 gateway.fmas_lido 0x850b00e0... Flashbots
14360194 0 3078 1686 +1392 coinbase 0x8db2a99d... BloXroute Max Profit
14356485 2 3114 1723 +1391 kiln 0x8db2a99d... BloXroute Max Profit
14353246 0 3077 1686 +1391 p2porg 0xb26f9666... Titan Relay
14357416 3 3131 1742 +1389 coinbase 0xb26f9666... BloXroute Regulated
14353321 0 3075 1686 +1389 whale_0x8ebd 0xb4ce6162... Ultra Sound
14353952 5 3167 1779 +1388 whale_0x8ebd Local Local
14357613 6 3184 1797 +1387 p2porg_lido Local Local
14353482 8 3220 1834 +1386 p2porg_lido 0xb67eaa5e... BloXroute Max Profit
14356001 0 3072 1686 +1386 coinbase 0x8db2a99d... BloXroute Max Profit
14353976 3 3127 1742 +1385 coinbase Local Local
14354084 3 3127 1742 +1385 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14356533 2 3108 1723 +1385 p2porg 0xb26f9666... Titan Relay
14354684 5 3163 1779 +1384 whale_0x8914 0x88a53ec4... Aestus
14357494 3 3126 1742 +1384 0xb67eaa5e... BloXroute Regulated
14357776 0 3070 1686 +1384 kiln 0x8527d16c... Ultra Sound
14359732 1 3088 1705 +1383 whale_0x8ebd 0x8527d16c... Ultra Sound
14357095 0 3069 1686 +1383 p2porg_lido 0x850b00e0... BloXroute Max Profit
14356811 7 3197 1816 +1381 p2porg 0x850b00e0... BloXroute Regulated
14357525 2 3104 1723 +1381 p2porg 0x856b0004... Ultra Sound
14358658 0 3067 1686 +1381 p2porg_lido 0x8db2a99d... BloXroute Regulated
14358625 0 3067 1686 +1381 p2porg 0xa03781b9... Ultra Sound
14356472 9 3233 1853 +1380 p2porg_lido 0x88a53ec4... BloXroute Max Profit
14353827 3 3122 1742 +1380 whale_0xedc6 0xb26f9666... Aestus
14354069 2 3103 1723 +1380 whale_0x8914 0xa230e2cf... BloXroute Regulated
14358686 2 3103 1723 +1380 p2porg 0x8db2a99d... Titan Relay
14356189 0 3065 1686 +1379 whale_0x8ebd 0x8527d16c... Ultra Sound
14356529 0 3065 1686 +1379 p2porg_lido 0x851b00b1... BloXroute Max Profit
14353436 0 3064 1686 +1378 p2porg 0xa230e2cf... BloXroute Regulated
14353419 1 3082 1705 +1377 gateway.fmas_lido Local Local
14356997 8 3210 1834 +1376 bitstamp 0x857b0038... BloXroute Max Profit
14359194 0 3061 1686 +1375 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
14359849 0 3061 1686 +1375 p2porg_lido 0x8db2a99d... BloXroute Max Profit
14355000 5 3153 1779 +1374 0xb26f9666... BloXroute Max Profit
14358130 8 3208 1834 +1374 coinbase 0xb26f9666... BloXroute Regulated
14357697 0 3059 1686 +1373 p2porg 0x83d6a6ab... Flashbots
14359462 5 3150 1779 +1371 p2porg_lido 0x88a53ec4... BloXroute Regulated
14357418 3 3112 1742 +1370 p2porg_lido 0x8db2a99d... BloXroute Max Profit
14353257 6 3167 1797 +1370 p2porg 0xb26f9666... Titan Relay
14356956 0 3056 1686 +1370 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14356376 0 3055 1686 +1369 coinbase 0x9129eeb4... Ultra Sound
14355660 0 3054 1686 +1368 p2porg_lido 0x88a53ec4... BloXroute Max Profit
14353638 5 3146 1779 +1367 figment 0x8db2a99d... BloXroute Max Profit
14357939 5 3145 1779 +1366 whale_0x8ebd 0x853b0078... BloXroute Regulated
14356284 1 3071 1705 +1366 whale_0x8ebd 0xac09aa45... Flashbots
14359981 0 3052 1686 +1366 p2porg_lido 0x88a53ec4... BloXroute Max Profit
14354441 0 3052 1686 +1366 whale_0x8ebd 0xa230e2cf... BloXroute Max Profit
14358128 6 3162 1797 +1365 whale_0x8914 0xb67eaa5e... Titan Relay
14353738 0 3051 1686 +1365 p2porg 0x8527d16c... Ultra Sound
14357218 7 3180 1816 +1364 0xb67eaa5e... BloXroute Max Profit
14358018 6 3161 1797 +1364 bitstamp Local Local
14355734 6 3161 1797 +1364 0x8527d16c... Ultra Sound
14359471 2 3087 1723 +1364 coinbase 0x8527d16c... Ultra Sound
14357882 0 3049 1686 +1363 whale_0xedc6 0xb67eaa5e... Ultra Sound
14358362 0 3049 1686 +1363 p2porg_lido 0x96f44633... Flashbots
14358588 1 3067 1705 +1362 coinbase 0x8527d16c... Ultra Sound
14357718 0 3048 1686 +1362 p2porg 0x9129eeb4... Ultra Sound
14358158 5 3140 1779 +1361 p2porg 0x8db2a99d... BloXroute Max Profit
14355603 1 3066 1705 +1361 coinbase 0x8527d16c... Ultra Sound
14358472 8 3195 1834 +1361 whale_0x3878 Local Local
14357211 2 3084 1723 +1361 whale_0x8ebd Local Local
14356344 0 3046 1686 +1360 p2porg_lido 0x851b00b1... BloXroute Max Profit
14356254 0 3045 1686 +1359 whale_0x8ebd 0x8527d16c... Ultra Sound
14353580 1 3063 1705 +1358 coinbase 0xa230e2cf... BloXroute Max Profit
14353863 12 3266 1908 +1358 blockdaemon_lido 0x88857150... Ultra Sound
14354766 0 3043 1686 +1357 p2porg 0x853b0078... BloXroute Regulated
14358063 2 3079 1723 +1356 coinbase 0x856b0004... Aestus
14357543 1 3060 1705 +1355 coinbase 0xb26f9666... BloXroute Max Profit
14356713 14 3300 1945 +1355 coinbase 0xb26f9666... BloXroute Max Profit
14355673 9 3207 1853 +1354 p2porg 0x850b00e0... BloXroute Regulated
14356531 3 3096 1742 +1354 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14358607 12 3262 1908 +1354 p2porg 0x850b00e0... BloXroute Max Profit
14355895 6 3151 1797 +1354 blockdaemon 0x8db2a99d... Titan Relay
14356845 7 3169 1816 +1353 p2porg_lido 0x850b00e0... BloXroute Max Profit
14354015 0 3039 1686 +1353 p2porg_lido 0xa230e2cf... BloXroute Max Profit
14357608 12 3260 1908 +1352 coinbase 0xb26f9666... BloXroute Regulated
14358902 0 3038 1686 +1352 kiln 0x8527d16c... Ultra Sound
14355006 10 3222 1871 +1351 coinbase 0x8527d16c... Ultra Sound
14354744 6 3148 1797 +1351 whale_0x4b5e 0xb67eaa5e... Titan Relay
14357927 0 3037 1686 +1351 coinbase 0x8527d16c... Ultra Sound
14353587 3 3092 1742 +1350 coinbase 0x8527d16c... Ultra Sound
14354010 0 3036 1686 +1350 p2porg 0x8527d16c... Ultra Sound
14358539 0 3036 1686 +1350 coinbase 0xb67eaa5e... Ultra Sound
14359355 5 3128 1779 +1349 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14357007 1 3053 1705 +1348 kiln 0xb26f9666... BloXroute Regulated
14356412 3 3089 1742 +1347 whale_0x8ebd 0x8527d16c... Ultra Sound
14357249 0 3033 1686 +1347 p2porg_lido 0x851b00b1... BloXroute Max Profit
14358228 10 3217 1871 +1346 blockdaemon 0x8527d16c... Ultra Sound
14355767 4 3106 1760 +1346 p2porg 0x853b0078... BloXroute Max Profit
14355466 0 3032 1686 +1346 coinbase 0x8db2a99d... BloXroute Max Profit
14356585 1 3050 1705 +1345 kiln 0x850b00e0... BloXroute Max Profit
14356781 2 3067 1723 +1344 coinbase 0x9129eeb4... Ultra Sound
14355389 0 3030 1686 +1344 coinbase 0x805e28e6... Ultra Sound
14354459 0 3030 1686 +1344 p2porg_lido 0x96f44633... BloXroute Max Profit
14358936 4 3103 1760 +1343 coinbase 0xb67eaa5e... Ultra Sound
14356856 1 3046 1705 +1341 coinbase 0x856b0004... BloXroute Max Profit
14358122 1 3046 1705 +1341 p2porg 0xb26f9666... BloXroute Regulated
14357758 1 3045 1705 +1340 0x8db2a99d... BloXroute Max Profit
14355514 1 3045 1705 +1340 whale_0x8ebd 0xb26f9666... Ultra Sound
14354398 1 3045 1705 +1340 coinbase 0x823e0146... Flashbots
14355448 1 3045 1705 +1340 whale_0x8ebd 0xb26f9666... Ultra Sound
14359314 0 3026 1686 +1340 p2porg_lido 0x8db2a99d... Titan Relay
14353727 4 3099 1760 +1339 coinbase 0x8527d16c... Ultra Sound
14355070 3 3080 1742 +1338 coinbase 0x8527d16c... Ultra Sound
14359593 2 3059 1723 +1336 p2porg 0x8527d16c... Ultra Sound
14354819 0 3022 1686 +1336 solo_stakers 0x851b00b1... Ultra Sound
14355423 7 3151 1816 +1335 figment 0xb26f9666... Titan Relay
14355292 5 3114 1779 +1335 whale_0x8ebd 0xa230e2cf... BloXroute Regulated
14358356 5 3114 1779 +1335 kiln 0x850b00e0... BloXroute Max Profit
14358957 6 3132 1797 +1335 coinbase 0x856b0004... BloXroute Max Profit
14360142 6 3132 1797 +1335 coinbase Local Local
14353609 6 3132 1797 +1335 whale_0xedc6 0x853b0078... Ultra Sound
14356782 6 3132 1797 +1335 bitstamp 0x850b00e0... BloXroute Max Profit
14355261 2 3058 1723 +1335 0xa230e2cf... BloXroute Regulated
14357219 7 3150 1816 +1334 coinbase 0xb26f9666... BloXroute Regulated
14353297 1 3039 1705 +1334 figment 0x8527d16c... Ultra Sound
14359183 12 3242 1908 +1334 kiln 0xb26f9666... BloXroute Max Profit
14354886 0 3020 1686 +1334 p2porg 0x8db2a99d... BloXroute Max Profit
14355808 1 3038 1705 +1333 blockdaemon 0x8527d16c... Ultra Sound
14358059 11 3222 1890 +1332 p2porg_lido 0x88a53ec4... BloXroute Max Profit
14358719 5 3111 1779 +1332 p2porg 0xb26f9666... BloXroute Max Profit
14357935 0 3018 1686 +1332 whale_0xedc6 0x856b0004... Ultra Sound
14356668 0 3017 1686 +1331 coinbase 0x8527d16c... Ultra Sound
14354982 1 3035 1705 +1330 whale_0x8ebd 0x8db2a99d... Titan Relay
14354691 0 3016 1686 +1330 whale_0x8ebd 0x9129eeb4... Ultra Sound
14354436 5 3108 1779 +1329 p2porg 0xb26f9666... Titan Relay
14355148 8 3163 1834 +1329 p2porg_lido 0xb67eaa5e... BloXroute Max Profit
14353618 0 3015 1686 +1329 whale_0x8ebd 0x8527d16c... Ultra Sound
14359156 1 3033 1705 +1328 coinbase 0x856b0004... BloXroute Max Profit
14354777 7 3143 1816 +1327 whale_0x8914 0xb67eaa5e... Titan Relay
14358756 6 3124 1797 +1327 0xb26f9666... BloXroute Regulated
14359929 2 3050 1723 +1327 coinbase 0x88857150... Ultra Sound
14357589 2 3050 1723 +1327 coinbase 0x8527d16c... Ultra Sound
14355890 0 3013 1686 +1327 whale_0x8ebd 0x8527d16c... Ultra Sound
14355247 5 3105 1779 +1326 kiln Local Local
14357799 1 3031 1705 +1326 kiln 0x9129eeb4... Titan Relay
14353527 6 3123 1797 +1326 figment 0xb26f9666... Titan Relay
14353723 0 3012 1686 +1326 whale_0x8ebd 0x8527d16c... Ultra Sound
14359635 7 3141 1816 +1325 whale_0xfd67 0x88857150... Ultra Sound
14357719 5 3104 1779 +1325 bitstamp 0x850b00e0... BloXroute Max Profit
14359644 0 3011 1686 +1325 whale_0x8ebd 0xb26f9666... Titan Relay
14360266 11 3214 1890 +1324 p2porg_lido 0x88a53ec4... BloXroute Max Profit
14356235 11 3214 1890 +1324 kraken 0xb26f9666... EthGas
14357388 5 3103 1779 +1324 p2porg 0xb26f9666... BloXroute Max Profit
14358955 3 3066 1742 +1324 coinbase Local Local
14354891 3 3066 1742 +1324 coinbase 0xb67eaa5e... BloXroute Regulated
14359046 1 3029 1705 +1324 p2porg 0x88857150... Ultra Sound
14356255 0 3010 1686 +1324 whale_0x8ebd 0x9129eeb4... Ultra Sound
14360137 1 3028 1705 +1323 whale_0xedc6 0xb26f9666... BloXroute Max Profit
14358867 1 3028 1705 +1323 whale_0x8ebd 0x8527d16c... Ultra Sound
14357286 10 3194 1871 +1323 coinbase 0x88a53ec4... BloXroute Regulated
14356803 1 3026 1705 +1321 everstake 0xb26f9666... Titan Relay
14358608 5 3099 1779 +1320 coinbase Local Local
14359101 6 3117 1797 +1320 coinbase 0x88a53ec4... BloXroute Regulated
14358360 3 3061 1742 +1319 kiln 0xb26f9666... BloXroute Regulated
14353386 5 3096 1779 +1317 whale_0x8ebd 0x8527d16c... Ultra Sound
14353674 2 3040 1723 +1317 kiln 0xb67eaa5e... BloXroute Regulated
14360205 9 3167 1853 +1314 whale_0x3878 0xb67eaa5e... Titan Relay
14359240 0 3000 1686 +1314 coinbase 0x857b0038... BloXroute Regulated
14355203 7 3129 1816 +1313 coinbase 0xb26f9666... Ultra Sound
14359796 6 3110 1797 +1313 p2porg 0x856b0004... BloXroute Max Profit
14353832 6 3109 1797 +1312 coinbase 0x88857150... Ultra Sound
14355312 7 3127 1816 +1311 coinbase 0x8527d16c... Ultra Sound
14356197 7 3127 1816 +1311 whale_0x8ebd 0x8527d16c... Ultra Sound
14359207 5 3090 1779 +1311 coinbase 0x823e0146... Flashbots
14359378 3 3053 1742 +1311 kiln 0x88a53ec4... BloXroute Max Profit
14357104 6 3108 1797 +1311 0x8527d16c... Ultra Sound
14356201 6 3108 1797 +1311 p2porg 0x853b0078... BloXroute Max Profit
14353409 11 3200 1890 +1310 coinbase Local Local
14358663 0 2996 1686 +1310 bitstamp 0x851b00b1... BloXroute Max Profit
14359585 0 2996 1686 +1310 0x8527d16c... Ultra Sound
14358861 3 3051 1742 +1309 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14357677 5 3087 1779 +1308 p2porg 0xb26f9666... BloXroute Regulated
14359935 13 3230 1927 +1303 coinbase 0xb67eaa5e... BloXroute Regulated
14358706 5 3081 1779 +1302 coinbase 0x8527d16c... Ultra Sound
14354592 0 2988 1686 +1302 everstake 0x8527d16c... Ultra Sound
14353596 10 3172 1871 +1301 whale_0x8ebd 0x8527d16c... Ultra Sound
14357788 6 3098 1797 +1301 kiln 0xb26f9666... Aestus
14355391 3 3040 1742 +1298 coinbase 0xb26f9666... BloXroute Regulated
14357740 3 3040 1742 +1298 coinbase 0x823e0146... Ultra Sound
14358381 4 3057 1760 +1297 coinbase Local Local
14356433 0 2983 1686 +1297 kiln 0x88a53ec4... BloXroute Max Profit
14356594 0 2983 1686 +1297 kiln 0x853b0078... BloXroute Max Profit
14353531 5 3074 1779 +1295 figment 0x853b0078... BloXroute Max Profit
14359112 4 3055 1760 +1295 whale_0x8ebd 0x8db2a99d... Ultra Sound
14356493 13 3221 1927 +1294 p2porg 0x9129eeb4... Ultra Sound
14359260 2 3017 1723 +1294 coinbase 0x8527d16c... Ultra Sound
14355607 5 3072 1779 +1293 kiln 0x8527d16c... Ultra Sound
14354137 1 2998 1705 +1293 kiln 0x856b0004... BloXroute Max Profit
14359191 10 3164 1871 +1293 gateway.fmas_lido 0x857b0038... BloXroute Regulated
14357451 0 2978 1686 +1292 bitstamp 0x851b00b1... BloXroute Max Profit
14354059 6 3088 1797 +1291 whale_0x8ebd 0xb26f9666... Titan Relay
14355985 0 2977 1686 +1291 bitstamp 0x850b00e0... Flashbots
14355865 5 3069 1779 +1290 whale_0x8ebd 0x8527d16c... Ultra Sound
14354052 1 2995 1705 +1290 kiln 0xa230e2cf... BloXroute Max Profit
14354702 0 2976 1686 +1290 whale_0x87b6 0xb4ce6162... Ultra Sound
14356941 8 3123 1834 +1289 kiln 0xb26f9666... BloXroute Regulated
14354108 6 3086 1797 +1289 kiln 0xa230e2cf... Ultra Sound
14360015 0 2975 1686 +1289 whale_0x8ebd 0x8527d16c... Ultra Sound
14358866 5 3067 1779 +1288 kiln 0x8527d16c... Ultra Sound
14357588 13 3214 1927 +1287 p2porg 0xb26f9666... Titan Relay
14359057 1 2992 1705 +1287 kiln 0x8527d16c... Ultra Sound
14355536 0 2973 1686 +1287 coinbase 0x9129eeb4... Ultra Sound
14355477 4 3044 1760 +1284 whale_0x8ebd 0xb4ce6162... Ultra Sound
14356479 6 3080 1797 +1283 coinbase 0x8527d16c... Ultra Sound
14358296 0 2969 1686 +1283 0xba003e46... Ultra Sound
14353544 1 2987 1705 +1282 coinbase 0xa230e2cf... BloXroute Max Profit
14354960 6 3079 1797 +1282 kiln 0xb26f9666... BloXroute Max Profit
14359930 7 3097 1816 +1281 coinbase 0xb67eaa5e... BloXroute Max Profit
14357012 7 3097 1816 +1281 everstake 0xb7c5e609... BloXroute Max Profit
14356375 3 3023 1742 +1281 kiln 0x9129eeb4... Ultra Sound
14353801 6 3078 1797 +1281 coinbase 0x88857150... Ultra Sound
14358454 4 3041 1760 +1281 kiln 0x856b0004... BloXroute Max Profit
14354690 0 2967 1686 +1281 kiln 0xa230e2cf... BloXroute Max Profit
14359287 0 2967 1686 +1281 kiln 0xb26f9666... BloXroute Max Profit
14357922 10 3151 1871 +1280 0x8527d16c... Ultra Sound
14359964 0 2966 1686 +1280 stader 0x88a53ec4... BloXroute Max Profit
14354112 5 3058 1779 +1279 everstake 0xb67eaa5e... BloXroute Regulated
14358441 1 2984 1705 +1279 kiln 0x8db2a99d... BloXroute Max Profit
14355977 1 2983 1705 +1278 coinbase 0x823e0146... Flashbots
14354180 4 3038 1760 +1278 bitstamp 0x853b0078... BloXroute Max Profit
14353506 0 2964 1686 +1278 coinbase 0xb67eaa5e... BloXroute Regulated
14356228 1 2982 1705 +1277 whale_0x8ebd 0x8527d16c... Ultra Sound
14356308 11 3166 1890 +1276 whale_0x8ebd 0x8527d16c... Ultra Sound
14358753 1 2981 1705 +1276 whale_0x8ebd 0x88857150... Ultra Sound
14359385 2 2999 1723 +1276 kiln 0xb26f9666... BloXroute Max Profit
14353298 0 2962 1686 +1276 kiln 0x8527d16c... Ultra Sound
14357798 13 3202 1927 +1275 kiln 0x88a53ec4... BloXroute Max Profit
14353559 9 3128 1853 +1275 whale_0x8ebd 0xb67eaa5e... Ultra Sound
14357435 5 3054 1779 +1275 p2porg 0x8527d16c... Ultra Sound
14355693 6 3071 1797 +1274 p2porg 0x8527d16c... Ultra Sound
14358040 6 3071 1797 +1274 coinbase Local Local
14354641 2 2997 1723 +1274 kiln 0x8527d16c... Ultra Sound
14353729 7 3089 1816 +1273 whale_0x8ebd 0x8527d16c... Ultra Sound
14356607 8 3107 1834 +1273 p2porg 0xb26f9666... BloXroute Max Profit
14354533 0 2959 1686 +1273 everstake 0xb26f9666... Titan Relay
14358542 5 3051 1779 +1272 kiln 0x8527d16c... Ultra Sound
14357609 0 2958 1686 +1272 everstake 0x8db2a99d... Ultra Sound
14354229 1 2976 1705 +1271 bitstamp 0xb67eaa5e... BloXroute Max Profit
14359834 10 3142 1871 +1271 coinbase 0xb26f9666... BloXroute Max Profit
14355516 8 3105 1834 +1271 kiln 0xb26f9666... Ultra Sound
14359412 11 3160 1890 +1270 coinbase 0x8527d16c... Ultra Sound
14353869 3 3011 1742 +1269 kiln 0x8527d16c... Ultra Sound
14354567 0 2955 1686 +1269 kiln 0x8527d16c... Ultra Sound
14359258 6 3065 1797 +1268 p2porg 0xb26f9666... BloXroute Max Profit
14353634 0 2954 1686 +1268 kiln 0xa230e2cf... BloXroute Max Profit
14355523 0 2953 1686 +1267 everstake 0xb26f9666... Titan Relay
14355809 0 2953 1686 +1267 everstake 0x853b0078... BloXroute Max Profit
14358447 6 3063 1797 +1266 everstake 0xb7c5e609... BloXroute Regulated
14357976 2 2989 1723 +1266 solo_stakers 0xb26f9666... BloXroute Regulated
14353710 0 2952 1686 +1266 kiln 0x8527d16c... Ultra Sound
14358988 0 2952 1686 +1266 everstake 0x805e28e6... Ultra Sound
14359418 0 2952 1686 +1266 kiln 0xb67eaa5e... Ultra Sound
14359917 9 3118 1853 +1265 kiln 0xb26f9666... BloXroute Regulated
14355522 1 2967 1705 +1262 0x8527d16c... Ultra Sound
14353294 6 3059 1797 +1262 p2porg 0xb26f9666... BloXroute Max Profit
14355698 6 3058 1797 +1261 coinbase 0xa965c911... Ultra Sound
14359583 6 3058 1797 +1261 whale_0x8ebd 0x853b0078... BloXroute Max Profit
14356873 5 3039 1779 +1260 coinbase 0x8527d16c... Ultra Sound
14354072 3 3002 1742 +1260 kiln 0x9129eeb4... Ultra Sound
14354722 0 2946 1686 +1260 kiln 0x9129eeb4... Ultra Sound
14357818 6 3056 1797 +1259 p2porg 0xb26f9666... BloXroute Max Profit
14354218 0 2945 1686 +1259 kiln 0x8527d16c... Ultra Sound
14357598 5 3035 1779 +1256 everstake 0x88a53ec4... BloXroute Regulated
14359491 6 3053 1797 +1256 kiln 0x853b0078... BloXroute Max Profit
14353252 9 3108 1853 +1255 p2porg 0x853b0078... Ultra Sound
14356568 5 3034 1779 +1255 kiln 0x8527d16c... Ultra Sound
14358206 1 2960 1705 +1255 kiln 0x823e0146... Flashbots
14356703 0 2940 1686 +1254 coinbase 0xb26f9666... BloXroute Regulated
14355119 5 3032 1779 +1253 coinbase 0xb26f9666... Ultra Sound
14356372 1 2958 1705 +1253 kiln 0x856b0004... BloXroute Max Profit
14359164 1 2958 1705 +1253 kiln 0x823e0146... BloXroute Max Profit
14354991 2 2976 1723 +1253 kiln 0xb26f9666... Aestus
14354466 1 2957 1705 +1252 kiln 0x8527d16c... Ultra Sound
14357704 0 2938 1686 +1252 bitstamp 0x850b00e0... BloXroute Max Profit
14356216 0 2938 1686 +1252 everstake 0x8db2a99d... Ultra Sound
14353310 8 3083 1834 +1249 abyss_finance 0xb67eaa5e... Ultra Sound
14358691 5 3027 1779 +1248 whale_0x8ebd 0x8527d16c... Ultra Sound
14359523 3 2990 1742 +1248 kiln 0x853b0078... BloXroute Max Profit
14359356 1 2953 1705 +1248 p2porg 0xac23f8cc... BloXroute Max Profit
Total anomalies: 511

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