Tue, Apr 7, 2026

Propagation anomalies - 2026-04-07

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

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

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

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

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

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

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

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

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

-- Column arrival timing: first arrival per column, then min/max of those
column_gossip AS (
    SELECT
        slot,
        min(first_seen) AS first_column_first_seen,
        max(first_seen) AS last_column_first_seen
    FROM (
        SELECT
            slot,
            column_index,
            min(event_date_time) AS first_seen
        FROM libp2p_gossipsub_data_column_sidecar
        WHERE meta_network_name = 'mainnet'
          AND slot_start_date_time >= '2026-04-07' AND slot_start_date_time < '2026-04-07'::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,186
MEV blocks: 6,628 (92.2%)
Local blocks: 558 (7.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 = 1688.3 + 16.39 × blob_count (R² = 0.011)
Residual σ = 596.1ms
Anomalies (>2σ slow): 502 (7.0%)
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
14064448 0 5527 1688 +3839 upbit Local Local
14061088 11 5703 1869 +3834 upbit Local Local
14064928 11 4959 1869 +3090 upbit Local Local
14062808 0 4677 1688 +2989 senseinode_lido Local Local
14059008 0 4467 1688 +2779 upbit Local Local
14058976 0 4241 1688 +2553 upbit Local Local
14065152 0 4021 1688 +2333 upbit Local Local
14059805 0 3804 1688 +2116 rocketpool 0x88857150... Ultra Sound
14063712 1 3770 1705 +2065 stakefish Local Local
14062496 0 3640 1688 +1952 stakefish 0x99dbe3e8... Agnostic Gnosis
14059267 5 3687 1770 +1917 nethermind_lido 0xb26f9666... Aestus
14059257 4 3639 1754 +1885 nethermind_lido 0xb5a65d00... Aestus
14058920 13 3784 1901 +1883 nethermind_lido 0x8527d16c... Ultra Sound
14060664 1 3573 1705 +1868 whale_0x8ebd 0x856b0004... Agnostic Gnosis
14059534 1 3525 1705 +1820 blockdaemon_lido 0x8db2a99d... Ultra Sound
14063007 0 3508 1688 +1820 blockdaemon 0x8a850621... Titan Relay
14062162 1 3519 1705 +1814 blockdaemon 0x857b0038... Ultra Sound
14060971 0 3479 1688 +1791 whale_0x8ebd 0x8db2a99d... Aestus
14061728 4 3542 1754 +1788 gateway.fmas_lido 0x850b00e0... Flashbots
14058231 1 3485 1705 +1780 ether.fi 0x88a53ec4... BloXroute Max Profit
14064089 10 3623 1852 +1771 ether.fi 0x853b0078... Agnostic Gnosis
14065002 0 3443 1688 +1755 bloxstaking 0xb26f9666... Titan Relay
14062983 6 3533 1787 +1746 blockdaemon 0x8527d16c... Ultra Sound
14058982 5 3514 1770 +1744 blockdaemon 0x88857150... Ultra Sound
14063499 2 3462 1721 +1741 ether.fi Local Local
14062337 10 3587 1852 +1735 blockdaemon 0xa965c911... Ultra Sound
14064467 1 3437 1705 +1732 nethermind_lido 0x823e0146... Flashbots
14063460 5 3499 1770 +1729 blockdaemon_lido 0xb67eaa5e... Titan Relay
14064035 1 3431 1705 +1726 nethermind_lido 0xb26f9666... Aestus
14058085 5 3493 1770 +1723 blockdaemon 0x88857150... Ultra Sound
14062775 0 3395 1688 +1707 blockdaemon_lido 0xb67eaa5e... Titan Relay
14058244 0 3395 1688 +1707 blockdaemon 0xb4ce6162... Ultra Sound
14059063 0 3391 1688 +1703 ether.fi 0xb67eaa5e... Titan Relay
14064720 2 3421 1721 +1700 0xb26f9666... Titan Relay
14060209 5 3469 1770 +1699 blockdaemon_lido 0x853b0078... BloXroute Max Profit
14060768 9 3526 1836 +1690 revolut 0xb67eaa5e... BloXroute Regulated
14058025 0 3365 1688 +1677 blockdaemon 0x853b0078... BloXroute Regulated
14060774 1 3379 1705 +1674 blockdaemon 0x8a850621... Titan Relay
14061212 6 3456 1787 +1669 ether.fi 0xb26f9666... Titan Relay
14063875 3 3400 1738 +1662 0x850b00e0... BloXroute Regulated
14059483 1 3345 1705 +1640 blockdaemon 0xa965c911... Ultra Sound
14064916 0 3326 1688 +1638 0x850b00e0... BloXroute Regulated
14063298 0 3317 1688 +1629 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
14061901 1 3333 1705 +1628 whale_0xdc8d 0xb26f9666... Titan Relay
14063811 7 3431 1803 +1628 gateway.fmas_lido 0x88a53ec4... BloXroute Regulated
14059081 0 3315 1688 +1627 whale_0x8ebd 0x855b00e6... Ultra Sound
14058939 6 3412 1787 +1625 blockdaemon 0x8a850621... Titan Relay
14059400 8 3443 1819 +1624 blockdaemon 0xb67eaa5e... BloXroute Regulated
14062864 6 3409 1787 +1622 ether.fi 0xb26f9666... Titan Relay
14058115 0 3307 1688 +1619 whale_0xdc8d 0x853b0078... Ultra Sound
14063808 0 3304 1688 +1616 whale_0x79b2 Local Local
14064037 1 3318 1705 +1613 blockdaemon 0xb4ce6162... Ultra Sound
14064330 0 3299 1688 +1611 whale_0x8ebd 0xb4ce6162... Ultra Sound
14058413 9 3444 1836 +1608 blockdaemon 0x88a53ec4... BloXroute Regulated
14062155 4 3362 1754 +1608 ether.fi 0x88a53ec4... BloXroute Max Profit
14063164 3 3345 1738 +1607 blockdaemon 0x88857150... Ultra Sound
14064500 1 3312 1705 +1607 blockdaemon 0x853b0078... BloXroute Max Profit
14064087 0 3293 1688 +1605 blockdaemon 0x8a850621... Titan Relay
14064759 1 3307 1705 +1602 ether.fi 0x853b0078... Ultra Sound
14060864 0 3290 1688 +1602 p2porg 0x853b0078... Agnostic Gnosis
14063065 2 3321 1721 +1600 ether.fi 0xb26f9666... BloXroute Max Profit
14063590 3 3336 1738 +1598 whale_0xdc8d 0x8527d16c... Ultra Sound
14061216 1 3303 1705 +1598 p2porg 0x853b0078... BloXroute Regulated
14059264 0 3286 1688 +1598 p2porg 0x85fb0503... BloXroute Max Profit
14061291 5 3367 1770 +1597 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14060775 6 3379 1787 +1592 rocketpool Local Local
14061246 0 3279 1688 +1591 whale_0xdc8d 0x823e0146... BloXroute Regulated
14060543 9 3423 1836 +1587 coinbase 0x8db2a99d... Aestus
14061033 7 3390 1803 +1587 blockdaemon 0x8527d16c... Ultra Sound
14058707 5 3353 1770 +1583 revolut 0x88a53ec4... BloXroute Regulated
14059694 3 3320 1738 +1582 0x850b00e0... BloXroute Regulated
14061247 5 3352 1770 +1582 ether.fi 0xb26f9666... Titan Relay
14064518 1 3284 1705 +1579 blockdaemon 0xb26f9666... Titan Relay
14063792 0 3265 1688 +1577 blockdaemon 0x851b00b1... BloXroute Max Profit
14061605 1 3273 1705 +1568 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14060708 1 3271 1705 +1566 blockdaemon_lido 0xb26f9666... Titan Relay
14059319 0 3254 1688 +1566 luno 0x853b0078... BloXroute Regulated
14059609 1 3264 1705 +1559 revolut 0xb67eaa5e... BloXroute Regulated
14061839 0 3245 1688 +1557 ether.fi 0xb26f9666... BloXroute Max Profit
14058166 6 3342 1787 +1555 revolut 0x850b00e0... BloXroute Regulated
14062596 12 3440 1885 +1555 blockdaemon 0x856b0004... BloXroute Max Profit
14058498 5 3318 1770 +1548 blockdaemon_lido 0x853b0078... BloXroute Max Profit
14062748 11 3415 1869 +1546 0x88a53ec4... BloXroute Regulated
14058348 0 3234 1688 +1546 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14059292 0 3234 1688 +1546 blockdaemon 0x88a53ec4... BloXroute Regulated
14061548 2 3266 1721 +1545 whale_0x8ebd 0x823e0146... Ultra Sound
14061160 10 3390 1852 +1538 0x9129eeb4... Ultra Sound
14059469 5 3304 1770 +1534 luno 0xb5a65d00... Ultra Sound
14059242 10 3385 1852 +1533 revolut 0x855b00e6... BloXroute Max Profit
14060128 0 3219 1688 +1531 p2porg 0x850b00e0... BloXroute Regulated
14059824 5 3300 1770 +1530 blockdaemon_lido 0xb26f9666... Titan Relay
14065012 6 3311 1787 +1524 0x8db2a99d... Ultra Sound
14062054 5 3287 1770 +1517 revolut 0x853b0078... BloXroute Regulated
14058669 2 3234 1721 +1513 whale_0x8ebd 0x856b0004... Aestus
14060945 6 3295 1787 +1508 blockdaemon 0x8527d16c... Ultra Sound
14063581 8 3325 1819 +1506 p2porg 0x850b00e0... BloXroute Regulated
14059704 1 3203 1705 +1498 blockdaemon 0x823e0146... Ultra Sound
14062603 5 3263 1770 +1493 blockdaemon 0x853b0078... BloXroute Max Profit
14059663 5 3262 1770 +1492 nethermind_lido 0xb67eaa5e... BloXroute Regulated
14061819 1 3196 1705 +1491 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14064933 10 3342 1852 +1490 coinbase 0xb67eaa5e... BloXroute Regulated
14060877 6 3276 1787 +1489 coinbase 0x823e0146... Aestus
14060078 11 3356 1869 +1487 blockdaemon 0x88857150... Ultra Sound
14063446 2 3208 1721 +1487 p2porg 0x850b00e0... BloXroute Regulated
14058053 10 3336 1852 +1484 blockdaemon 0x850b00e0... BloXroute Max Profit
14059278 5 3254 1770 +1484 0x823e0146... Ultra Sound
14061738 0 3172 1688 +1484 whale_0xedc6 0x856b0004... Ultra Sound
14060559 1 3183 1705 +1478 p2porg 0xb67eaa5e... BloXroute Max Profit
14060793 7 3281 1803 +1478 blockdaemon_lido 0xb67eaa5e... Titan Relay
14062723 3 3215 1738 +1477 kiln 0x88a53ec4... BloXroute Regulated
14058329 1 3181 1705 +1476 gateway.fmas_lido 0x88a53ec4... BloXroute Regulated
14060390 1 3179 1705 +1474 blockdaemon_lido 0xb67eaa5e... Titan Relay
14063013 2 3195 1721 +1474 stader 0xb26f9666... Titan Relay
14063155 0 3161 1688 +1473 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14060639 5 3241 1770 +1471 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14058551 11 3334 1869 +1465 blockdaemon_lido 0x853b0078... BloXroute Regulated
14058550 0 3152 1688 +1464 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
14058445 13 3363 1901 +1462 nethermind_lido 0x8527d16c... Ultra Sound
14061678 3 3197 1738 +1459 whale_0x8ebd 0x856b0004... Aestus
14060600 9 3295 1836 +1459 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14063217 6 3236 1787 +1449 blockdaemon_lido 0xb26f9666... Titan Relay
14060228 0 3136 1688 +1448 gateway.fmas_lido 0x851b00b1... BloXroute Max Profit
14062675 1 3151 1705 +1446 bitstamp 0x823e0146... Flashbots
14060497 9 3282 1836 +1446 p2porg 0x855b00e6... BloXroute Max Profit
14059565 5 3216 1770 +1446 p2porg 0xb67eaa5e... BloXroute Max Profit
14061778 0 3134 1688 +1446 whale_0x8ebd 0x851b00b1... BloXroute Max Profit
14062374 1 3150 1705 +1445 revolut 0x8527d16c... Ultra Sound
14063146 1 3149 1705 +1444 p2porg 0xb26f9666... Titan Relay
14059217 0 3132 1688 +1444 gateway.fmas_lido 0x823e0146... Aestus
14062431 0 3131 1688 +1443 revolut 0xb26f9666... Titan Relay
14062394 6 3229 1787 +1442 gateway.fmas_lido 0x8527d16c... Ultra Sound
14060477 5 3212 1770 +1442 whale_0x8ebd 0xac23f8cc... BloXroute Max Profit
14063010 0 3130 1688 +1442 whale_0x8ebd 0xb5a65d00... Ultra Sound
14063984 5 3208 1770 +1438 kiln 0x850b00e0... BloXroute Max Profit
14063213 6 3224 1787 +1437 blockdaemon_lido 0x8db2a99d... Ultra Sound
14064394 5 3207 1770 +1437 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14060405 4 3189 1754 +1435 p2porg 0xb26f9666... Titan Relay
14059372 2 3156 1721 +1435 p2porg 0xb67eaa5e... BloXroute Max Profit
14064291 10 3287 1852 +1435 revolut 0x8527d16c... Ultra Sound
14061090 0 3120 1688 +1432 coinbase 0x853b0078... Ultra Sound
14061781 2 3150 1721 +1429 p2porg 0x850b00e0... BloXroute Max Profit
14061917 0 3117 1688 +1429 p2porg 0xb26f9666... Titan Relay
14059326 0 3117 1688 +1429 gateway.fmas_lido 0x85fb0503... Aestus
14064960 11 3290 1869 +1421 staked.us 0xb67eaa5e... BloXroute Max Profit
14061924 0 3108 1688 +1420 p2porg 0x853b0078... BloXroute Regulated
14063846 7 3222 1803 +1419 p2porg 0x850b00e0... BloXroute Regulated
14062097 0 3107 1688 +1419 kiln 0x8db2a99d... Flashbots
14063601 6 3203 1787 +1416 blockdaemon 0x853b0078... Titan Relay
14063301 4 3168 1754 +1414 kiln 0xb67eaa5e... BloXroute Regulated
14061073 3 3151 1738 +1413 p2porg 0x8db2a99d... Ultra Sound
14064393 9 3249 1836 +1413 p2porg 0x850b00e0... BloXroute Regulated
14061499 5 3183 1770 +1413 blockdaemon 0xb26f9666... Titan Relay
14064246 0 3101 1688 +1413 coinbase 0x823e0146... Aestus
14061848 4 3166 1754 +1412 p2porg 0x850b00e0... BloXroute Regulated
14059928 7 3213 1803 +1410 p2porg 0xb67eaa5e... BloXroute Max Profit
14061063 7 3213 1803 +1410 revolut 0xb26f9666... Titan Relay
14064890 0 3095 1688 +1407 kiln 0x88a53ec4... BloXroute Regulated
14060298 0 3094 1688 +1406 revolut Local Local
14061341 0 3093 1688 +1405 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14063800 0 3092 1688 +1404 p2porg 0xb26f9666... Aestus
14063972 9 3235 1836 +1399 kiln 0xb67eaa5e... BloXroute Max Profit
14059963 10 3249 1852 +1397 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14063596 0 3083 1688 +1395 figment 0xb67eaa5e... Ultra Sound
14058010 10 3246 1852 +1394 p2porg 0x8527d16c... Ultra Sound
14061051 16 3344 1951 +1393 figment 0x850b00e0... BloXroute Max Profit
14058782 0 3081 1688 +1393 p2porg 0x9129eeb4... Agnostic Gnosis
14063523 5 3162 1770 +1392 p2porg 0xb5a65d00... Ultra Sound
14058266 1 3095 1705 +1390 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14058012 6 3173 1787 +1386 p2porg 0x9129eeb4... Agnostic Gnosis
14059583 8 3205 1819 +1386 nethermind_lido 0x823e0146... Flashbots
14060245 4 3139 1754 +1385 whale_0x3152 0x857b0038... Ultra Sound
14058622 1 3088 1705 +1383 0xac23f8cc... Ultra Sound
14062202 0 3071 1688 +1383 p2porg 0x853b0078... Agnostic Gnosis
14064194 0 3070 1688 +1382 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
14064883 4 3135 1754 +1381 whale_0x8ebd 0xb4ce6162... Ultra Sound
14063814 1 3082 1705 +1377 p2porg 0x8527d16c... Ultra Sound
14058694 1 3082 1705 +1377 p2porg 0xb26f9666... Titan Relay
14062339 0 3065 1688 +1377 p2porg 0x856b0004... Ultra Sound
14062803 6 3163 1787 +1376 coinbase Local Local
14061669 6 3162 1787 +1375 gateway.fmas_lido 0x8527d16c... Ultra Sound
14062536 2 3096 1721 +1375 coinbase 0xb26f9666... BloXroute Max Profit
14062862 0 3063 1688 +1375 whale_0xedc6 0x851b00b1... BloXroute Max Profit
14060727 4 3127 1754 +1373 solo_stakers 0xb26f9666... Aestus
14061440 0 3061 1688 +1373 coinbase 0xb67eaa5e... BloXroute Regulated
14060480 5 3142 1770 +1372 coinbase 0x823e0146... BloXroute Max Profit
14062532 3 3107 1738 +1369 p2porg 0xb26f9666... Titan Relay
14061520 3 3107 1738 +1369 coinbase 0x8527d16c... Ultra Sound
14059516 1 3074 1705 +1369 whale_0x8ebd 0x856b0004... Agnostic Gnosis
14064829 5 3139 1770 +1369 p2porg 0x8db2a99d... Flashbots
14064695 7 3170 1803 +1367 p2porg 0xb26f9666... Aestus
14060682 4 3120 1754 +1366 p2porg 0x8db2a99d... Ultra Sound
14061772 1 3070 1705 +1365 kiln 0x8db2a99d... BloXroute Max Profit
14064955 0 3053 1688 +1365 p2porg 0x8db2a99d... Flashbots
14065153 9 3198 1836 +1362 whale_0x8ebd Local Local
14064494 6 3147 1787 +1360 gateway.fmas_lido 0x8527d16c... Ultra Sound
14059605 1 3064 1705 +1359 coinbase 0xb26f9666... Titan Relay
14059023 2 3080 1721 +1359 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14065098 0 3047 1688 +1359 p2porg 0xb26f9666... BloXroute Max Profit
14060230 5 3128 1770 +1358 p2porg 0xb26f9666... Titan Relay
14063599 0 3046 1688 +1358 whale_0x8ebd 0x9129eeb4... Aestus
14064044 0 3045 1688 +1357 whale_0xd07d 0x850b00e0... Flashbots
14061163 0 3045 1688 +1357 gateway.fmas_lido 0x8527d16c... Ultra Sound
14062326 1 3061 1705 +1356 coinbase 0xb67eaa5e... BloXroute Max Profit
14059106 0 3044 1688 +1356 kiln 0x85fb0503... BloXroute Max Profit
14059527 0 3044 1688 +1356 p2porg 0x853b0078... BloXroute Max Profit
14064235 0 3044 1688 +1356 kiln 0x823e0146... Flashbots
14063604 6 3142 1787 +1355 coinbase 0x823e0146... BloXroute Max Profit
14058003 1 3060 1705 +1355 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14061273 2 3076 1721 +1355 p2porg 0x853b0078... Agnostic Gnosis
14063304 0 3043 1688 +1355 coinbase 0x8527d16c... Ultra Sound
14060122 5 3124 1770 +1354 coinbase 0xb26f9666... Titan Relay
14062970 0 3042 1688 +1354 whale_0x8ebd 0x8db2a99d... Flashbots
14062240 0 3042 1688 +1354 coinbase 0xb67eaa5e... BloXroute Regulated
14062435 7 3155 1803 +1352 whale_0x8ebd 0x8527d16c... Ultra Sound
14064620 5 3121 1770 +1351 0x8527d16c... Ultra Sound
14058860 1 3053 1705 +1348 0x856b0004... Agnostic Gnosis
14064586 0 3036 1688 +1348 p2porg 0xa0366397... Flashbots
14063116 0 3035 1688 +1347 p2porg 0xb26f9666... BloXroute Max Profit
14061988 0 3035 1688 +1347 p2porg 0xb26f9666... Titan Relay
14061323 0 3035 1688 +1347 p2porg 0xb26f9666... Titan Relay
14065078 5 3116 1770 +1346 p2porg 0xb26f9666... BloXroute Regulated
14058837 7 3148 1803 +1345 coinbase 0xb7c5c39a... BloXroute Max Profit
14058712 9 3180 1836 +1344 whale_0x8ebd 0x853b0078... Aestus
14060100 3 3081 1738 +1343 p2porg 0x850b00e0... BloXroute Max Profit
14058380 1 3048 1705 +1343 p2porg 0x8527d16c... Ultra Sound
14062834 4 3096 1754 +1342 whale_0x8ebd 0x823e0146... Ultra Sound
14059631 5 3112 1770 +1342 whale_0x8ebd 0xb26f9666... Titan Relay
14061370 2 3062 1721 +1341 coinbase 0xb26f9666... BloXroute Regulated
14062891 1 3044 1705 +1339 p2porg 0xb26f9666... BloXroute Max Profit
14062713 7 3142 1803 +1339 kiln 0x8db2a99d... Flashbots
14060437 5 3109 1770 +1339 p2porg 0x850b00e0... BloXroute Regulated
14059918 0 3027 1688 +1339 figment 0x853b0078... Aestus
14059162 2 3059 1721 +1338 whale_0xedc6 0x85fb0503... Aestus
14064596 3 3075 1738 +1337 coinbase 0x8527d16c... Ultra Sound
14058338 6 3124 1787 +1337 whale_0x8ebd 0x8527d16c... Ultra Sound
14059507 0 3025 1688 +1337 coinbase 0xb26f9666... Titan Relay
14064355 0 3024 1688 +1336 kiln 0xb67eaa5e... BloXroute Max Profit
14059140 0 3024 1688 +1336 coinbase 0xb67eaa5e... BloXroute Regulated
14061754 1 3039 1705 +1334 coinbase 0x856b0004... Agnostic Gnosis
14062738 0 3022 1688 +1334 coinbase 0xb26f9666... Titan Relay
14061552 1 3038 1705 +1333 p2porg 0x8527d16c... Ultra Sound
14063123 5 3103 1770 +1333 whale_0x8ebd 0x8db2a99d... Aestus
14060310 5 3103 1770 +1333 kiln 0xb67eaa5e... BloXroute Regulated
14062627 0 3021 1688 +1333 whale_0x8ebd 0xb26f9666... Aestus
14062381 3 3070 1738 +1332 p2porg 0x8527d16c... Ultra Sound
14059088 1 3036 1705 +1331 coinbase 0x85fb0503... Aestus
14060515 9 3167 1836 +1331 p2porg 0xb26f9666... Titan Relay
14064903 0 3019 1688 +1331 ether.fi 0xb67eaa5e... BloXroute Max Profit
14060166 4 3084 1754 +1330 figment 0xb26f9666... Aestus
14058189 0 3018 1688 +1330 p2porg 0x8527d16c... Ultra Sound
14060004 6 3116 1787 +1329 whale_0x8ebd 0xb26f9666... Titan Relay
14064244 1 3034 1705 +1329 p2porg 0x8db2a99d... Ultra Sound
14058008 1 3034 1705 +1329 0x88857150... Ultra Sound
14064583 5 3097 1770 +1327 kiln 0xb67eaa5e... BloXroute Max Profit
14062789 0 3015 1688 +1327 kiln 0x87d7fb5c... Flashbots
14064383 0 3014 1688 +1326 kiln 0xb26f9666... BloXroute Max Profit
14058284 1 3027 1705 +1322 coinbase 0x850b00e0... BloXroute Max Profit
14060885 10 3173 1852 +1321 gateway.fmas_lido 0xb5a65d00... Ultra Sound
14059670 5 3091 1770 +1321 p2porg 0x853b0078... Agnostic Gnosis
14063482 0 3009 1688 +1321 coinbase 0xb26f9666... BloXroute Regulated
14060742 7 3123 1803 +1320 coinbase 0xb67eaa5e... BloXroute Regulated
14062811 0 3007 1688 +1319 coinbase 0xb26f9666... Aestus
14063180 7 3121 1803 +1318 whale_0x8ebd 0xb5a65d00... Ultra Sound
14060720 0 3005 1688 +1317 coinbase 0xb26f9666... BloXroute Regulated
14058603 7 3119 1803 +1316 coinbase 0x8527d16c... Ultra Sound
14062786 5 3086 1770 +1316 whale_0x8ebd 0xb26f9666... Ultra Sound
14062865 5 3086 1770 +1316 kiln 0xac23f8cc... BloXroute Max Profit
14058866 5 3085 1770 +1315 whale_0x8ebd 0xb26f9666... Titan Relay
14062288 1 3019 1705 +1314 coinbase 0x88a53ec4... BloXroute Regulated
14058966 1 3019 1705 +1314 p2porg 0x85fb0503... Aestus
14059638 5 3084 1770 +1314 p2porg 0xb26f9666... Titan Relay
14059656 0 3001 1688 +1313 whale_0x8ebd 0x823e0146... BloXroute Max Profit
14060556 13 3214 1901 +1313 kiln 0xb26f9666... BloXroute Max Profit
14063439 7 3115 1803 +1312 figment 0x9129eeb4... Agnostic Gnosis
14064288 0 3000 1688 +1312 everstake 0x8527d16c... Ultra Sound
14060223 6 3095 1787 +1308 kiln 0xb67eaa5e... BloXroute Max Profit
14064402 5 3078 1770 +1308 everstake 0xb7c5e609... BloXroute Max Profit
14059573 7 3110 1803 +1307 whale_0x8ebd 0x853b0078... Titan Relay
14059813 2 3028 1721 +1307 coinbase 0xb26f9666... BloXroute Max Profit
14059308 5 3077 1770 +1307 kiln 0xb67eaa5e... BloXroute Max Profit
14062292 5 3077 1770 +1307 kiln 0x88a53ec4... BloXroute Regulated
14059948 6 3093 1787 +1306 blockdaemon_lido 0xb26f9666... Titan Relay
14063878 0 2994 1688 +1306 coinbase 0xb4ce6162... Ultra Sound
14061355 0 2994 1688 +1306 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14060627 9 3141 1836 +1305 kiln 0xb67eaa5e... BloXroute Regulated
14063753 1 3009 1705 +1304 coinbase 0x85fb0503... Aestus
14059381 0 2992 1688 +1304 whale_0x8ebd 0x85fb0503... BloXroute Max Profit
14061214 5 3073 1770 +1303 whale_0x8ebd 0xb26f9666... Titan Relay
14064769 0 2991 1688 +1303 everstake 0x88857150... Ultra Sound
14064563 1 3007 1705 +1302 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14061809 3 3039 1738 +1301 coinbase 0x9129eeb4... Agnostic Gnosis
14060123 1 3006 1705 +1301 coinbase 0x853b0078... Agnostic Gnosis
14058028 0 2989 1688 +1301 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14061709 6 3087 1787 +1300 p2porg 0x8db2a99d... Agnostic Gnosis
14059068 1 3005 1705 +1300 kiln 0x88a53ec4... BloXroute Regulated
14064227 9 3134 1836 +1298 p2porg 0xb26f9666... Titan Relay
14059357 0 2985 1688 +1297 kiln 0x88a53ec4... BloXroute Max Profit
14064738 6 3083 1787 +1296 coinbase 0x8527d16c... Ultra Sound
14064807 0 2984 1688 +1296 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14064658 6 3082 1787 +1295 0x853b0078... Aestus
14060867 0 2982 1688 +1294 everstake 0x8db2a99d... Aestus
14063333 0 2981 1688 +1293 coinbase 0x85fb0503... Aestus
14061875 0 2981 1688 +1293 kiln 0x99dbe3e8... Agnostic Gnosis
14062700 0 2981 1688 +1293 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14064461 0 2980 1688 +1292 coinbase 0x88a53ec4... BloXroute Regulated
14058749 1 2994 1705 +1289 coinbase 0x88a53ec4... BloXroute Max Profit
14060982 4 3043 1754 +1289 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
14063894 6 3075 1787 +1288 coinbase 0x856b0004... Aestus
14058763 4 3041 1754 +1287 coinbase 0x85fb0503... Aestus
14059684 5 3057 1770 +1287 kiln 0xb67eaa5e... BloXroute Regulated
14058280 1 2990 1705 +1285 kiln 0xb26f9666... BloXroute Max Profit
14063976 7 3088 1803 +1285 p2porg 0xa230e2cf... Aestus
14058994 7 3087 1803 +1284 everstake 0x88a53ec4... BloXroute Regulated
14063522 0 2972 1688 +1284 everstake 0xb26f9666... Titan Relay
14060888 1 2987 1705 +1282 kiln 0x8527d16c... Ultra Sound
14062170 11 3148 1869 +1279 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14062658 1 2984 1705 +1279 coinbase 0xb26f9666... BloXroute Max Profit
14061876 2 2999 1721 +1278 coinbase 0x850b00e0... BloXroute Max Profit
14063713 11 3144 1869 +1275 coinbase 0x8db2a99d... Ultra Sound
14064214 1 2979 1705 +1274 everstake 0x8db2a99d... Aestus
14059191 7 3077 1803 +1274 whale_0x8ebd 0x853b0078... BloXroute Max Profit
14060460 0 2962 1688 +1274 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14063757 6 3060 1787 +1273 everstake 0xb67eaa5e... BloXroute Regulated
14058958 4 3027 1754 +1273 coinbase 0x85fb0503... Aestus
14060765 0 2961 1688 +1273 kiln 0xb67eaa5e... BloXroute Max Profit
14058616 3 3010 1738 +1272 kiln 0x823e0146... Aestus
14058505 5 3041 1770 +1271 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14063950 3 3008 1738 +1270 kiln 0xb67eaa5e... BloXroute Regulated
14060466 4 3024 1754 +1270 kiln 0x853b0078... Aestus
14063014 0 2958 1688 +1270 solo_stakers 0x8db2a99d... Aestus
14061672 1 2974 1705 +1269 kiln 0x8527d16c... Ultra Sound
14063275 1 2974 1705 +1269 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14064881 0 2956 1688 +1268 everstake 0x88a53ec4... BloXroute Regulated
14062127 0 2956 1688 +1268 kiln 0x9129eeb4... Ultra Sound
14059627 11 3136 1869 +1267 whale_0x8ebd 0xb26f9666... Titan Relay
14063580 7 3070 1803 +1267 coinbase 0xb26f9666... Titan Relay
14063524 1 2971 1705 +1266 whale_0x8ebd Local Local
14063965 5 3036 1770 +1266 everstake 0x850b00e0... BloXroute Max Profit
14063504 0 2953 1688 +1265 kiln 0xb5a65d00... Ultra Sound
14059001 9 3100 1836 +1264 whale_0x8ebd 0xb26f9666... Titan Relay
14058999 6 3050 1787 +1263 kiln 0xb67eaa5e... BloXroute Regulated
14059547 0 2951 1688 +1263 everstake 0x850b00e0... BloXroute Max Profit
14058287 9 3098 1836 +1262 p2porg 0xb26f9666... Titan Relay
14065193 6 3048 1787 +1261 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14063743 5 3031 1770 +1261 coinbase 0xb26f9666... Titan Relay
14065064 1 2965 1705 +1260 ether.fi 0x88a53ec4... BloXroute Max Profit
14058120 5 3030 1770 +1260 kiln 0x856b0004... BloXroute Max Profit
14058517 5 3029 1770 +1259 coinbase 0xb26f9666... Titan Relay
14059152 5 3029 1770 +1259 kiln 0x85fb0503... Aestus
14062538 6 3045 1787 +1258 kiln 0x9129eeb4... Agnostic Gnosis
14060581 1 2963 1705 +1258 everstake 0x855b00e6... BloXroute Max Profit
14060668 6 3044 1787 +1257 coinbase 0x853b0078... Aestus
14058265 4 3009 1754 +1255 whale_0x8ebd Local Local
14063628 2 2976 1721 +1255 kiln Local Local
14058096 0 2943 1688 +1255 kiln 0xb26f9666... Aestus
14058169 7 3057 1803 +1254 whale_0x8ebd 0x853b0078... BloXroute Max Profit
14058132 0 2942 1688 +1254 everstake 0x856b0004... BloXroute Max Profit
14058848 1 2958 1705 +1253 coinbase 0xb26f9666... BloXroute Regulated
14064065 0 2941 1688 +1253 coinbase 0x853b0078... Agnostic Gnosis
14061958 0 2941 1688 +1253 kiln 0x856b0004... Aestus
14058313 0 2940 1688 +1252 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14061557 0 2940 1688 +1252 everstake 0x8db2a99d... Aestus
14058358 0 2938 1688 +1250 stader 0x8db2a99d... Aestus
14059430 1 2954 1705 +1249 coinbase 0x853b0078... Agnostic Gnosis
14063688 5 3019 1770 +1249 0x856b0004... Aestus
14062437 6 3035 1787 +1248 everstake 0x88a53ec4... BloXroute Max Profit
14062684 0 2936 1688 +1248 coinbase 0x853b0078... Agnostic Gnosis
14062112 1 2952 1705 +1247 everstake 0x8db2a99d... Agnostic Gnosis
14059254 0 2935 1688 +1247 kiln 0xb67eaa5e... Aestus
14061939 10 3098 1852 +1246 coinbase 0x8527d16c... Ultra Sound
14064558 6 3032 1787 +1245 0xb26f9666... Aestus
14059367 4 2999 1754 +1245 kiln 0xb26f9666... Aestus
14063352 5 3015 1770 +1245 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14058397 0 2933 1688 +1245 whale_0x8ebd 0x856b0004... Agnostic Gnosis
14061043 0 2933 1688 +1245 everstake 0xa965c911... Ultra Sound
14064220 0 2933 1688 +1245 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14059269 11 3113 1869 +1244 whale_0x8ebd 0xb26f9666... Titan Relay
14060966 2 2965 1721 +1244 kiln 0x8527d16c... Ultra Sound
14061861 18 3227 1983 +1244 p2porg 0x856b0004... Ultra Sound
14058642 3 2981 1738 +1243 everstake 0x853b0078... BloXroute Max Profit
14061750 1 2948 1705 +1243 whale_0x8ebd 0x856b0004... Agnostic Gnosis
14065105 1 2947 1705 +1242 everstake 0x853b0078... Ultra Sound
14062544 0 2930 1688 +1242 blockdaemon 0x8527d16c... Ultra Sound
14063942 9 3077 1836 +1241 everstake 0xb67eaa5e... BloXroute Max Profit
14058678 3 2978 1738 +1240 everstake 0x823e0146... Ultra Sound
14058874 1 2945 1705 +1240 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14063552 0 2928 1688 +1240 everstake 0x85fb0503... Aestus
14061805 8 3058 1819 +1239 coinbase 0xb26f9666... Titan Relay
14059139 0 2926 1688 +1238 gateway.fmas_lido 0x823e0146... Ultra Sound
14058290 6 3024 1787 +1237 kiln 0x856b0004... Aestus
14062619 0 2925 1688 +1237 kiln 0xb26f9666... BloXroute Regulated
14065164 1 2941 1705 +1236 kiln 0xb26f9666... BloXroute Max Profit
14063419 2 2957 1721 +1236 coinbase 0x856b0004... Agnostic Gnosis
14064275 5 3006 1770 +1236 kiln 0x856b0004... Aestus
14058356 0 2924 1688 +1236 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14058103 0 2924 1688 +1236 coinbase 0x853b0078... Agnostic Gnosis
14058112 1 2940 1705 +1235 whale_0x8ebd Local Local
14062611 1 2940 1705 +1235 everstake 0xb26f9666... Titan Relay
14061769 3 2972 1738 +1234 0x9129eeb4... Ultra Sound
14060749 0 2922 1688 +1234 nethermind_lido 0x8527d16c... Ultra Sound
14060785 6 3020 1787 +1233 coinbase 0x856b0004... BloXroute Max Profit
14058601 5 3003 1770 +1233 kiln 0x856b0004... Agnostic Gnosis
14060063 1 2937 1705 +1232 coinbase 0xb26f9666... BloXroute Max Profit
14060098 5 3002 1770 +1232 kiln 0x853b0078... Aestus
14061635 0 2920 1688 +1232 ether.fi 0x8527d16c... Ultra Sound
14059480 12 3116 1885 +1231 p2porg 0xb26f9666... Titan Relay
14064885 10 3083 1852 +1231 everstake 0x856b0004... BloXroute Max Profit
14058967 0 2919 1688 +1231 coinbase 0x856b0004... Ultra Sound
14060233 6 3017 1787 +1230 kiln 0xb26f9666... BloXroute Max Profit
14059177 6 3017 1787 +1230 everstake 0xb67eaa5e... BloXroute Max Profit
14064286 6 3016 1787 +1229 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
14058172 5 2999 1770 +1229 kiln 0x853b0078... BloXroute Max Profit
14065067 0 2917 1688 +1229 coinbase 0x8db2a99d... Ultra Sound
14060557 1 2933 1705 +1228 kiln 0xb26f9666... BloXroute Max Profit
14058720 5 2998 1770 +1228 everstake 0xb26f9666... Aestus
14059390 5 2998 1770 +1228 kiln 0x856b0004... BloXroute Max Profit
14062250 0 2916 1688 +1228 piertwo 0x82c466b9... Flashbots
14058467 0 2916 1688 +1228 kiln 0x853b0078... Agnostic Gnosis
14060175 14 3145 1918 +1227 coinbase 0x8527d16c... Ultra Sound
14063052 5 2997 1770 +1227 coinbase 0x823e0146... Aestus
14063899 0 2915 1688 +1227 everstake 0x88a53ec4... BloXroute Max Profit
14061655 1 2930 1705 +1225 kiln 0x8527d16c... Ultra Sound
14060710 0 2913 1688 +1225 whale_0x8ebd 0x853b0078... Aestus
14060244 0 2913 1688 +1225 nethermind_lido 0x88857150... Ultra Sound
14062650 3 2962 1738 +1224 nethermind_lido 0x853b0078... Agnostic Gnosis
14058139 10 3075 1852 +1223 coinbase 0x8527d16c... Ultra Sound
14060213 5 2993 1770 +1223 coinbase 0x853b0078... Ultra Sound
14062585 8 3042 1819 +1223 everstake 0x853b0078... BloXroute Max Profit
14062251 1 2927 1705 +1222 kiln Local Local
14062979 11 3090 1869 +1221 whale_0x8ebd 0x853b0078... BloXroute Regulated
14059252 1 2926 1705 +1221 kiln 0x85fb0503... BloXroute Max Profit
14064348 1 2926 1705 +1221 everstake 0xb26f9666... Titan Relay
14058908 1 2926 1705 +1221 everstake 0xb26f9666... Titan Relay
14061726 12 3106 1885 +1221 coinbase 0x853b0078... Aestus
14059157 0 2909 1688 +1221 coinbase 0x856b0004... Agnostic Gnosis
14063608 11 3089 1869 +1220 whale_0x8ebd 0xb26f9666... Titan Relay
14064785 0 2908 1688 +1220 kiln 0xb26f9666... BloXroute Regulated
14063457 9 3055 1836 +1219 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14063924 0 2907 1688 +1219 whale_0x8ebd 0x853b0078... Agnostic Gnosis
14058670 2 2938 1721 +1217 stakingfacilities_lido 0x88857150... Ultra Sound
14058224 5 2987 1770 +1217 coinbase 0xb26f9666... BloXroute Regulated
14065010 0 2905 1688 +1217 kiln Local Local
14064122 6 3003 1787 +1216 everstake 0xa965c911... Ultra Sound
14062189 2 2937 1721 +1216 everstake 0x853b0078... BloXroute Regulated
14060936 0 2903 1688 +1215 0x8db2a99d... BloXroute Max Profit
14058744 0 2903 1688 +1215 coinbase 0x823e0146... Aestus
14064580 1 2919 1705 +1214 everstake 0x88a53ec4... BloXroute Max Profit
14058585 4 2968 1754 +1214 everstake 0xb26f9666... Titan Relay
14060732 0 2902 1688 +1214 everstake 0xb26f9666... Titan Relay
14059343 3 2951 1738 +1213 solo_stakers 0x855b00e6... BloXroute Max Profit
14062705 6 3000 1787 +1213 nethermind_lido 0xb26f9666... Aestus
14060350 0 2901 1688 +1213 everstake 0xb26f9666... Titan Relay
14059275 9 3048 1836 +1212 kiln 0xb26f9666... Aestus
14063367 10 3064 1852 +1212 coinbase 0xb26f9666... Titan Relay
14063262 0 2900 1688 +1212 everstake 0xb67eaa5e... BloXroute Regulated
14063994 6 2998 1787 +1211 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14065065 15 3145 1934 +1211 p2porg 0x8527d16c... Ultra Sound
14064478 0 2899 1688 +1211 everstake 0x851b00b1... BloXroute Max Profit
14063208 3 2948 1738 +1210 everstake 0xb26f9666... Titan Relay
14058200 2 2931 1721 +1210 everstake 0x88a53ec4... BloXroute Regulated
14064449 0 2897 1688 +1209 everstake 0x805e28e6... Flashbots
14060580 8 3028 1819 +1209 kiln 0x8527d16c... Ultra Sound
14061244 3 2946 1738 +1208 kiln 0x853b0078... Agnostic Gnosis
14059394 1 2913 1705 +1208 everstake 0x8db2a99d... Aestus
14063250 0 2896 1688 +1208 kiln Local Local
14062972 9 3043 1836 +1207 everstake 0x88857150... Ultra Sound
14060465 0 2895 1688 +1207 solo_stakers 0x856b0004... BloXroute Max Profit
14061376 6 2993 1787 +1206 stakingfacilities_lido 0xb26f9666... Titan Relay
14059732 5 2976 1770 +1206 lido Local Local
14063062 2 2926 1721 +1205 everstake 0x856b0004... BloXroute Max Profit
14064485 0 2893 1688 +1205 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14062906 0 2893 1688 +1205 kiln 0x88857150... Ultra Sound
14064601 1 2909 1705 +1204 everstake 0xb26f9666... Titan Relay
14061092 8 3023 1819 +1204 coinbase 0x853b0078... Aestus
14060716 0 2891 1688 +1203 0x853b0078... Agnostic Gnosis
14059598 1 2907 1705 +1202 everstake 0xb26f9666... Titan Relay
14060354 0 2890 1688 +1202 everstake 0x8527d16c... Ultra Sound
14063626 1 2906 1705 +1201 everstake 0x85fb0503... Aestus
14059907 10 3053 1852 +1201 whale_0x8ebd 0x9129eeb4... Aestus
14063442 0 2889 1688 +1201 kiln Local Local
14062139 8 3020 1819 +1201 solo_stakers 0xb67eaa5e... BloXroute Max Profit
14064549 1 2905 1705 +1200 kiln Local Local
14062941 5 2970 1770 +1200 coinbase Local Local
14064874 0 2888 1688 +1200 Local Local
14059256 3 2937 1738 +1199 everstake 0x8db2a99d... Ultra Sound
14062141 1 2904 1705 +1199 everstake 0x88a53ec4... BloXroute Max Profit
14062113 0 2887 1688 +1199 everstake 0xa965c911... Ultra Sound
14064513 4 2952 1754 +1198 coinbase Local Local
14059395 7 3001 1803 +1198 kiln 0x88857150... Ultra Sound
14062631 10 3050 1852 +1198 coinbase 0xb26f9666... Aestus
14061894 3 2935 1738 +1197 everstake 0xb67eaa5e... BloXroute Regulated
14061686 9 3033 1836 +1197 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14060931 7 2999 1803 +1196 0xb67eaa5e... BloXroute Max Profit
14063342 0 2884 1688 +1196 nethermind_lido 0x8db2a99d... Aestus
14061288 0 2884 1688 +1196 whale_0x8ebd Local Local
14062395 4 2949 1754 +1195 kiln 0x853b0078... Aestus
14061177 2 2916 1721 +1195 everstake 0xb26f9666... Titan Relay
14059514 7 2997 1803 +1194 coinbase 0x853b0078... BloXroute Regulated
14064454 5 2964 1770 +1194 kiln 0xb26f9666... BloXroute Max Profit
14059175 5 2964 1770 +1194 kiln 0x85fb0503... Aestus
14064460 0 2881 1688 +1193 everstake 0x856b0004... BloXroute Max Profit
14060535 6 2979 1787 +1192 coinbase 0x853b0078... Aestus
Total anomalies: 502

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