Sun, Mar 15, 2026

Propagation anomalies - 2026-03-15

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-03-15' AND slot_start_date_time < '2026-03-15'::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-03-15' AND slot_start_date_time < '2026-03-15'::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-03-15' AND slot_start_date_time < '2026-03-15'::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-03-15' AND slot_start_date_time < '2026-03-15'::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-03-15' AND slot_start_date_time < '2026-03-15'::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-03-15' AND slot_start_date_time < '2026-03-15'::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-03-15' AND slot_start_date_time < '2026-03-15'::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-03-15' AND slot_start_date_time < '2026-03-15'::date + INTERVAL 1 DAY
          AND event_date_time > '1970-01-01 00:00:01'
        GROUP BY slot, column_index
    )
    GROUP BY slot
)

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

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

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

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

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

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

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

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

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

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

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

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

print(f"Total valid blocks: {len(df):,}")
print(f"MEV blocks: {df['has_mev'].sum():,} ({df['has_mev'].mean()*100:.1f}%)")
print(f"Local blocks: {(~df['has_mev']).sum():,} ({(~df['has_mev']).mean()*100:.1f}%)")
Total valid blocks: 7,184
MEV blocks: 6,624 (92.2%)
Local blocks: 560 (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 = 1691.7 + 11.01 × blob_count (R² = 0.004)
Residual σ = 606.5ms
Anomalies (>2σ slow): 456 (6.3%)
Show code
# Create scatter plot with regression band
x_range = np.array([0, int(max_blobs)])
y_pred = intercept + slope * x_range
y_upper = y_pred + 2 * residual_std
y_lower = y_pred - 2 * residual_std

fig = go.Figure()

# Add ±2σ band
fig.add_trace(go.Scatter(
    x=np.concatenate([x_range, x_range[::-1]]),
    y=np.concatenate([y_upper, y_lower[::-1]]),
    fill="toself",
    fillcolor="rgba(100,100,100,0.2)",
    line=dict(width=0),
    name="±2σ band",
    hoverinfo="skip",
))

# Add regression line
fig.add_trace(go.Scatter(
    x=x_range,
    y=y_pred,
    mode="lines",
    line=dict(color="white", width=2, dash="dash"),
    name="Expected",
))

# Normal points (sample to avoid overplotting)
df_normal = df_anomaly[~df_anomaly["is_anomaly"]]
if len(df_normal) > 2000:
    df_normal = df_normal.sample(2000, random_state=42)

fig.add_trace(go.Scatter(
    x=df_normal["blob_count"],
    y=df_normal["block_first_seen_ms"],
    mode="markers",
    marker=dict(size=4, color="rgba(100,150,200,0.4)"),
    name=f"Normal ({len(df_anomaly) - n_anomalies:,})",
    hoverinfo="skip",
))

# Anomaly points
fig.add_trace(go.Scatter(
    x=df_outliers["blob_count"],
    y=df_outliers["block_first_seen_ms"],
    mode="markers",
    marker=dict(
        size=7,
        color="#e74c3c",
        line=dict(width=1, color="white"),
    ),
    name=f"Anomalies ({n_anomalies:,})",
    customdata=np.column_stack([
        df_outliers["slot"],
        df_outliers["residual_ms"].round(0),
        df_outliers["relay"],
    ]),
    hovertemplate="<b>Slot %{customdata[0]}</b><br>Blobs: %{x}<br>Actual: %{y:.0f}ms<br>+%{customdata[1]}ms vs expected<br>Relay: %{customdata[2]}<extra></extra>",
))

fig.update_layout(
    margin=dict(l=60, r=30, t=30, b=60),
    xaxis=dict(title="Blob count", range=[-0.5, int(max_blobs) + 0.5]),
    yaxis=dict(title="Block first seen (ms from slot start)"),
    legend=dict(orientation="h", yanchor="bottom", y=1.02, xanchor="right", x=1),
    height=500,
)
fig.show(config={"responsive": True})

All propagation anomalies

Blocks that propagated much slower than expected given their blob count, sorted by residual (worst first).

Show code
# All anomalies table with selectable text and Lab links
if n_anomalies > 0:
    df_table = df_outliers.sort_values("residual_ms", ascending=False)[
        ["slot", "blob_count", "block_first_seen_ms", "expected_ms", "residual_ms", "proposer", "builder", "relay"]
    ].copy()
    df_table["block_first_seen_ms"] = df_table["block_first_seen_ms"].round(0).astype(int)
    df_table["expected_ms"] = df_table["expected_ms"].round(0).astype(int)
    df_table["residual_ms"] = df_table["residual_ms"].round(0).astype(int)
    
    # Build HTML table
    html = '''
    <style>
    .anomaly-table { border-collapse: collapse; width: 100%; font-family: monospace; font-size: 13px; }
    .anomaly-table th { background: #2c3e50; color: white; padding: 8px 12px; text-align: left; position: sticky; top: 0; }
    .anomaly-table td { padding: 6px 12px; border-bottom: 1px solid #eee; }
    .anomaly-table tr:hover { background: #f5f5f5; }
    .anomaly-table .num { text-align: right; }
    .anomaly-table .delta { background: #ffebee; color: #c62828; font-weight: bold; }
    .anomaly-table a { color: #1976d2; text-decoration: none; }
    .anomaly-table a:hover { text-decoration: underline; }
    .table-container { max-height: 600px; overflow-y: auto; }
    </style>
    <div class="table-container">
    <table class="anomaly-table">
    <thead>
    <tr><th>Slot</th><th class="num">Blobs</th><th class="num">Actual (ms)</th><th class="num">Expected (ms)</th><th class="num">Δ (ms)</th><th>Proposer</th><th>Builder</th><th>Relay</th></tr>
    </thead>
    <tbody>
    '''
    
    for _, row in df_table.iterrows():
        slot_link = f'<a href="https://lab.ethpandaops.io/ethereum/slots/{row["slot"]}" target="_blank">{row["slot"]}</a>'
        html += f'''<tr>
            <td>{slot_link}</td>
            <td class="num">{row["blob_count"]}</td>
            <td class="num">{row["block_first_seen_ms"]}</td>
            <td class="num">{row["expected_ms"]}</td>
            <td class="num delta">+{row["residual_ms"]}</td>
            <td>{row["proposer"]}</td>
            <td>{row["builder"]}</td>
            <td>{row["relay"]}</td>
        </tr>'''
    
    html += '</tbody></table></div>'
    display(HTML(html))
    print(f"\nTotal anomalies: {len(df_table):,}")
else:
    print("No anomalies detected.")
SlotBlobsActual (ms)Expected (ms)Δ (ms)ProposerBuilderRelay
13894784 0 6182 1692 +4490 upbit Local Local
13892480 0 6045 1692 +4353 upbit Local Local
13898048 0 4723 1692 +3031 bridgetower_lido Local Local
13896288 0 4650 1692 +2958 upbit Local Local
13898240 0 4587 1692 +2895 solo_stakers Local Local
13898591 13 4313 1835 +2478 kraken Local Local
13895904 0 4058 1692 +2366 solo_stakers Local Local
13893594 0 4052 1692 +2360 stakefish Local Local
13895072 0 4050 1692 +2358 whale_0xe389 Local Local
13897688 5 3880 1747 +2133 solo_stakers Local Local
13896318 6 3803 1758 +2045 whale_0x8ebd 0x857b0038... Ultra Sound
13892481 0 3703 1692 +2011 kiln Local Local
13898763 5 3744 1747 +1997 everstake 0xb67eaa5e... Aestus
13896872 6 3667 1758 +1909 whale_0x8ebd 0x857b0038... Ultra Sound
13892896 5 3641 1747 +1894 nethermind_lido 0x8db2a99d... Ultra Sound
13895969 0 3574 1692 +1882 consensyscodefi_lido Local Local
13894638 5 3596 1747 +1849 whale_0x8ebd 0x88857150... Ultra Sound
13893533 1 3536 1703 +1833 whale_0x8ebd 0x857b0038... Ultra Sound
13897984 0 3502 1692 +1810 bitstamp 0x855b00e6... BloXroute Max Profit
13898432 8 3583 1780 +1803 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
13894294 1 3495 1703 +1792 whale_0x8ebd 0x823e0146... BloXroute Max Profit
13898017 1 3485 1703 +1782 blockdaemon 0x8527d16c... Ultra Sound
13896268 0 3460 1692 +1768 nethermind_lido 0xb26f9666... Titan Relay
13892727 0 3459 1692 +1767 whale_0x8ebd 0x8527d16c... Ultra Sound
13897955 7 3530 1769 +1761 ether.fi 0x855b00e6... Flashbots
13895188 5 3482 1747 +1735 nethermind_lido 0xb26f9666... Titan Relay
13893600 0 3419 1692 +1727 bridgetower_lido 0x852b0070... BloXroute Max Profit
13893219 5 3472 1747 +1725 nethermind_lido 0xb26f9666... Titan Relay
13898114 0 3414 1692 +1722 nethermind_lido 0x852b0070... Aestus
13894592 1 3425 1703 +1722 nethermind_lido 0x88a53ec4... BloXroute Regulated
13893859 0 3413 1692 +1721 nethermind_lido 0x8db2a99d... Flashbots
13897696 6 3475 1758 +1717 stakingfacilities_lido 0x855b00e6... BloXroute Max Profit
13892406 0 3404 1692 +1712 blockdaemon_lido 0xb67eaa5e... Titan Relay
13893330 6 3462 1758 +1704 blockdaemon_lido 0x88857150... Ultra Sound
13894656 0 3394 1692 +1702 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
13899061 4 3438 1736 +1702 nethermind_lido 0x8527d16c... Ultra Sound
13897986 7 3471 1769 +1702 blockdaemon 0xb4ce6162... Ultra Sound
13893003 6 3458 1758 +1700 nethermind_lido 0xb26f9666... Titan Relay
13894153 4 3435 1736 +1699 kraken 0xb26f9666... EthGas
13897620 10 3497 1802 +1695 whale_0x8ebd 0x855b00e6... BloXroute Max Profit
13895936 0 3380 1692 +1688 stakingfacilities_lido 0x823e0146... BloXroute Max Profit
13892890 3 3412 1725 +1687 nethermind_lido 0x823e0146... Ultra Sound
13895980 3 3394 1725 +1669 nethermind_lido 0x850b00e0... BloXroute Max Profit
13894115 0 3358 1692 +1666 nethermind_lido 0x853b0078... Aestus
13898049 5 3411 1747 +1664 whale_0x9212 Local Local
13899519 1 3365 1703 +1662 blockdaemon 0x8527d16c... Ultra Sound
13893171 5 3406 1747 +1659 blockdaemon_lido 0x8527d16c... Ultra Sound
13897251 1 3361 1703 +1658 ether.fi 0x850b00e0... BloXroute Max Profit
13898336 1 3359 1703 +1656 bitstamp 0xb67eaa5e... BloXroute Max Profit
13897516 6 3410 1758 +1652 blockdaemon_lido 0xb67eaa5e... Titan Relay
13893389 6 3407 1758 +1649 blockdaemon 0x8a850621... Titan Relay
13898115 0 3337 1692 +1645 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13895467 6 3402 1758 +1644 blockdaemon 0x8a850621... Titan Relay
13894655 0 3332 1692 +1640 ether.fi 0x855b00e6... BloXroute Max Profit
13899395 11 3453 1813 +1640 ether.fi 0x855b00e6... BloXroute Max Profit
13895755 0 3320 1692 +1628 blockdaemon_lido 0x8527d16c... Ultra Sound
13893921 2 3340 1714 +1626 whale_0x8ebd 0x85fb0503... BloXroute Max Profit
13896436 1 3320 1703 +1617 coinbase 0x823e0146... Aestus
13894664 0 3304 1692 +1612 whale_0x8ebd 0x855b00e6... BloXroute Max Profit
13897097 0 3303 1692 +1611 blockdaemon 0x8527d16c... Ultra Sound
13898971 5 3353 1747 +1606 whale_0xdc8d 0x850b00e0... BloXroute Regulated
13892914 10 3406 1802 +1604 blockdaemon 0x85fb0503... BloXroute Regulated
13893797 2 3313 1714 +1599 0xac23f8cc... BloXroute Regulated
13894018 3 3324 1725 +1599 whale_0x8ebd 0x8db2a99d... Flashbots
13898708 8 3379 1780 +1599 stakingfacilities_lido 0x855b00e6... BloXroute Max Profit
13898888 0 3290 1692 +1598 blockdaemon 0x8a850621... Titan Relay
13894611 1 3301 1703 +1598 whale_0xdc8d 0xb67eaa5e... BloXroute Regulated
13897172 4 3329 1736 +1593 nethermind_lido 0x855b00e6... BloXroute Max Profit
13894074 0 3284 1692 +1592 luno 0xb67eaa5e... BloXroute Regulated
13894628 0 3283 1692 +1591 nethermind_lido 0x8db2a99d... Flashbots
13893832 0 3283 1692 +1591 whale_0xdc8d 0x8db2a99d... BloXroute Regulated
13898819 5 3338 1747 +1591 blockdaemon 0xb67eaa5e... BloXroute Max Profit
13899475 0 3282 1692 +1590 blockdaemon_lido 0xb211df49... Ultra Sound
13898889 0 3281 1692 +1589 luno 0xb26f9666... Titan Relay
13896676 6 3347 1758 +1589 kiln 0xb67eaa5e... BloXroute Max Profit
13897428 4 3323 1736 +1587 0x850b00e0... BloXroute Regulated
13898223 3 3309 1725 +1584 0xb26f9666... Titan Relay
13896060 0 3274 1692 +1582 blockdaemon 0xb67eaa5e... BloXroute Max Profit
13893057 8 3356 1780 +1576 nethermind_lido 0xb26f9666... Titan Relay
13898954 3 3300 1725 +1575 blockdaemon 0x8a850621... Titan Relay
13898268 0 3265 1692 +1573 blockdaemon_lido 0x8527d16c... Ultra Sound
13892752 0 3263 1692 +1571 luno 0xb26f9666... Titan Relay
13892642 0 3261 1692 +1569 blockdaemon 0xb26f9666... Titan Relay
13892489 5 3316 1747 +1569 blockdaemon_lido 0x856b0004... Ultra Sound
13896002 5 3314 1747 +1567 nethermind_lido 0xb7c5e609... BloXroute Max Profit
13898741 0 3258 1692 +1566 blockdaemon 0x852b0070... Ultra Sound
13895905 1 3269 1703 +1566 blockdaemon_lido Local Local
13896161 1 3268 1703 +1565 stakingfacilities_lido 0x855b00e6... BloXroute Max Profit
13897536 5 3311 1747 +1564 p2porg 0x8527d16c... Ultra Sound
13893020 8 3342 1780 +1562 blockdaemon 0xb67eaa5e... BloXroute Max Profit
13892597 0 3252 1692 +1560 solo_stakers 0x8527d16c... Ultra Sound
13893581 2 3274 1714 +1560 blockdaemon_lido 0x8527d16c... Ultra Sound
13899169 0 3250 1692 +1558 luno 0x8527d16c... Ultra Sound
13895187 0 3246 1692 +1554 whale_0xdc8d 0xba003e46... BloXroute Regulated
13895139 5 3297 1747 +1550 blockdaemon_lido 0x88a53ec4... BloXroute Regulated
13899273 11 3362 1813 +1549 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
13898528 2 3262 1714 +1548 solo_stakers 0x82c466b9... Flashbots
13898296 11 3359 1813 +1546 solo_stakers 0x8db2a99d... Ultra Sound
13896224 0 3235 1692 +1543 bridgetower_lido 0x8527d16c... Ultra Sound
13897224 0 3234 1692 +1542 blockdaemon 0xb67eaa5e... BloXroute Max Profit
13897058 11 3354 1813 +1541 revolut 0xb67eaa5e... BloXroute Regulated
13896994 3 3265 1725 +1540 coinbase 0x8527d16c... Ultra Sound
13893826 1 3236 1703 +1533 blockdaemon_lido 0x8527d16c... Ultra Sound
13893951 6 3291 1758 +1533 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13896557 0 3223 1692 +1531 blockdaemon 0x8527d16c... Ultra Sound
13897327 5 3277 1747 +1530 whale_0xdc8d 0xb26f9666... Titan Relay
13894660 1 3231 1703 +1528 blockdaemon_lido 0x88857150... Ultra Sound
13895919 8 3307 1780 +1527 whale_0xdc8d 0xb26f9666... Titan Relay
13893199 5 3272 1747 +1525 nethermind_lido 0x855b00e6... BloXroute Max Profit
13892448 4 3260 1736 +1524 p2porg 0xb26f9666... Titan Relay
13899003 0 3214 1692 +1522 bitstamp 0x855b00e6... BloXroute Max Profit
13898034 0 3212 1692 +1520 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13892470 5 3266 1747 +1519 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
13897285 0 3210 1692 +1518 kiln 0xb67eaa5e... BloXroute Max Profit
13893757 1 3221 1703 +1518 blockdaemon 0x88857150... Ultra Sound
13893208 6 3275 1758 +1517 blockdaemon 0x8527d16c... Ultra Sound
13898391 5 3263 1747 +1516 blockdaemon_lido 0xb4ce6162... Ultra Sound
13897635 0 3207 1692 +1515 whale_0xdc8d 0x852b0070... Ultra Sound
13892486 8 3291 1780 +1511 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
13892490 0 3201 1692 +1509 0x88510a78... Flashbots
13898898 20 3420 1912 +1508 dappnode Local Local
13894500 3 3232 1725 +1507 revolut 0x853b0078... Ultra Sound
13897326 1 3209 1703 +1506 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
13896421 0 3197 1692 +1505 blockdaemon 0x852b0070... Ultra Sound
13893800 0 3197 1692 +1505 blockdaemon 0x85fb0503... BloXroute Max Profit
13893239 1 3208 1703 +1505 blockdaemon_lido 0x88857150... Ultra Sound
13895379 7 3272 1769 +1503 0x8db2a99d... Ultra Sound
13895726 0 3193 1692 +1501 blockdaemon_lido 0x8527d16c... Ultra Sound
13897063 2 3211 1714 +1497 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13893960 4 3233 1736 +1497 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
13892765 6 3253 1758 +1495 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13895945 5 3241 1747 +1494 coinbase 0x88a53ec4... Aestus
13893632 5 3241 1747 +1494 solo_stakers 0xb67eaa5e... Aestus
13894956 7 3262 1769 +1493 bitstamp 0x855b00e6... Flashbots
13892565 4 3227 1736 +1491 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
13899197 0 3181 1692 +1489 p2porg 0xb26f9666... BloXroute Max Profit
13899491 6 3247 1758 +1489 revolut 0x853b0078... Ultra Sound
13893620 0 3179 1692 +1487 whale_0x8ebd 0x852b0070... Aestus
13897940 0 3177 1692 +1485 nethermind_lido 0x851b00b1... Flashbots
13894786 0 3173 1692 +1481 nethermind_lido 0xac23f8cc... Flashbots
13898371 7 3250 1769 +1481 blockdaemon 0xb26f9666... Titan Relay
13892446 13 3316 1835 +1481 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13898781 15 3338 1857 +1481 blockdaemon_lido 0x8527d16c... Ultra Sound
13898506 0 3170 1692 +1478 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
13892728 1 3181 1703 +1478 revolut 0x8db2a99d... Ultra Sound
13894979 1 3181 1703 +1478 gateway.fmas_lido 0x855b00e6... BloXroute Max Profit
13894297 0 3167 1692 +1475 gateway.fmas_lido 0x851b00b1... BloXroute Max Profit
13898442 0 3167 1692 +1475 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
13893114 0 3165 1692 +1473 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
13898096 1 3176 1703 +1473 stakingfacilities_lido 0x850b00e0... BloXroute Max Profit
13898142 4 3209 1736 +1473 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
13898065 0 3164 1692 +1472 revolut 0x8527d16c... Ultra Sound
13895748 0 3160 1692 +1468 revolut 0x8527d16c... Ultra Sound
13899118 0 3160 1692 +1468 nethermind_lido 0x88a53ec4... BloXroute Regulated
13896021 0 3159 1692 +1467 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13895995 11 3278 1813 +1465 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
13893734 6 3221 1758 +1463 p2porg 0x8527d16c... Ultra Sound
13896368 0 3154 1692 +1462 solo_stakers 0x8527d16c... Ultra Sound
13895677 8 3242 1780 +1462 blockdaemon 0x850b00e0... BloXroute Max Profit
13895641 2 3174 1714 +1460 blockdaemon 0x8527d16c... Ultra Sound
13892763 5 3205 1747 +1458 revolut 0xb26f9666... Titan Relay
13893697 1 3160 1703 +1457 stakingfacilities_lido 0x88a53ec4... BloXroute Max Profit
13899265 5 3201 1747 +1454 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13899134 0 3145 1692 +1453 whale_0x8ebd 0x8527d16c... Ultra Sound
13896332 8 3230 1780 +1450 p2porg 0x850b00e0... BloXroute Regulated
13896617 2 3163 1714 +1449 whale_0x8ebd 0x857b0038... Ultra Sound
13896942 3 3174 1725 +1449 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
13895852 5 3192 1747 +1445 blockdaemon_lido 0x88857150... Ultra Sound
13896643 0 3132 1692 +1440 p2porg 0x852b0070... Aestus
13894909 0 3128 1692 +1436 nethermind_lido 0x88a53ec4... BloXroute Regulated
13893466 0 3127 1692 +1435 blockdaemon 0x856b0004... BloXroute Max Profit
13897430 0 3126 1692 +1434 coinbase 0x8db2a99d... Ultra Sound
13899506 5 3181 1747 +1434 whale_0xedc6 0x850b00e0... BloXroute Max Profit
13893758 3 3158 1725 +1433 everstake 0xb26f9666... Aestus
13896721 5 3180 1747 +1433 blockdaemon 0xb26f9666... Titan Relay
13896433 5 3180 1747 +1433 p2porg 0x850b00e0... BloXroute Max Profit
13899014 0 3124 1692 +1432 whale_0xedc6 0xb26f9666... BloXroute Max Profit
13893053 1 3131 1703 +1428 bitstamp 0x88857150... Ultra Sound
13897407 7 3197 1769 +1428 p2porg 0x850b00e0... BloXroute Regulated
13893522 0 3116 1692 +1424 blockdaemon 0x852b0070... BloXroute Max Profit
13898498 0 3116 1692 +1424 bitstamp 0x8527d16c... Ultra Sound
13896991 5 3169 1747 +1422 gateway.fmas_lido 0x8527d16c... Ultra Sound
13896213 6 3178 1758 +1420 kiln 0x93b11bec... Flashbots
13897115 5 3165 1747 +1418 gateway.fmas_lido 0xb26f9666... Titan Relay
13899004 12 3242 1824 +1418 p2porg 0x850b00e0... BloXroute Max Profit
13896819 5 3164 1747 +1417 whale_0x8ebd 0x8527d16c... Ultra Sound
13896391 8 3196 1780 +1416 p2porg 0x853b0078... Titan Relay
13895928 0 3107 1692 +1415 p2porg 0x850b00e0... BloXroute Regulated
13896918 0 3106 1692 +1414 whale_0x8ebd 0xb26f9666... Titan Relay
13895504 0 3106 1692 +1414 gateway.fmas_lido 0x88857150... Ultra Sound
13899268 1 3117 1703 +1414 whale_0xedc6 0xb26f9666... BloXroute Regulated
13896054 7 3183 1769 +1414 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13896813 0 3103 1692 +1411 p2porg 0x853b0078... Titan Relay
13894768 0 3103 1692 +1411 gateway.fmas_lido 0x8527d16c... Ultra Sound
13893830 8 3187 1780 +1407 p2porg 0xac23f8cc... Flashbots
13898458 1 3109 1703 +1406 p2porg 0x853b0078... Titan Relay
13897278 5 3153 1747 +1406 gateway.fmas_lido 0xb26f9666... Titan Relay
13896033 6 3162 1758 +1404 stakingfacilities_lido 0x8527d16c... Ultra Sound
13895587 0 3093 1692 +1401 gateway.fmas_lido 0x8527d16c... Ultra Sound
13894770 1 3104 1703 +1401 everstake 0x8527d16c... Ultra Sound
13894239 1 3103 1703 +1400 whale_0x8ebd 0xb4ce6162... Ultra Sound
13893659 0 3090 1692 +1398 figment 0x850b00e0... BloXroute Max Profit
13895690 0 3089 1692 +1397 figment 0xac23f8cc... BloXroute Max Profit
13899580 8 3176 1780 +1396 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13896174 0 3085 1692 +1393 0x8527d16c... Ultra Sound
13893956 1 3095 1703 +1392 p2porg 0x88a53ec4... BloXroute Regulated
13896099 1 3095 1703 +1392 whale_0x8ebd 0x8527d16c... Ultra Sound
13895107 0 3083 1692 +1391 p2porg 0xb26f9666... Titan Relay
13894109 3 3116 1725 +1391 ether.fi 0x88857150... Ultra Sound
13899523 6 3149 1758 +1391 ether.fi 0x855b00e6... BloXroute Max Profit
13893480 0 3081 1692 +1389 p2porg 0x850b00e0... BloXroute Regulated
13897137 0 3079 1692 +1387 0x88857150... Ultra Sound
13892571 0 3078 1692 +1386 p2porg 0x8527d16c... Ultra Sound
13894589 3 3111 1725 +1386 figment 0x853b0078... Ultra Sound
13897341 10 3188 1802 +1386 kiln 0xb7c5e609... BloXroute Max Profit
13896369 7 3154 1769 +1385 p2porg 0x853b0078... Titan Relay
13895836 6 3142 1758 +1384 gateway.fmas_lido 0x8527d16c... Ultra Sound
13892633 0 3075 1692 +1383 p2porg 0x850b00e0... BloXroute Max Profit
13893730 6 3141 1758 +1383 figment 0xb26f9666... BloXroute Max Profit
13896844 0 3074 1692 +1382 p2porg 0xb26f9666... BloXroute Regulated
13898599 2 3096 1714 +1382 p2porg 0xb26f9666... BloXroute Max Profit
13892812 3 3107 1725 +1382 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13897451 0 3073 1692 +1381 p2porg 0x823e0146... BloXroute Regulated
13894615 4 3117 1736 +1381 0x823e0146... Flashbots
13897567 6 3137 1758 +1379 blockdaemon 0x8527d16c... Ultra Sound
13893116 4 3114 1736 +1378 p2porg 0x850b00e0... BloXroute Regulated
13895623 6 3136 1758 +1378 blockdaemon_lido 0x853b0078... Ultra Sound
13899226 1 3080 1703 +1377 p2porg 0x8527d16c... Ultra Sound
13895455 6 3135 1758 +1377 coinbase 0x93b11bec... Flashbots
13898647 0 3068 1692 +1376 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
13895805 5 3123 1747 +1376 p2porg 0x8527d16c... Ultra Sound
13897374 0 3067 1692 +1375 everstake 0x852b0070... Agnostic Gnosis
13897774 0 3067 1692 +1375 p2porg 0x8527d16c... Ultra Sound
13893950 8 3154 1780 +1374 blockdaemon 0x88a53ec4... BloXroute Regulated
13894749 6 3130 1758 +1372 kiln 0x823e0146... BloXroute Max Profit
13894987 0 3062 1692 +1370 p2porg 0x850b00e0... BloXroute Regulated
13896663 7 3139 1769 +1370 whale_0xedc6 0xb26f9666... BloXroute Max Profit
13894395 12 3194 1824 +1370 gateway.fmas_lido 0x8db2a99d... Flashbots
13892418 0 3061 1692 +1369 whale_0x8ebd 0x853b0078... Ultra Sound
13898103 0 3061 1692 +1369 p2porg 0xa412c4b8... Ultra Sound
13898705 0 3060 1692 +1368 gateway.fmas_lido 0x8527d16c... Ultra Sound
13895022 0 3059 1692 +1367 p2porg 0xb26f9666... BloXroute Regulated
13897215 1 3069 1703 +1366 kiln 0xb67eaa5e... BloXroute Regulated
13898178 2 3079 1714 +1365 whale_0x8ebd 0x853b0078... Agnostic Gnosis
13895778 5 3111 1747 +1364 everstake 0x853b0078... BloXroute Max Profit
13892833 0 3055 1692 +1363 whale_0xedc6 0x852b0070... Agnostic Gnosis
13892912 0 3052 1692 +1360 blockdaemon_lido 0x8527d16c... Ultra Sound
13894356 3 3085 1725 +1360 kiln 0x8db2a99d... BloXroute Max Profit
13895310 5 3107 1747 +1360 nethermind_lido 0x8db2a99d... Ultra Sound
13899480 10 3162 1802 +1360 kiln 0x855b00e6... BloXroute Max Profit
13895867 0 3051 1692 +1359 p2porg 0xac23f8cc... BloXroute Max Profit
13898660 0 3051 1692 +1359 p2porg 0x88857150... Ultra Sound
13899493 2 3071 1714 +1357 kiln 0x850b00e0... BloXroute Max Profit
13898762 8 3137 1780 +1357 ether.fi 0x850b00e0... BloXroute Max Profit
13893054 0 3048 1692 +1356 figment 0x83bee517... Flashbots
13894085 2 3068 1714 +1354 whale_0x8ebd 0x85fb0503... BloXroute Max Profit
13896208 0 3044 1692 +1352 p2porg 0x88a53ec4... BloXroute Regulated
13897265 1 3054 1703 +1351 p2porg 0x8527d16c... Ultra Sound
13898120 7 3120 1769 +1351 p2porg 0x85fb0503... BloXroute Max Profit
13897770 0 3042 1692 +1350 p2porg 0x852b0070... Ultra Sound
13898481 3 3075 1725 +1350 p2porg 0xb67eaa5e... BloXroute Regulated
13895956 0 3041 1692 +1349 whale_0x23be 0x856b0004... Agnostic Gnosis
13899163 1 3052 1703 +1349 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13895816 3 3074 1725 +1349 p2porg 0x8527d16c... Ultra Sound
13893851 0 3040 1692 +1348 p2porg 0xb4ce6162... Ultra Sound
13896200 3 3073 1725 +1348 coinbase 0x88857150... Ultra Sound
13896534 0 3038 1692 +1346 p2porg 0xb26f9666... BloXroute Max Profit
13895529 4 3082 1736 +1346 ether.fi 0x855b00e6... BloXroute Max Profit
13893519 6 3102 1758 +1344 whale_0x8ebd 0x8a850621... Titan Relay
13893753 2 3057 1714 +1343 coinbase 0x8527d16c... Ultra Sound
13897367 6 3100 1758 +1342 whale_0x8ebd 0x8527d16c... Ultra Sound
13895333 6 3100 1758 +1342 p2porg 0x8527d16c... Ultra Sound
13894182 0 3032 1692 +1340 p2porg 0x852b0070... Agnostic Gnosis
13893364 5 3087 1747 +1340 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13899415 0 3031 1692 +1339 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13897618 1 3042 1703 +1339 everstake 0x850b00e0... Flashbots
13897884 3 3062 1725 +1337 kiln 0xb67eaa5e... BloXroute Regulated
13896297 6 3095 1758 +1337 p2porg 0x856b0004... Aestus
13895521 0 3027 1692 +1335 p2porg 0x856b0004... Aestus
13897182 0 3027 1692 +1335 everstake 0x8527d16c... Ultra Sound
13894527 4 3070 1736 +1334 p2porg 0x8527d16c... Ultra Sound
13895255 5 3081 1747 +1334 kiln 0x8db2a99d... BloXroute Max Profit
13898810 0 3024 1692 +1332 figment 0x8527d16c... Ultra Sound
13894814 0 3024 1692 +1332 ether.fi 0x8527d16c... Ultra Sound
13899526 2 3046 1714 +1332 p2porg 0x856b0004... Ultra Sound
13895608 1 3034 1703 +1331 p2porg 0x88857150... Ultra Sound
13897397 0 3022 1692 +1330 p2porg 0x8db2a99d... Flashbots
13894827 0 3022 1692 +1330 ether.fi 0xb26f9666... Titan Relay
13895907 0 3022 1692 +1330 p2porg 0x8527d16c... Ultra Sound
13893155 0 3022 1692 +1330 whale_0x8ebd 0x805e28e6... Flashbots
13895967 1 3032 1703 +1329 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
13898824 5 3076 1747 +1329 0x823e0146... Ultra Sound
13898540 1 3031 1703 +1328 whale_0x8ebd 0x88857150... Ultra Sound
13897197 4 3064 1736 +1328 p2porg 0x8db2a99d... Aestus
13898116 6 3086 1758 +1328 p2porg 0xb26f9666... BloXroute Max Profit
13895581 8 3108 1780 +1328 p2porg 0xb4ce6162... Ultra Sound
13895082 0 3019 1692 +1327 figment 0x8527d16c... Ultra Sound
13896488 0 3019 1692 +1327 ether.fi 0x88a53ec4... BloXroute Max Profit
13893232 1 3030 1703 +1327 p2porg 0x856b0004... Agnostic Gnosis
13898640 5 3072 1747 +1325 p2porg 0xb67eaa5e... Aestus
13892512 9 3116 1791 +1325 stakely_lido Local Local
13898309 0 3016 1692 +1324 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13893082 0 3016 1692 +1324 p2porg 0x851b00b1... BloXroute Max Profit
13894333 0 3016 1692 +1324 kiln 0xb67eaa5e... BloXroute Regulated
13894225 1 3027 1703 +1324 p2porg 0x823e0146... Flashbots
13897928 5 3070 1747 +1323 whale_0x8ebd 0x8db2a99d... Aestus
13895175 0 3014 1692 +1322 p2porg 0xb26f9666... BloXroute Max Profit
13896758 1 3025 1703 +1322 p2porg 0x88857150... Ultra Sound
13896432 2 3036 1714 +1322 ether.fi 0xb26f9666... Titan Relay
13892978 5 3069 1747 +1322 p2porg 0x88857150... Ultra Sound
13895897 1 3023 1703 +1320 whale_0x8ebd 0x8a850621... Titan Relay
13894462 2 3034 1714 +1320 whale_0x8ebd 0x8527d16c... Ultra Sound
13894104 1 3022 1703 +1319 p2porg 0xb26f9666... BloXroute Regulated
13897179 1 3022 1703 +1319 p2porg 0x88857150... Ultra Sound
13895049 0 3010 1692 +1318 whale_0xedc6 0x8527d16c... Ultra Sound
13896172 7 3087 1769 +1318 whale_0x8ebd 0x853b0078... Agnostic Gnosis
13892526 0 3008 1692 +1316 everstake 0x855b00e6... BloXroute Max Profit
13897628 0 3008 1692 +1316 kiln 0xb67eaa5e... BloXroute Regulated
13896435 12 3139 1824 +1315 kiln 0x88a53ec4... BloXroute Max Profit
13894652 0 3006 1692 +1314 p2porg 0x8527d16c... Ultra Sound
13898880 0 3006 1692 +1314 everstake 0x8527d16c... Ultra Sound
13898921 10 3116 1802 +1314 kiln 0x850b00e0... BloXroute Max Profit
13895184 0 3005 1692 +1313 kiln 0x8db2a99d... BloXroute Max Profit
13898535 0 3005 1692 +1313 whale_0xc541 0x88857150... Ultra Sound
13897150 13 3148 1835 +1313 whale_0x8ebd 0xb4ce6162... Ultra Sound
13895843 5 3058 1747 +1311 kiln 0x850b00e0... Flashbots
13899216 0 3002 1692 +1310 kiln 0xb67eaa5e... BloXroute Regulated
13895589 2 3024 1714 +1310 everstake 0x853b0078... BloXroute Regulated
13898926 0 3000 1692 +1308 ether.fi 0x8527d16c... Ultra Sound
13895966 0 3000 1692 +1308 ether.fi 0x88857150... Ultra Sound
13899321 0 2997 1692 +1305 kiln 0x851b00b1... BloXroute Max Profit
13893725 5 3051 1747 +1304 kiln 0x8db2a99d... Ultra Sound
13893274 1 3006 1703 +1303 whale_0x8ebd 0x8527d16c... Ultra Sound
13895483 6 3061 1758 +1303 coinbase 0xb67eaa5e... BloXroute Max Profit
13893915 1 3005 1703 +1302 kiln 0xb26f9666... Titan Relay
13897319 5 3049 1747 +1302 whale_0xedc6 0xb26f9666... BloXroute Max Profit
13892604 0 2993 1692 +1301 ether.fi 0xb26f9666... Titan Relay
13898884 5 3048 1747 +1301 whale_0xad3b 0xb26f9666... Titan Relay
13893577 0 2992 1692 +1300 kiln 0xb26f9666... Titan Relay
13896771 1 3002 1703 +1299 whale_0x8ebd 0x856b0004... Aestus
13898437 0 2990 1692 +1298 whale_0x8ebd 0x88857150... Ultra Sound
13898791 5 3044 1747 +1297 bloxstaking 0x8527d16c... Ultra Sound
13894931 1 2999 1703 +1296 kiln 0x88a53ec4... BloXroute Regulated
13896566 0 2987 1692 +1295 ether.fi 0x8527d16c... Ultra Sound
13893815 6 3052 1758 +1294 kiln 0x88a53ec4... BloXroute Max Profit
13894116 6 3052 1758 +1294 p2porg 0x856b0004... Aestus
13893891 1 2996 1703 +1293 kiln 0x88a53ec4... BloXroute Regulated
13895962 3 3018 1725 +1293 everstake 0x8a850621... Titan Relay
13896050 1 2995 1703 +1292 kiln 0xb26f9666... BloXroute Regulated
13894086 0 2983 1692 +1291 ether.fi 0x852b0070... Agnostic Gnosis
13896894 0 2983 1692 +1291 everstake 0x852b0070... BloXroute Max Profit
13898494 1 2993 1703 +1290 kiln 0x823e0146... BloXroute Max Profit
13898261 0 2979 1692 +1287 ether.fi 0x852b0070... Agnostic Gnosis
13893654 0 2978 1692 +1286 solo_stakers 0x8db2a99d... Aestus
13893499 3 3011 1725 +1286 ether.fi 0xb26f9666... Titan Relay
13893564 4 3021 1736 +1285 everstake 0x88857150... Ultra Sound
13894631 7 3054 1769 +1285 p2porg 0x823e0146... Ultra Sound
13892761 0 2976 1692 +1284 kiln 0xb26f9666... BloXroute Max Profit
13893998 1 2987 1703 +1284 kiln 0x88a53ec4... BloXroute Regulated
13897180 7 3053 1769 +1284 p2porg 0x853b0078... Agnostic Gnosis
13897739 0 2975 1692 +1283 kiln 0x8db2a99d... Aestus
13894618 0 2974 1692 +1282 whale_0x7791 0xb26f9666... BloXroute Max Profit
13899352 0 2974 1692 +1282 stakingfacilities_lido 0x8527d16c... Ultra Sound
13893299 5 3028 1747 +1281 p2porg 0xb26f9666... BloXroute Max Profit
13892847 5 3027 1747 +1280 ether.fi 0xb26f9666... Titan Relay
13894311 12 3104 1824 +1280 whale_0xedc6 0x856b0004... Aestus
13896567 3 3004 1725 +1279 whale_0x8ebd 0x856b0004... Agnostic Gnosis
13899358 6 3037 1758 +1279 bitstamp 0x8527d16c... Ultra Sound
13895144 0 2970 1692 +1278 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
13895535 0 2970 1692 +1278 kiln 0xb26f9666... Titan Relay
13892723 0 2969 1692 +1277 kiln 0x8527d16c... Ultra Sound
13896220 14 3123 1846 +1277 coinbase 0x93b11bec... Flashbots
13896447 0 2968 1692 +1276 kiln 0xb26f9666... Aestus
13896700 0 2966 1692 +1274 kiln 0xb26f9666... Titan Relay
13897416 5 3021 1747 +1274 kiln 0xb26f9666... BloXroute Max Profit
13894774 0 2965 1692 +1273 ether.fi 0xb26f9666... Titan Relay
13896988 5 3020 1747 +1273 kiln 0x8527d16c... Ultra Sound
13896156 5 3020 1747 +1273 whale_0x7791 0xb26f9666... Titan Relay
13896462 0 2963 1692 +1271 whale_0x8ebd 0x852b0070... BloXroute Max Profit
13895350 1 2974 1703 +1271 kiln 0x823e0146... Aestus
13895369 5 3018 1747 +1271 everstake 0x8527d16c... Ultra Sound
13898277 5 3017 1747 +1270 everstake 0x88a53ec4... BloXroute Regulated
13894639 5 3016 1747 +1269 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
13895482 2 2981 1714 +1267 kiln 0xac23f8cc... Flashbots
13898230 7 3035 1769 +1266 p2porg 0x856b0004... Agnostic Gnosis
13892707 1 2967 1703 +1264 whale_0x9bf2 0x857b0038... Ultra Sound
13896095 1 2965 1703 +1262 whale_0x8ebd 0x856b0004... Agnostic Gnosis
13894470 1 2964 1703 +1261 kiln 0xb4ce6162... Ultra Sound
13893379 5 3008 1747 +1261 kiln 0xb67eaa5e... BloXroute Max Profit
13897880 6 3019 1758 +1261 nethermind_lido 0x855b00e6... Flashbots
13895274 8 3041 1780 +1261 everstake 0x8db2a99d... Ultra Sound
13897230 5 3005 1747 +1258 kiln 0xb26f9666... BloXroute Regulated
13896003 1 2960 1703 +1257 everstake 0xb26f9666... Titan Relay
13897794 1 2960 1703 +1257 whale_0x8ebd 0x853b0078... Agnostic Gnosis
13893391 5 3004 1747 +1257 whale_0x8ebd Local Local
13895374 0 2948 1692 +1256 whale_0x8ebd 0xba003e46... BloXroute Max Profit
13893524 1 2959 1703 +1256 everstake 0xb67eaa5e... BloXroute Max Profit
13899124 6 3014 1758 +1256 kiln 0x853b0078... Agnostic Gnosis
13897654 14 3102 1846 +1256 everstake 0x855b00e6... BloXroute Max Profit
13896366 8 3035 1780 +1255 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
13892722 2 2967 1714 +1253 everstake 0xb67eaa5e... BloXroute Max Profit
13894495 5 3000 1747 +1253 whale_0x7791 0xb26f9666... Titan Relay
13896467 5 3000 1747 +1253 whale_0x7c1b Local Local
13892785 5 3000 1747 +1253 everstake 0x855b00e6... BloXroute Max Profit
13894249 3 2977 1725 +1252 whale_0x7791 0x853b0078... Aestus
13897550 3 2976 1725 +1251 0x8527d16c... Ultra Sound
13893570 1 2953 1703 +1250 everstake 0x88a53ec4... BloXroute Regulated
13898311 5 2997 1747 +1250 stader 0x88a53ec4... BloXroute Regulated
13894441 0 2941 1692 +1249 solo_stakers 0xb4ce6162... Ultra Sound
13893442 0 2941 1692 +1249 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
13895362 1 2952 1703 +1249 coinbase 0x856b0004... Agnostic Gnosis
13896810 0 2940 1692 +1248 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
13894907 2 2961 1714 +1247 kiln 0x856b0004... BloXroute Max Profit
13897337 1 2949 1703 +1246 kiln 0xb26f9666... BloXroute Max Profit
13892653 3 2971 1725 +1246 stakingfacilities_lido 0x8527d16c... Ultra Sound
13899258 8 3026 1780 +1246 kiln 0x8527d16c... Ultra Sound
13895793 0 2937 1692 +1245 kiln 0xb4ce6162... Ultra Sound
13897247 1 2948 1703 +1245 kiln 0xac23f8cc... BloXroute Max Profit
13896770 0 2936 1692 +1244 kiln 0xb26f9666... BloXroute Max Profit
13898346 0 2936 1692 +1244 everstake 0x851b00b1... BloXroute Max Profit
13895142 5 2991 1747 +1244 whale_0x8ebd 0xb26f9666... Titan Relay
13898274 5 2991 1747 +1244 everstake 0xb26f9666... Titan Relay
13899279 4 2979 1736 +1243 bitstamp 0x855b00e6... BloXroute Max Profit
13898918 8 3023 1780 +1243 coinbase 0x88857150... Ultra Sound
13894695 0 2932 1692 +1240 kiln 0x8527d16c... Ultra Sound
13892911 1 2943 1703 +1240 coinbase 0xb26f9666... Titan Relay
13892948 3 2965 1725 +1240 whale_0x8ebd 0x82c466b9... Ultra Sound
13896763 5 2987 1747 +1240 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
13896463 5 2987 1747 +1240 kiln 0xb26f9666... Titan Relay
13897208 5 2986 1747 +1239 kiln 0xac23f8cc... Flashbots
13899002 10 3040 1802 +1238 kiln 0xb26f9666... Titan Relay
13899195 5 2984 1747 +1237 stakingfacilities_lido 0xb67eaa5e... BloXroute Max Profit
13896776 7 3005 1769 +1236 coinbase 0x853b0078... Aestus
13892695 1 2938 1703 +1235 kiln 0x8db2a99d... Ultra Sound
13894222 5 2979 1747 +1232 whale_0x8ebd 0x857b0038... Ultra Sound
13893943 0 2923 1692 +1231 kiln 0xb26f9666... BloXroute Regulated
13899188 5 2978 1747 +1231 kiln 0x8527d16c... Ultra Sound
13897637 0 2922 1692 +1230 kiln 0x8db2a99d... Flashbots
13893658 5 2977 1747 +1230 nethermind_lido 0x8db2a99d... Flashbots
13894422 6 2987 1758 +1229 whale_0x8ebd 0x857b0038... Ultra Sound
13894517 0 2919 1692 +1227 everstake 0x853b0078... BloXroute Max Profit
13899041 0 2915 1692 +1223 everstake 0x850b00e0... BloXroute Max Profit
13894214 3 2948 1725 +1223 kiln 0x856b0004... Aestus
13896420 4 2959 1736 +1223 everstake 0x8527d16c... Ultra Sound
13895283 5 2970 1747 +1223 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
13898795 11 3036 1813 +1223 whale_0xdd6c 0x853b0078... Flashbots
13893579 4 2957 1736 +1221 whale_0x8ebd 0x85fb0503... BloXroute Max Profit
13899209 0 2911 1692 +1219 kiln 0x853b0078... Agnostic Gnosis
13894954 5 2965 1747 +1218 kiln 0x8527d16c... Ultra Sound
13898424 7 2986 1769 +1217 kiln Local Local
13895524 0 2908 1692 +1216 whale_0x8ebd 0x8527d16c... Ultra Sound
13893624 0 2908 1692 +1216 coinbase 0x853b0078... Aestus
13897073 3 2941 1725 +1216 everstake 0xb26f9666... Titan Relay
13897410 0 2907 1692 +1215 whale_0x8ebd 0x8527d16c... Ultra Sound
13893270 3 2940 1725 +1215 whale_0x8ebd 0x856b0004... Aestus
13897077 1 2917 1703 +1214 kiln 0x8527d16c... Ultra Sound
Total anomalies: 456

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