Sun, May 10, 2026

Propagation anomalies - 2026-05-10

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

print(f"Total valid blocks: {len(df):,}")
print(f"MEV blocks: {df['has_mev'].sum():,} ({df['has_mev'].mean()*100:.1f}%)")
print(f"Local blocks: {(~df['has_mev']).sum():,} ({(~df['has_mev']).mean()*100:.1f}%)")
Total valid blocks: 7,183
MEV blocks: 6,742 (93.9%)
Local blocks: 441 (6.1%)

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 = 1682.4 + 16.82 × blob_count (R² = 0.007)
Residual σ = 645.1ms
Anomalies (>2σ slow): 394 (5.5%)
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
14298513 0 17174 1682 +15492 whale_0x3212 Local Local
14302126 0 12982 1682 +11300 whale_0x3212 Local Local
14297920 0 8115 1682 +6433 whale_0x1435 Local Local
14298848 0 7088 1682 +5406 upbit Local Local
14301888 0 6954 1682 +5272 upbit Local Local
14300448 0 6645 1682 +4963 upbit Local Local
14296160 0 6204 1682 +4522 upbit Local Local
14301787 0 5840 1682 +4158 solo_stakers Local Local
14297440 0 4371 1682 +2689 blockdaemon_lido Local Local
14299730 0 3896 1682 +2214 coinbase Local Local
14295777 6 3899 1783 +2116 lido Local Local
14300092 1 3700 1699 +2001 lido 0x88857150... Ultra Sound
14295717 1 3628 1699 +1929 lido 0x8527d16c... Ultra Sound
14299669 1 3580 1699 +1881 solo_stakers 0x850b00e0... Flashbots
14301969 6 3613 1783 +1830 blockdaemon 0x88a53ec4... BloXroute Regulated
14297966 6 3611 1783 +1828 stakefish 0x88857150... Ultra Sound
14297332 5 3538 1766 +1772 whale_0xdc8d 0x850b00e0... BloXroute Max Profit
14301101 1 3454 1699 +1755 blockdaemon 0x857b0038... BloXroute Max Profit
14301605 0 3409 1682 +1727 blockdaemon_lido 0x851b00b1... Ultra Sound
14296112 0 3407 1682 +1725 blockdaemon 0xb4ce6162... Ultra Sound
14296335 1 3414 1699 +1715 blockdaemon 0xb4ce6162... Ultra Sound
14297479 1 3412 1699 +1713 whale_0xdc8d 0xb26f9666... Titan Relay
14301095 5 3478 1766 +1712 nethermind_lido 0x853b0078... BloXroute Max Profit
14300283 5 3471 1766 +1705 ether.fi 0x850b00e0... Flashbots
14300960 8 3508 1817 +1691 bitstamp 0xb67eaa5e... BloXroute Max Profit
14299382 0 3370 1682 +1688 blockdaemon 0xb4ce6162... Ultra Sound
14296707 4 3437 1750 +1687 blockdaemon_lido 0x856b0004... BloXroute Max Profit
14300422 0 3365 1682 +1683 blockdaemon 0xb26f9666... Titan Relay
14300576 0 3359 1682 +1677 bitstamp 0x851b00b1... BloXroute Max Profit
14298185 0 3353 1682 +1671 whale_0xdc8d 0x823e0146... BloXroute Max Profit
14295870 1 3368 1699 +1669 p2porg 0x88857150... Ultra Sound
14298704 2 3380 1716 +1664 blockdaemon_lido 0x8db2a99d... BloXroute Regulated
14301675 6 3445 1783 +1662 blockdaemon 0x850b00e0... BloXroute Max Profit
14297950 1 3353 1699 +1654 blockdaemon 0xb67eaa5e... BloXroute Max Profit
14300218 1 3350 1699 +1651 blockdaemon 0xa965c911... Ultra Sound
14302410 0 3333 1682 +1651 blockdaemon_lido 0x88857150... Ultra Sound
14300905 6 3433 1783 +1650 whale_0xdc8d 0x8527d16c... Ultra Sound
14295764 0 3324 1682 +1642 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
14299046 6 3422 1783 +1639 blockdaemon 0x850b00e0... BloXroute Max Profit
14297797 0 3321 1682 +1639 blockdaemon 0x857b0038... Ultra Sound
14295662 3 3371 1733 +1638 blockdaemon 0x88a53ec4... BloXroute Regulated
14296278 0 3317 1682 +1635 blockdaemon_lido 0xb26f9666... Titan Relay
14296257 8 3450 1817 +1633 blockdaemon 0xb4ce6162... Ultra Sound
14296186 1 3331 1699 +1632 blockdaemon 0x850b00e0... BloXroute Max Profit
14295942 0 3314 1682 +1632 luno 0xb26f9666... Titan Relay
14296551 5 3398 1766 +1632 blockdaemon 0xb67eaa5e... BloXroute Regulated
14301666 3 3356 1733 +1623 whale_0xdc8d 0xb67eaa5e... BloXroute Max Profit
14302560 0 3303 1682 +1621 whale_0x8914 0x851b00b1... Ultra Sound
14297121 0 3302 1682 +1620 whale_0x8914 0x851b00b1... Ultra Sound
14302372 1 3316 1699 +1617 blockdaemon 0xb67eaa5e... BloXroute Regulated
14302558 0 3299 1682 +1617 whale_0xdc8d 0x88a53ec4... BloXroute Regulated
14297131 5 3383 1766 +1617 blockdaemon 0x850b00e0... BloXroute Max Profit
14301406 1 3314 1699 +1615 luno 0x8527d16c... Ultra Sound
14297472 1 3313 1699 +1614 whale_0x23be 0xb26f9666... Aestus
14300171 1 3312 1699 +1613 blockdaemon 0x88857150... Ultra Sound
14302055 0 3295 1682 +1613 blockdaemon_lido 0x856b0004... BloXroute Max Profit
14302331 3 3344 1733 +1611 whale_0xdc8d 0x8527d16c... Ultra Sound
14301255 2 3327 1716 +1611 whale_0xdc8d 0x8527d16c... Ultra Sound
14298496 6 3394 1783 +1611 blockdaemon 0x8527d16c... Ultra Sound
14298292 4 3358 1750 +1608 blockdaemon 0x823e0146... Ultra Sound
14295904 0 3289 1682 +1607 whale_0xedc6 0xa965c911... Ultra Sound
14299181 0 3288 1682 +1606 luno 0x8527d16c... Ultra Sound
14299569 6 3387 1783 +1604 luno 0xb67eaa5e... BloXroute Max Profit
14297205 4 3346 1750 +1596 blockdaemon_lido 0x850b00e0... Titan Relay
14300537 6 3379 1783 +1596 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
14302724 5 3361 1766 +1595 whale_0xdc8d 0x8527d16c... Ultra Sound
14300384 0 3273 1682 +1591 p2porg 0xb26f9666... BloXroute Max Profit
14302133 0 3273 1682 +1591 blockdaemon 0x823e0146... BloXroute Max Profit
14302345 4 3340 1750 +1590 blockdaemon 0x853b0078... BloXroute Max Profit
14298849 4 3333 1750 +1583 kiln Local Local
14298641 1 3280 1699 +1581 blockdaemon_lido 0x8527d16c... Ultra Sound
14296519 8 3396 1817 +1579 blockdaemon 0x8527d16c... Ultra Sound
14297807 11 3442 1867 +1575 blockdaemon 0xb67eaa5e... BloXroute Regulated
14299731 0 3257 1682 +1575 whale_0xdc8d 0x8a2a4361... Ultra Sound
14299470 3 3307 1733 +1574 blockdaemon_lido 0xb26f9666... Titan Relay
14299325 5 3336 1766 +1570 whale_0xdc8d 0x8527d16c... Ultra Sound
14298304 7 3368 1800 +1568 p2porg 0x850b00e0... BloXroute Regulated
14295757 5 3334 1766 +1568 blockdaemon_lido 0xb4ce6162... Ultra Sound
14300633 0 3246 1682 +1564 blockdaemon 0x8527d16c... Ultra Sound
14301356 3 3295 1733 +1562 blockdaemon_lido 0xa965c911... Ultra Sound
14297544 7 3362 1800 +1562 blockdaemon 0xb26f9666... Titan Relay
14295873 6 3344 1783 +1561 blockdaemon 0xb26f9666... Titan Relay
14302467 6 3343 1783 +1560 0x8527d16c... Ultra Sound
14296780 5 3326 1766 +1560 solo_stakers 0x857b0038... BloXroute Max Profit
14301699 4 3309 1750 +1559 whale_0xf273 0xb67eaa5e... Titan Relay
14302158 7 3356 1800 +1556 revolut 0xb67eaa5e... BloXroute Max Profit
14299328 0 3238 1682 +1556 ether.fi 0x857b0038... BloXroute Max Profit
14300175 1 3254 1699 +1555 revolut 0xb26f9666... Titan Relay
14299868 2 3268 1716 +1552 0x856b0004... BloXroute Max Profit
14299566 0 3229 1682 +1547 blockdaemon_lido 0x8527d16c... Ultra Sound
14300677 0 3229 1682 +1547 revolut 0x8527d16c... Ultra Sound
14296033 0 3226 1682 +1544 whale_0x8914 0xb67eaa5e... Titan Relay
14302533 11 3409 1867 +1542 revolut 0xb67eaa5e... BloXroute Max Profit
14297527 0 3220 1682 +1538 blockdaemon 0x88857150... Ultra Sound
14302510 7 3336 1800 +1536 whale_0xdc8d 0x8527d16c... Ultra Sound
14301613 1 3235 1699 +1536 p2porg 0x850b00e0... Titan Relay
14297397 0 3214 1682 +1532 whale_0x8914 0xb67eaa5e... Titan Relay
14300354 0 3212 1682 +1530 blockdaemon 0x850b00e0... BloXroute Max Profit
14300664 3 3262 1733 +1529 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
14299991 1 3228 1699 +1529 solo_stakers Local Local
14301806 0 3209 1682 +1527 blockdaemon 0xb67eaa5e... BloXroute Max Profit
14296646 5 3293 1766 +1527 whale_0xdc8d 0x8527d16c... Ultra Sound
14300892 0 3208 1682 +1526 whale_0xc611 0x8db2a99d... Ultra Sound
14297909 0 3205 1682 +1523 blockdaemon_lido 0x805e28e6... BloXroute Max Profit
14297399 1 3221 1699 +1522 whale_0x8914 0xb67eaa5e... Titan Relay
14302075 0 3204 1682 +1522 whale_0x4b5e 0xa965c911... Ultra Sound
14297061 8 3338 1817 +1521 blockdaemon_lido 0xb26f9666... Titan Relay
14301066 1 3220 1699 +1521 revolut 0x853b0078... BloXroute Max Profit
14302722 12 3404 1884 +1520 0xb4ce6162... Ultra Sound
14299722 0 3202 1682 +1520 whale_0x8914 0x88857150... Ultra Sound
14296622 7 3318 1800 +1518 blockdaemon 0x8527d16c... Ultra Sound
14298098 3 3250 1733 +1517 p2porg 0x850b00e0... BloXroute Regulated
14299798 0 3197 1682 +1515 p2porg 0x850b00e0... BloXroute Regulated
14299892 13 3415 1901 +1514 blockdaemon 0xb67eaa5e... BloXroute Max Profit
14296002 0 3196 1682 +1514 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
14301128 0 3194 1682 +1512 blockdaemon_lido 0x8527d16c... Ultra Sound
14301884 10 3361 1851 +1510 bitstamp 0x850b00e0... BloXroute Max Profit
14297410 1 3207 1699 +1508 blockdaemon 0xb26f9666... Titan Relay
14301883 1 3207 1699 +1508 p2porg 0x850b00e0... Ultra Sound
14299517 0 3188 1682 +1506 whale_0x8914 0x851b00b1... Ultra Sound
14301157 6 3285 1783 +1502 whale_0x8914 0x8db2a99d... Ultra Sound
14301598 1 3200 1699 +1501 everstake 0x857b0038... BloXroute Regulated
14299877 9 3331 1834 +1497 revolut 0x8527d16c... Ultra Sound
14297272 1 3191 1699 +1492 whale_0x8914 0xb67eaa5e... Titan Relay
14300161 0 3173 1682 +1491 blockdaemon_lido 0x851b00b1... BloXroute Max Profit
14296958 1 3189 1699 +1490 coinbase 0x8527d16c... Ultra Sound
14296739 0 3166 1682 +1484 whale_0x8914 0x851b00b1... Ultra Sound
14302578 1 3182 1699 +1483 whale_0xfd67 0xb67eaa5e... Titan Relay
14297980 1 3182 1699 +1483 whale_0x8ebd 0x88857150... Ultra Sound
14300769 1 3181 1699 +1482 gateway.fmas_lido 0x850b00e0... BloXroute Regulated
14295967 1 3181 1699 +1482 whale_0x8ebd 0x8527d16c... Ultra Sound
14299309 5 3247 1766 +1481 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14302401 0 3159 1682 +1477 whale_0x8914 0x851b00b1... Ultra Sound
14297213 3 3204 1733 +1471 p2porg 0x850b00e0... BloXroute Regulated
14300973 4 3217 1750 +1467 whale_0x8914 0xb67eaa5e... Titan Relay
14302139 6 3248 1783 +1465 whale_0x3878 0xb67eaa5e... BloXroute Regulated
14298709 1 3159 1699 +1460 whale_0xfd67 0x850b00e0... Aestus
14301873 0 3138 1682 +1456 whale_0xba40 0xb67eaa5e... Titan Relay
14298346 0 3129 1682 +1447 p2porg 0xb26f9666... Titan Relay
14300754 3 3179 1733 +1446 whale_0xfd67 0x8527d16c... Ultra Sound
14300648 1 3142 1699 +1443 gateway.fmas_lido 0x8527d16c... Ultra Sound
14295948 5 3209 1766 +1443 whale_0x8914 0xb67eaa5e... Titan Relay
14299332 3 3175 1733 +1442 whale_0x8914 0xb67eaa5e... Titan Relay
14299489 0 3124 1682 +1442 solo_stakers 0x88510a78... Flashbots
14298568 0 3123 1682 +1441 revolut 0x96f44633... BloXroute Max Profit
14296615 1 3137 1699 +1438 0xb26f9666... Titan Relay
14301452 0 3120 1682 +1438 solo_stakers 0x88857150... Ultra Sound
14299521 1 3136 1699 +1437 p2porg 0xb26f9666... Titan Relay
14302391 0 3119 1682 +1437 whale_0xfd67 0x8527d16c... Ultra Sound
14299304 0 3118 1682 +1436 whale_0x8ebd 0x851b00b1... BloXroute Max Profit
14302545 2 3151 1716 +1435 figment 0xb26f9666... BloXroute Max Profit
14297233 0 3117 1682 +1435 coinbase 0x8527d16c... Ultra Sound
14302475 0 3116 1682 +1434 coinbase 0x88a53ec4... BloXroute Regulated
14301825 6 3216 1783 +1433 whale_0xedc6 0x856b0004... Ultra Sound
14296689 0 3115 1682 +1433 revolut 0x805e28e6... Ultra Sound
14302759 6 3215 1783 +1432 whale_0x8ebd 0x88857150... Ultra Sound
14301572 0 3112 1682 +1430 coinbase 0x8527d16c... Ultra Sound
14299838 1 3125 1699 +1426 whale_0x8914 0xb67eaa5e... BloXroute Max Profit
14300756 6 3207 1783 +1424 p2porg 0x850b00e0... BloXroute Regulated
14298153 6 3207 1783 +1424 blockdaemon_lido Local Local
14298061 0 3106 1682 +1424 whale_0x8ebd 0x83d6a6ab... Flashbots
14296681 3 3155 1733 +1422 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14302607 1 3121 1699 +1422 blockdaemon_lido 0xb26f9666... Titan Relay
14300176 0 3103 1682 +1421 whale_0x8ebd 0x8527d16c... Ultra Sound
14301322 1 3116 1699 +1417 p2porg 0x850b00e0... BloXroute Regulated
14296882 0 3099 1682 +1417 p2porg 0x850b00e0... BloXroute Regulated
14295853 4 3164 1750 +1414 p2porg 0x856b0004... Ultra Sound
14295937 6 3195 1783 +1412 gateway.fmas_lido 0x8db2a99d... Ultra Sound
14299422 0 3092 1682 +1410 whale_0x8ebd 0xb26f9666... Titan Relay
14296857 3 3141 1733 +1408 0x850b00e0... BloXroute Max Profit
14302051 1 3107 1699 +1408 coinbase 0x8527d16c... Ultra Sound
14299804 2 3123 1716 +1407 p2porg 0x8527d16c... Ultra Sound
14300685 1 3106 1699 +1407 whale_0x8ebd 0x8527d16c... Ultra Sound
14300057 3 3139 1733 +1406 kiln 0x8527d16c... Ultra Sound
14297450 1 3105 1699 +1406 coinbase 0x8527d16c... Ultra Sound
14298913 0 3087 1682 +1405 figment 0x88a53ec4... BloXroute Max Profit
14297870 0 3086 1682 +1404 whale_0x8ebd 0x853b0078... BloXroute Max Profit
14301607 0 3086 1682 +1404 whale_0x8ebd 0x8527d16c... Ultra Sound
14300027 1 3101 1699 +1402 blockdaemon 0x856b0004... BloXroute Max Profit
14301650 1 3101 1699 +1402 whale_0x8ebd 0x8527d16c... Ultra Sound
14302709 0 3084 1682 +1402 whale_0x4b5e 0xb67eaa5e... BloXroute Max Profit
14297227 2 3117 1716 +1401 p2porg 0x853b0078... BloXroute Max Profit
14301593 0 3080 1682 +1398 p2porg 0x9129eeb4... Ultra Sound
14297067 1 3096 1699 +1397 blockdaemon_lido 0xb26f9666... Titan Relay
14300991 5 3163 1766 +1397 bitstamp 0x823e0146... BloXroute Max Profit
14300415 1 3094 1699 +1395 coinbase 0x853b0078... BloXroute Max Profit
14301953 1 3094 1699 +1395 coinbase 0x8527d16c... Ultra Sound
14302701 6 3176 1783 +1393 kiln 0xb67eaa5e... BloXroute Max Profit
14301551 0 3075 1682 +1393 0x853b0078... Ultra Sound
14297528 0 3073 1682 +1391 p2porg 0xb26f9666... Titan Relay
14301954 5 3157 1766 +1391 p2porg 0x853b0078... BloXroute Max Profit
14299317 2 3106 1716 +1390 figment 0xb26f9666... Titan Relay
14295986 0 3072 1682 +1390 whale_0x8ebd 0x823e0146... Ultra Sound
14297425 0 3072 1682 +1390 whale_0x8914 0x8a2d9d9a... Ultra Sound
14297318 4 3139 1750 +1389 coinbase 0x8527d16c... Ultra Sound
14299476 2 3105 1716 +1389 p2porg 0xb26f9666... Titan Relay
14300241 7 3189 1800 +1389 coinbase 0xb67eaa5e... BloXroute Regulated
14300779 1 3088 1699 +1389 coinbase 0x88857150... Ultra Sound
14295899 1 3088 1699 +1389 whale_0x8ebd 0xb26f9666... Titan Relay
14300302 0 3071 1682 +1389 0x856b0004... Ultra Sound
14299050 5 3155 1766 +1389 coinbase 0xb26f9666... BloXroute Max Profit
14298145 5 3154 1766 +1388 coinbase 0x88a53ec4... BloXroute Regulated
14298947 1 3086 1699 +1387 p2porg 0x853b0078... BloXroute Max Profit
14297236 1 3086 1699 +1387 kiln 0xb26f9666... BloXroute Max Profit
14297057 0 3068 1682 +1386 blockdaemon 0x926b7905... BloXroute Max Profit
14298374 5 3151 1766 +1385 whale_0x75ff 0x823e0146... Ultra Sound
14300930 6 3167 1783 +1384 whale_0x8ebd 0x8527d16c... Ultra Sound
14296481 1 3082 1699 +1383 whale_0x8ebd 0x85fb0503... Aestus
14298379 3 3115 1733 +1382 whale_0xedc6 0xb26f9666... BloXroute Max Profit
14298450 1 3081 1699 +1382 whale_0xedc6 0xb26f9666... BloXroute Max Profit
14302361 0 3064 1682 +1382 whale_0xedc6 0x88cd924c... Flashbots
14298923 5 3147 1766 +1381 blockdaemon_lido 0x8db2a99d... Titan Relay
14299365 3 3113 1733 +1380 kiln 0x850b00e0... BloXroute Max Profit
14296059 2 3095 1716 +1379 whale_0x8ebd 0xac09aa45... Flashbots
14297288 5 3144 1766 +1378 kiln 0xb67eaa5e... BloXroute Max Profit
14297686 14 3295 1918 +1377 blockdaemon_lido 0xb4ce6162... Ultra Sound
14297019 3 3110 1733 +1377 whale_0x8ebd 0x8527d16c... Ultra Sound
14299843 1 3074 1699 +1375 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14296308 1 3074 1699 +1375 0x856b0004... BloXroute Max Profit
14301932 0 3056 1682 +1374 coinbase 0xb67eaa5e... BloXroute Max Profit
14296215 5 3140 1766 +1374 kiln 0x88a53ec4... BloXroute Regulated
14302163 0 3055 1682 +1373 whale_0x8ebd 0xb26f9666... Titan Relay
14300608 1 3071 1699 +1372 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14302145 0 3054 1682 +1372 p2porg 0x853b0078... BloXroute Max Profit
14296021 10 3222 1851 +1371 whale_0x8ebd Local Local
14301159 1 3069 1699 +1370 whale_0x8ebd 0x8527d16c... Ultra Sound
14296643 5 3136 1766 +1370 whale_0x8914 0x88a53ec4... BloXroute Regulated
14299996 0 3051 1682 +1369 coinbase 0x8527d16c... Ultra Sound
14302482 3 3101 1733 +1368 kiln 0xb26f9666... BloXroute Max Profit
14300957 1 3067 1699 +1368 whale_0x8ebd 0x9129eeb4... Ultra Sound
14296960 0 3050 1682 +1368 whale_0x8ebd 0xb26f9666... Titan Relay
14297059 0 3050 1682 +1368 coinbase 0xb26f9666... Titan Relay
14302515 5 3133 1766 +1367 coinbase 0x823e0146... BloXroute Max Profit
14300696 0 3048 1682 +1366 coinbase 0x8527d16c... Ultra Sound
14299063 0 3048 1682 +1366 coinbase 0xb26f9666... Titan Relay
14296394 5 3132 1766 +1366 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
14302720 2 3081 1716 +1365 whale_0x8ebd 0x8527d16c... Ultra Sound
14302702 2 3081 1716 +1365 p2porg 0x823e0146... BloXroute Max Profit
14298965 2 3081 1716 +1365 0x856b0004... BloXroute Max Profit
14300615 2 3080 1716 +1364 p2porg 0x856b0004... Ultra Sound
14301190 1 3063 1699 +1364 kiln 0xb26f9666... BloXroute Regulated
14302093 0 3046 1682 +1364 whale_0x8ebd 0x8527d16c... Ultra Sound
14298958 5 3130 1766 +1364 figment 0xb26f9666... BloXroute Max Profit
14299425 2 3079 1716 +1363 p2porg 0xb26f9666... Titan Relay
14295735 2 3079 1716 +1363 p2porg 0x8db2a99d... Titan Relay
14301209 1 3062 1699 +1363 figment 0x8527d16c... Ultra Sound
14298914 1 3061 1699 +1362 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14296476 0 3044 1682 +1362 p2porg 0x853b0078... BloXroute Max Profit
14298294 5 3128 1766 +1362 solo_stakers 0xb4ce6162... Ultra Sound
14302370 5 3128 1766 +1362 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14299281 1 3060 1699 +1361 p2porg 0x856b0004... BloXroute Max Profit
14301038 0 3043 1682 +1361 coinbase 0x823e0146... BloXroute Max Profit
14298929 5 3127 1766 +1361 p2porg 0x823e0146... Ultra Sound
14301690 10 3211 1851 +1360 whale_0xfd67 0x88a53ec4... Aestus
14298901 0 3042 1682 +1360 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14300366 1 3058 1699 +1359 whale_0x8ebd 0xb26f9666... Ultra Sound
14299765 0 3041 1682 +1359 whale_0x8ebd 0x8527d16c... Ultra Sound
14297714 2 3074 1716 +1358 whale_0x8ebd 0x8527d16c... Ultra Sound
14299939 0 3040 1682 +1358 coinbase 0x8527d16c... Ultra Sound
14297043 0 3040 1682 +1358 whale_0x8ebd 0xb4ce6162... Ultra Sound
14302324 2 3073 1716 +1357 coinbase 0x8527d16c... Ultra Sound
14300160 5 3123 1766 +1357 0xb26f9666... Titan Relay
14299393 0 3038 1682 +1356 0x8db2a99d... BloXroute Max Profit
14298932 2 3071 1716 +1355 whale_0x8ebd 0x8527d16c... Ultra Sound
14299778 1 3054 1699 +1355 kiln 0xb26f9666... BloXroute Max Profit
14299407 0 3037 1682 +1355 p2porg 0x8db2a99d... BloXroute Max Profit
14302417 0 3037 1682 +1355 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14297251 3 3086 1733 +1353 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
14296108 0 3035 1682 +1353 p2porg 0x85fb0503... Aestus
14300238 6 3135 1783 +1352 p2porg 0xb26f9666... Titan Relay
14298242 0 3033 1682 +1351 p2porg 0x853b0078... BloXroute Max Profit
14295778 5 3117 1766 +1351 coinbase 0x8527d16c... Ultra Sound
14295791 5 3117 1766 +1351 blockdaemon 0x88857150... Ultra Sound
14302082 1 3049 1699 +1350 whale_0x8ebd 0x8527d16c... Ultra Sound
14301083 1 3048 1699 +1349 solo_stakers 0x853b0078... BloXroute Max Profit
14299406 5 3114 1766 +1348 p2porg 0xb26f9666... Titan Relay
14299176 3 3079 1733 +1346 coinbase 0x8527d16c... Ultra Sound
14302493 1 3045 1699 +1346 0x823e0146... Ultra Sound
14298004 2 3060 1716 +1344 p2porg 0x8db2a99d... Ultra Sound
14301823 11 3211 1867 +1344 blockdaemon_lido 0xb26f9666... Titan Relay
14301242 8 3160 1817 +1343 coinbase 0x8527d16c... Ultra Sound
14302199 7 3143 1800 +1343 launchnodes_lido 0x857b0038... BloXroute Regulated
14300518 0 3025 1682 +1343 kiln 0xb26f9666... Titan Relay
14296433 0 3025 1682 +1343 p2porg 0x85fb0503... Aestus
14296412 3 3075 1733 +1342 whale_0x8ebd 0x8527d16c... Ultra Sound
14300710 7 3142 1800 +1342 figment 0xb26f9666... Titan Relay
14297862 6 3125 1783 +1342 p2porg 0x853b0078... BloXroute Regulated
14299123 0 3024 1682 +1342 kiln 0xb26f9666... Titan Relay
14295722 4 3091 1750 +1341 p2porg 0x853b0078... BloXroute Max Profit
14299857 2 3057 1716 +1341 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14300451 1 3040 1699 +1341 coinbase 0x8527d16c... Ultra Sound
14301912 1 3040 1699 +1341 coinbase 0x8527d16c... Ultra Sound
14297837 0 3023 1682 +1341 whale_0x8ebd Local Local
14296732 3 3073 1733 +1340 kiln 0x850b00e0... BloXroute Max Profit
14297006 0 3022 1682 +1340 kiln 0x85fb0503... Aestus
14297854 0 3022 1682 +1340 coinbase 0x8527d16c... Ultra Sound
14300003 3 3072 1733 +1339 coinbase 0x8db2a99d... BloXroute Max Profit
14296869 1 3038 1699 +1339 p2porg 0x85fb0503... Ultra Sound
14300182 1 3038 1699 +1339 coinbase 0x8527d16c... Ultra Sound
14296237 0 3021 1682 +1339 p2porg 0xb67eaa5e... Ultra Sound
14298510 0 3020 1682 +1338 whale_0x8ebd 0x8527d16c... Ultra Sound
14298405 6 3120 1783 +1337 p2porg 0x8db2a99d... BloXroute Max Profit
14297468 0 3019 1682 +1337 whale_0x8ebd 0x853b0078... Flashbots
14297529 2 3052 1716 +1336 p2porg 0xb26f9666... BloXroute Regulated
14297072 12 3220 1884 +1336 kiln 0xb67eaa5e... BloXroute Max Profit
14296461 1 3035 1699 +1336 coinbase 0x85fb0503... Ultra Sound
14295990 1 3035 1699 +1336 kiln 0xb26f9666... Titan Relay
14302551 16 3287 1951 +1336 bitstamp 0x88a53ec4... BloXroute Max Profit
14302636 4 3085 1750 +1335 figment 0xb26f9666... Titan Relay
14300225 6 3117 1783 +1334 p2porg 0x856b0004... Ultra Sound
14301347 8 3148 1817 +1331 p2porg 0x853b0078... BloXroute Regulated
14302487 2 3047 1716 +1331 coinbase 0x8527d16c... Ultra Sound
14302520 6 3114 1783 +1331 kiln 0x88a53ec4... BloXroute Regulated
14300606 5 3097 1766 +1331 coinbase 0x8527d16c... Ultra Sound
14295730 5 3096 1766 +1330 coinbase 0x8527d16c... Ultra Sound
14297736 11 3195 1867 +1328 solo_stakers 0xb4ce6162... Ultra Sound
14299377 6 3110 1783 +1327 stader 0x853b0078... BloXroute Max Profit
14301084 0 3009 1682 +1327 coinbase 0x8527d16c... Ultra Sound
14296445 3 3058 1733 +1325 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14295713 7 3125 1800 +1325 stader 0x85fb0503... Ultra Sound
14301965 5 3090 1766 +1324 p2porg 0x8527d16c... Ultra Sound
14297710 3 3056 1733 +1323 coinbase 0x8527d16c... Ultra Sound
14297730 5 3089 1766 +1323 kiln 0x88857150... Ultra Sound
14300749 0 3004 1682 +1322 whale_0x8ebd 0x8527d16c... Ultra Sound
14298244 6 3104 1783 +1321 coinbase 0xb67eaa5e... BloXroute Max Profit
14299427 0 3003 1682 +1321 coinbase 0x8527d16c... Ultra Sound
14298523 0 3002 1682 +1320 whale_0x8ebd 0x99cba505... Flashbots
14299433 1 3018 1699 +1319 kiln 0x850b00e0... BloXroute Max Profit
14298647 7 3118 1800 +1318 p2porg 0xb26f9666... Titan Relay
14301514 6 3101 1783 +1318 bitstamp Local Local
14300321 5 3084 1766 +1318 coinbase 0xb26f9666... Ultra Sound
14296881 1 3016 1699 +1317 0x85fb0503... Aestus
14296343 6 3100 1783 +1317 coinbase Local Local
14299917 0 2999 1682 +1317 bitstamp 0x851b00b1... BloXroute Max Profit
14301247 7 3115 1800 +1315 kiln 0x856b0004... BloXroute Max Profit
14298155 0 2997 1682 +1315 0x8527d16c... Ultra Sound
14300964 0 2997 1682 +1315 coinbase 0x8527d16c... Ultra Sound
14297871 1 3013 1699 +1314 whale_0x8ebd 0x85fb0503... Aestus
14297986 4 3063 1750 +1313 bitstamp 0x850b00e0... BloXroute Regulated
14297096 3 3045 1733 +1312 p2porg 0x85fb0503... Aestus
14295734 0 2994 1682 +1312 whale_0x8ebd 0x8527d16c... Ultra Sound
14298241 0 2994 1682 +1312 whale_0x9212 Local Local
14300130 10 3162 1851 +1311 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14299178 4 3060 1750 +1310 coinbase 0x8527d16c... Ultra Sound
14296173 4 3058 1750 +1308 coinbase 0x8527d16c... Ultra Sound
14297109 1 3007 1699 +1308 kiln 0x8527d16c... Ultra Sound
14299141 1 3007 1699 +1308 coinbase 0x8527d16c... Ultra Sound
14300875 0 2990 1682 +1308 kiln 0xb67eaa5e... BloXroute Regulated
14300129 0 2990 1682 +1308 coinbase 0x805e28e6... BloXroute Max Profit
14297719 5 3074 1766 +1308 kiln 0x8527d16c... Ultra Sound
14300306 10 3158 1851 +1307 whale_0x8ebd 0x8527d16c... Ultra Sound
14302038 3 3040 1733 +1307 kiln 0xac23f8cc... Titan Relay
14296552 6 3090 1783 +1307 coinbase 0xb72cae2f... Ultra Sound
14301900 8 3123 1817 +1306 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14298126 6 3089 1783 +1306 0x856b0004... Ultra Sound
14300989 2 3021 1716 +1305 coinbase 0x8527d16c... Ultra Sound
14298279 7 3105 1800 +1305 bitstamp 0x93b11bec... Flashbots
14298955 1 3004 1699 +1305 kiln 0x853b0078... BloXroute Max Profit
14299805 5 3070 1766 +1304 whale_0x8ebd 0x8527d16c... Ultra Sound
14302387 6 3086 1783 +1303 coinbase 0x8527d16c... Ultra Sound
14297086 0 2985 1682 +1303 whale_0x8ebd 0x851b00b1... BloXroute Max Profit
14298895 1 3001 1699 +1302 coinbase 0x856b0004... BloXroute Max Profit
14301901 0 2984 1682 +1302 kiln 0x8527d16c... Ultra Sound
14297035 0 2984 1682 +1302 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14298617 4 3051 1750 +1301 0x856b0004... Ultra Sound
14298469 0 2983 1682 +1301 everstake 0xb26f9666... Titan Relay
14300042 5 3066 1766 +1300 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14299846 3 3032 1733 +1299 kiln 0x853b0078... BloXroute Max Profit
14297688 1 2998 1699 +1299 bitstamp 0x8db2a99d... BloXroute Regulated
14298972 1 2998 1699 +1299 whale_0x8ebd 0xb4ce6162... Ultra Sound
14297088 4 3048 1750 +1298 whale_0x8ebd 0x85fb0503... Ultra Sound
14297989 1 2997 1699 +1298 stader 0xb26f9666... Titan Relay
14299118 1 2997 1699 +1298 kiln 0x8527d16c... Ultra Sound
14295915 0 2980 1682 +1298 coinbase 0xb26f9666... BloXroute Max Profit
14300776 2 3013 1716 +1297 solo_stakers 0xb26f9666... Titan Relay
14295683 1 2996 1699 +1297 coinbase 0x8527d16c... Ultra Sound
14300918 0 2978 1682 +1296 kiln 0xb26f9666... Titan Relay
14297532 0 2978 1682 +1296 whale_0xedc6 0x805e28e6... BloXroute Max Profit
14298339 5 3062 1766 +1296 coinbase 0x8527d16c... Ultra Sound
14295820 2 3011 1716 +1295 everstake 0xa03781b9... Ultra Sound
14298184 1 2994 1699 +1295 kiln Local Local
14298720 0 2977 1682 +1295 everstake 0xb26f9666... Titan Relay
14301047 4 3044 1750 +1294 0x8527d16c... Ultra Sound
14295882 4 3044 1750 +1294 coinbase 0xb26f9666... Titan Relay
14296983 2 3010 1716 +1294 kiln 0x8db2a99d... Titan Relay
14300275 11 3160 1867 +1293 kiln 0xb67eaa5e... BloXroute Max Profit
14297642 0 2975 1682 +1293 coinbase 0xad251e6b... Agnostic Gnosis
14299039 0 2975 1682 +1293 coinbase 0x805e28e6... Ultra Sound
14296379 5 3059 1766 +1293 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
14295748 5 3058 1766 +1292 kiln Local Local
14300379 8 3108 1817 +1291 coinbase 0x856b0004... BloXroute Max Profit
14298200 0 2973 1682 +1291 kiln 0x8527d16c... Ultra Sound
14297270 0 2973 1682 +1291 kiln 0x8527d16c... Ultra Sound
14301570 5 3057 1766 +1291 coinbase 0x88857150... Ultra Sound
Total anomalies: 394

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