Fri, Feb 27, 2026

Propagation anomalies - 2026-02-27

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-02-27' AND slot_start_date_time < '2026-02-27'::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-02-27' AND slot_start_date_time < '2026-02-27'::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-02-27' AND slot_start_date_time < '2026-02-27'::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-02-27' AND slot_start_date_time < '2026-02-27'::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-02-27' AND slot_start_date_time < '2026-02-27'::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-02-27' AND slot_start_date_time < '2026-02-27'::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-02-27' AND slot_start_date_time < '2026-02-27'::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-02-27' AND slot_start_date_time < '2026-02-27'::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,198
MEV blocks: 6,679 (92.8%)
Local blocks: 519 (7.2%)

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 = 1740.2 + 13.53 × blob_count (R² = 0.008)
Residual σ = 634.6ms
Anomalies (>2σ slow): 404 (5.6%)
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
13781727 0 11873 1740 +10133 rocketpool Local Local
13783206 0 6269 1740 +4529 solo_stakers Local Local
13783360 0 5746 1740 +4006 abyss_finance Local Local
13778944 0 5293 1740 +3553 upbit Local Local
13778144 0 4520 1740 +2780 upbit Local Local
13783606 13 4502 1916 +2586 whale_0xad1d Local Local
13783439 0 4289 1740 +2549 stakefish Local Local
13777210 9 4330 1862 +2468 ether.fi 0x86f3ad35... EthGas
13783240 0 4194 1740 +2454 stakefish Local Local
13780903 0 4119 1740 +2379 stakefish Local Local
13779293 0 3991 1740 +2251 piertwo Local Local
13778784 0 3878 1740 +2138 figment Local Local
13780811 0 3875 1740 +2135 lido 0xb67eaa5e... Aestus
13779552 0 3809 1740 +2069 liquid_collective Local Local
13783072 0 3800 1740 +2060 stakefish 0x88a53ec4... BloXroute Max Profit
13781345 11 3940 1889 +2051 stakefish Local Local
13781104 11 3939 1889 +2050 stakefish Local Local
13781716 10 3830 1876 +1954 whale_0xad1d Local Local
13783384 5 3701 1808 +1893 blockdaemon 0x8527d16c... Ultra Sound
13781438 1 3617 1754 +1863 whale_0xdc8d 0x850b00e0... BloXroute Regulated
13782419 4 3633 1794 +1839 everstake 0xb67eaa5e... BloXroute Max Profit
13780242 5 3640 1808 +1832 stakefish Local Local
13783640 2 3576 1767 +1809 figment 0x853b0078... Titan Relay
13781312 0 3543 1740 +1803 rocketpool 0x850b00e0... Flashbots
13778806 0 3542 1740 +1802 blockdaemon_lido 0x851b00b1... Ultra Sound
13780315 3 3582 1781 +1801 stakefish Local Local
13781205 1 3533 1754 +1779 figment 0xb26f9666... Titan Relay
13782669 5 3583 1808 +1775 whale_0x8f33 Local Local
13777239 3 3548 1781 +1767 whale_0x9bf6 0xb67eaa5e... Aestus
13781299 5 3551 1808 +1743 stakefish Local Local
13781266 0 3467 1740 +1727 everstake 0xb26f9666... Titan Relay
13783695 1 3472 1754 +1718 everstake 0xb67eaa5e... BloXroute Regulated
13780243 0 3436 1740 +1696 blockdaemon 0x8527d16c... Ultra Sound
13783617 0 3435 1740 +1695 blockdaemon 0x88a53ec4... BloXroute Regulated
13778137 7 3526 1835 +1691 blockdaemon 0x850b00e0... BloXroute Max Profit
13777894 7 3525 1835 +1690 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13781120 3 3468 1781 +1687 everstake_lido Local Local
13784304 0 3421 1740 +1681 lido 0x852b0070... Ultra Sound
13781385 1 3434 1754 +1680 everstake 0x856b0004... BloXroute Max Profit
13779392 3 3458 1781 +1677 stakefish Local Local
13781735 1 3425 1754 +1671 blockdaemon 0x850b00e0... BloXroute Max Profit
13783776 3 3446 1781 +1665 stakingfacilities_lido 0xb67eaa5e... BloXroute Max Profit
13780817 6 3482 1821 +1661 blockdaemon 0x8a850621... Titan Relay
13783227 4 3449 1794 +1655 everstake 0x8db2a99d... BloXroute Max Profit
13782451 0 3393 1740 +1653 everstake 0x852b0070... Ultra Sound
13782291 7 3487 1835 +1652 blockdaemon 0x8a850621... Titan Relay
13778393 2 3410 1767 +1643 blockdaemon 0x8a850621... Titan Relay
13780493 5 3449 1808 +1641 blockdaemon 0x8a850621... Titan Relay
13777323 10 3514 1876 +1638 blockdaemon 0x88a53ec4... BloXroute Regulated
13778240 1 3383 1754 +1629 stakingfacilities_lido 0x8527d16c... Ultra Sound
13782019 1 3382 1754 +1628 solo_stakers 0x88a53ec4... BloXroute Max Profit
13777939 5 3435 1808 +1627 everstake 0x88a53ec4... BloXroute Max Profit
13782842 3 3406 1781 +1625 blockdaemon 0x856b0004... BloXroute Max Profit
13783987 0 3359 1740 +1619 everstake 0xb26f9666... Titan Relay
13777751 5 3422 1808 +1614 whale_0x8ebd 0xb26f9666... Titan Relay
13781710 0 3352 1740 +1612 everstake 0x852b0070... Aestus
13778626 6 3433 1821 +1612 whale_0x8ebd 0x8a850621... Titan Relay
13778452 0 3351 1740 +1611 blockdaemon 0xa0366397... Ultra Sound
13779565 9 3471 1862 +1609 revolut 0xb67eaa5e... BloXroute Regulated
13777376 9 3458 1862 +1596 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13780988 14 3524 1930 +1594 ether.fi 0x850b00e0... BloXroute Max Profit
13779026 3 3369 1781 +1588 blockdaemon_lido 0x88857150... Ultra Sound
13777486 0 3321 1740 +1581 blockdaemon 0x8a850621... Titan Relay
13780278 5 3387 1808 +1579 blockdaemon_lido 0x88857150... Ultra Sound
13780645 8 3426 1848 +1578 everstake 0x856b0004... BloXroute Max Profit
13777730 6 3394 1821 +1573 everstake 0x88a53ec4... BloXroute Max Profit
13778280 0 3312 1740 +1572 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13780989 3 3351 1781 +1570 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13782372 1 3318 1754 +1564 everstake 0x8527d16c... Ultra Sound
13779732 5 3372 1808 +1564 solo_stakers 0x853b0078... Agnostic Gnosis
13779136 5 3371 1808 +1563 gateway.fmas_lido 0x8527d16c... Ultra Sound
13778214 6 3384 1821 +1563 everstake 0x8db2a99d... BloXroute Max Profit
13781375 0 3301 1740 +1561 everstake 0x852b0070... Agnostic Gnosis
13781201 0 3301 1740 +1561 blockdaemon_lido 0x8527d16c... Ultra Sound
13783867 0 3300 1740 +1560 blockdaemon_lido 0xb26f9666... Titan Relay
13780690 12 3461 1903 +1558 everstake 0x88a53ec4... BloXroute Regulated
13783721 1 3312 1754 +1558 everstake 0x823e0146... BloXroute Max Profit
13780575 5 3363 1808 +1555 blockdaemon_lido 0x88857150... Ultra Sound
13781058 13 3470 1916 +1554 everstake 0x88a53ec4... BloXroute Max Profit
13783976 0 3290 1740 +1550 mantle 0xa9bd259c... Flashbots
13777656 0 3289 1740 +1549 luno 0x91b123d8... BloXroute Regulated
13777719 5 3355 1808 +1547 0x88a53ec4... BloXroute Regulated
13778651 2 3313 1767 +1546 blockdaemon 0xac23f8cc... Ultra Sound
13783833 6 3367 1821 +1546 p2porg 0x850b00e0... BloXroute Max Profit
13779129 1 3299 1754 +1545 everstake 0xb26f9666... Aestus
13782304 9 3406 1862 +1544 stakingfacilities_lido 0x8527d16c... Ultra Sound
13780136 1 3297 1754 +1543 blockdaemon 0xb26f9666... Titan Relay
13778424 3 3322 1781 +1541 whale_0xdc8d 0xb67eaa5e... BloXroute Regulated
13781420 0 3281 1740 +1541 everstake 0x926b7905... BloXroute Max Profit
13782980 2 3307 1767 +1540 blockdaemon_lido 0x850b00e0... BloXroute Regulated
13782631 3 3320 1781 +1539 everstake 0x88a53ec4... BloXroute Regulated
13784356 9 3401 1862 +1539 whale_0x8ebd 0x853b0078... Ultra Sound
13779264 0 3279 1740 +1539 everstake 0x852b0070... BloXroute Max Profit
13778694 14 3468 1930 +1538 kiln 0x855b00e6... BloXroute Max Profit
13778694 14 3468 1930 +1538 kiln 0x855b00e6... BloXroute Max Profit
13778029 1 3292 1754 +1538 blockdaemon_lido 0x856b0004... Ultra Sound
13779092 6 3357 1821 +1536 whale_0xdc8d 0xa230e2cf... BloXroute Regulated
13781778 0 3274 1740 +1534 luno 0xb26f9666... Titan Relay
13783134 5 3340 1808 +1532 blockdaemon_lido 0x853b0078... BloXroute Max Profit
13781352 5 3339 1808 +1531 everstake 0xb67eaa5e... BloXroute Regulated
13778525 0 3271 1740 +1531 blockdaemon 0xb26f9666... Titan Relay
13778389 0 3270 1740 +1530 luno 0xb26f9666... Titan Relay
13778314 8 3378 1848 +1530 blockdaemon_lido 0x856b0004... Ultra Sound
13778476 0 3269 1740 +1529 everstake 0xb67eaa5e... BloXroute Regulated
13781737 11 3417 1889 +1528 blockdaemon 0x853b0078... Ultra Sound
13782599 0 3268 1740 +1528 blockdaemon 0xb26f9666... Titan Relay
13782835 2 3294 1767 +1527 p2porg 0x850b00e0... Flashbots
13780258 5 3333 1808 +1525 0x8527d16c... Ultra Sound
13782114 5 3333 1808 +1525 blockdaemon 0xb26f9666... Titan Relay
13778142 6 3346 1821 +1525 figment 0x853b0078... Ultra Sound
13777943 0 3261 1740 +1521 blockdaemon 0xb26f9666... Titan Relay
13779614 2 3288 1767 +1521 blockdaemon 0x856b0004... Ultra Sound
13778224 6 3341 1821 +1520 everstake 0x88a53ec4... BloXroute Regulated
13778078 7 3353 1835 +1518 luno 0xa230e2cf... BloXroute Regulated
13782600 15 3460 1943 +1517 blockdaemon_lido 0x853b0078... Ultra Sound
13783194 0 3256 1740 +1516 blockdaemon 0xb26f9666... Titan Relay
13778556 1 3269 1754 +1515 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13781083 0 3252 1740 +1512 everstake 0xb26f9666... Titan Relay
13781157 1 3264 1754 +1510 luno 0x8527d16c... Ultra Sound
13782310 11 3399 1889 +1510 everstake 0x853b0078... BloXroute Max Profit
13778589 5 3317 1808 +1509 blockdaemon_lido 0x8527d16c... Ultra Sound
13778690 6 3328 1821 +1507 blockdaemon_lido 0x8527d16c... Ultra Sound
13778712 5 3312 1808 +1504 everstake 0x853b0078... BloXroute Max Profit
13783842 8 3352 1848 +1504 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
13778584 1 3256 1754 +1502 everstake 0xb26f9666... Titan Relay
13782161 2 3265 1767 +1498 everstake 0x853b0078... BloXroute Max Profit
13780383 1 3251 1754 +1497 everstake 0x857b0038... Ultra Sound
13777862 8 3341 1848 +1493 everstake 0xa230e2cf... BloXroute Max Profit
13778243 12 3394 1903 +1491 gateway.fmas_lido 0xac23f8cc... BloXroute Max Profit
13779513 0 3230 1740 +1490 everstake 0xb26f9666... Aestus
13780058 0 3230 1740 +1490 luno 0x852b0070... Ultra Sound
13777453 12 3391 1903 +1488 blockdaemon 0x850b00e0... BloXroute Regulated
13781702 0 3227 1740 +1487 everstake 0xb26f9666... Titan Relay
13778013 8 3335 1848 +1487 everstake 0xb26f9666... Aestus
13784281 1 3239 1754 +1485 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
13782106 3 3265 1781 +1484 everstake 0xb26f9666... Titan Relay
13783226 3 3265 1781 +1484 everstake 0xb26f9666... Titan Relay
13779999 9 3346 1862 +1484 ether.fi Local Local
13782601 0 3223 1740 +1483 blockdaemon 0x850b00e0... BloXroute Regulated
13779596 0 3223 1740 +1483 everstake 0x852b0070... BloXroute Max Profit
13781857 0 3221 1740 +1481 revolut 0xb26f9666... Titan Relay
13782104 6 3301 1821 +1480 revolut 0x8527d16c... Ultra Sound
13784075 0 3219 1740 +1479 blockdaemon_lido 0x88510a78... BloXroute Regulated
13778685 6 3300 1821 +1479 blockdaemon_lido 0x91b123d8... BloXroute Regulated
13781056 1 3232 1754 +1478 p2porg 0xb67eaa5e... BloXroute Max Profit
13779911 11 3367 1889 +1478 luno 0x853b0078... Ultra Sound
13777366 0 3217 1740 +1477 revolut 0x853b0078... Ultra Sound
13777631 2 3244 1767 +1477 everstake 0xb26f9666... Titan Relay
13783548 0 3215 1740 +1475 whale_0xdc8d 0x852b0070... Ultra Sound
13781360 7 3305 1835 +1470 everstake 0x8527d16c... Ultra Sound
13778513 1 3223 1754 +1469 everstake 0xac23f8cc... Agnostic Gnosis
13778661 7 3304 1835 +1469 blockdaemon 0x853b0078... BloXroute Max Profit
13783985 6 3290 1821 +1469 everstake 0xb26f9666... Titan Relay
13783921 6 3289 1821 +1468 whale_0xdc8d 0x8527d16c... Ultra Sound
13784277 7 3302 1835 +1467 p2porg 0x855b00e6... BloXroute Max Profit
13780624 0 3206 1740 +1466 revolut 0xb26f9666... Titan Relay
13784141 5 3273 1808 +1465 everstake 0xb26f9666... Titan Relay
13780132 6 3286 1821 +1465 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13783486 1 3218 1754 +1464 blockdaemon 0xb67eaa5e... BloXroute Regulated
13778915 1 3216 1754 +1462 blockdaemon_lido 0xb26f9666... Titan Relay
13780465 0 3202 1740 +1462 everstake 0xb67eaa5e... BloXroute Regulated
13779389 0 3201 1740 +1461 everstake 0xb26f9666... Aestus
13781463 1 3211 1754 +1457 everstake 0x853b0078... BloXroute Max Profit
13780110 12 3359 1903 +1456 blockdaemon 0xb26f9666... Titan Relay
13783031 5 3264 1808 +1456 blockdaemon_lido 0xb26f9666... Titan Relay
13784059 13 3372 1916 +1456 everstake 0x850b00e0... BloXroute Max Profit
13782765 7 3290 1835 +1455 whale_0xdc8d 0x8a850621... Ultra Sound
13781059 0 3193 1740 +1453 blockdaemon_lido 0xb26f9666... Titan Relay
13780285 9 3314 1862 +1452 everstake 0x856b0004... BloXroute Max Profit
13783280 1 3201 1754 +1447 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13780747 1 3200 1754 +1446 revolut 0x8527d16c... Ultra Sound
13783080 5 3254 1808 +1446 kiln 0xac23f8cc... BloXroute Max Profit
13781597 0 3186 1740 +1446 revolut 0x8527d16c... Ultra Sound
13780682 11 3334 1889 +1445 p2porg 0x88a53ec4... BloXroute Regulated
13779763 3 3225 1781 +1444 p2porg 0x850b00e0... BloXroute Regulated
13784322 6 3265 1821 +1444 0x857b0038... Ultra Sound
13784142 3 3223 1781 +1442 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13782759 1 3194 1754 +1440 gateway.fmas_lido 0x853b0078... Agnostic Gnosis
13780391 6 3260 1821 +1439 p2porg 0x850b00e0... BloXroute Regulated
13782486 0 3177 1740 +1437 revolut 0x8527d16c... Ultra Sound
13780833 1 3189 1754 +1435 everstake 0x88857150... Ultra Sound
13777489 0 3175 1740 +1435 everstake 0xb26f9666... Aestus
13777747 6 3254 1821 +1433 bitstamp 0x8527d16c... Ultra Sound
13779326 11 3320 1889 +1431 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13781943 2 3198 1767 +1431 whale_0x8ebd 0x8a850621... Ultra Sound
13781684 0 3169 1740 +1429 ether.fi 0x8db2a99d... Flashbots
13782496 5 3235 1808 +1427 p2porg 0x8527d16c... Ultra Sound
13781111 9 3289 1862 +1427 luno 0x8527d16c... Ultra Sound
13782383 15 3370 1943 +1427 kiln 0x8db2a99d... BloXroute Max Profit
13783699 1 3179 1754 +1425 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13780654 15 3367 1943 +1424 blockdaemon 0x853b0078... Ultra Sound
13778691 0 3163 1740 +1423 stakingfacilities_lido 0x851b00b1... Ultra Sound
13781848 0 3163 1740 +1423 everstake 0x88a53ec4... BloXroute Max Profit
13779729 15 3365 1943 +1422 blockdaemon_lido 0x850b00e0... BloXroute Regulated
13782149 0 3162 1740 +1422 0x8db2a99d... Flashbots
13782644 6 3242 1821 +1421 blockdaemon_lido 0x853b0078... BloXroute Regulated
13777627 5 3226 1808 +1418 blockdaemon_lido 0xb26f9666... Titan Relay
13781132 3 3197 1781 +1416 p2porg 0x93b11bec... Flashbots
13782939 5 3223 1808 +1415 everstake 0xb26f9666... Titan Relay
13783763 1 3167 1754 +1413 gateway.fmas_lido 0xac23f8cc... Flashbots
13779997 10 3288 1876 +1412 p2porg 0x856b0004... Agnostic Gnosis
13780008 10 3283 1876 +1407 everstake 0x8db2a99d... Ultra Sound
13780527 5 3214 1808 +1406 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13778688 0 3146 1740 +1406 blockscape_lido 0x851b00b1... Flashbots
13777318 0 3141 1740 +1401 everstake 0x852b0070... BloXroute Max Profit
13781796 5 3208 1808 +1400 everstake 0x857b0038... Ultra Sound
13781897 11 3288 1889 +1399 blockdaemon_lido 0xb26f9666... Titan Relay
13778397 0 3139 1740 +1399 p2porg 0x852b0070... Aestus
13780482 6 3220 1821 +1399 blockdaemon 0x850b00e0... BloXroute Regulated
13783982 19 3394 1997 +1397 blockdaemon_lido 0x8527d16c... Ultra Sound
13782975 1 3150 1754 +1396 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
13777963 3 3176 1781 +1395 gateway.fmas_lido 0x8db2a99d... Agnostic Gnosis
13781520 0 3135 1740 +1395 everstake 0xb26f9666... Titan Relay
13782119 2 3162 1767 +1395 whale_0x8ebd 0xb67eaa5e... Aestus
13783513 1 3148 1754 +1394 kiln 0x88a53ec4... BloXroute Max Profit
13783389 1 3147 1754 +1393 gateway.fmas_lido 0x853b0078... BloXroute Max Profit
13782490 0 3132 1740 +1392 everstake 0x8527d16c... Ultra Sound
13777515 3 3172 1781 +1391 p2porg 0x855b00e6... BloXroute Max Profit
13783762 5 3199 1808 +1391 gateway.fmas_lido 0x853b0078... BloXroute Max Profit
13777557 5 3196 1808 +1388 blockdaemon_lido 0xb26f9666... Titan Relay
13779192 2 3155 1767 +1388 everstake 0x860d4173... BloXroute Max Profit
13783693 1 3139 1754 +1385 p2porg 0x850b00e0... BloXroute Regulated
13783693 1 3139 1754 +1385 p2porg 0x850b00e0... BloXroute Regulated
13778161 0 3124 1740 +1384 p2porg 0x88510a78... BloXroute Regulated
13782153 6 3204 1821 +1383 gateway.fmas_lido 0x823e0146... BloXroute Max Profit
13778491 3 3163 1781 +1382 stakingfacilities_lido 0x8527d16c... Ultra Sound
13782447 12 3284 1903 +1381 everstake 0xb67eaa5e... BloXroute Max Profit
13782205 3 3160 1781 +1379 everstake 0x856b0004... BloXroute Max Profit
13777553 10 3254 1876 +1378 gateway.fmas_lido 0x856b0004... BloXroute Max Profit
13781832 1 3131 1754 +1377 0xb26f9666... BloXroute Max Profit
13778817 6 3193 1821 +1372 mantle 0x855b00e6... Flashbots
13780707 0 3111 1740 +1371 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13781398 0 3109 1740 +1369 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
13783794 8 3217 1848 +1369 kiln 0x8527d16c... Ultra Sound
13782148 9 3230 1862 +1368 whale_0x8ebd 0x856b0004... BloXroute Max Profit
13779840 1 3121 1754 +1367 ether.fi 0xb26f9666... Titan Relay
13782126 5 3175 1808 +1367 kelp 0x856b0004... BloXroute Max Profit
13778040 0 3107 1740 +1367 gateway.fmas_lido 0x99dbe3e8... Ultra Sound
13779892 11 3255 1889 +1366 kiln 0x88a53ec4... BloXroute Max Profit
13783671 8 3213 1848 +1365 everstake 0x856b0004... Aestus
13781532 5 3168 1808 +1360 everstake 0x853b0078... BloXroute Regulated
13778258 5 3168 1808 +1360 gateway.fmas_lido 0x8db2a99d... Ultra Sound
13777638 0 3100 1740 +1360 p2porg 0x850b00e0... BloXroute Regulated
13779767 3 3139 1781 +1358 whale_0x9212 0x88857150... Ultra Sound
13779415 0 3098 1740 +1358 kelp 0x88857150... Ultra Sound
13778146 6 3179 1821 +1358 p2porg 0x8527d16c... Ultra Sound
13777520 5 3165 1808 +1357 gateway.fmas_lido 0x8527d16c... Ultra Sound
13782072 4 3150 1794 +1356 ether.fi 0xb26f9666... Titan Relay
13779478 6 3177 1821 +1356 gateway.fmas_lido 0x91b123d8... Flashbots
13777818 1 3109 1754 +1355 stakingfacilities_lido 0x8527d16c... Ultra Sound
13780716 5 3159 1808 +1351 kiln 0xb67eaa5e... BloXroute Regulated
13783349 5 3159 1808 +1351 everstake 0x856b0004... Agnostic Gnosis
13782946 0 3091 1740 +1351 ether.fi 0x88857150... Ultra Sound
13779137 1 3103 1754 +1349 ether.fi 0x8527d16c... Ultra Sound
13782491 1 3102 1754 +1348 p2porg 0xb26f9666... BloXroute Max Profit
13782146 11 3237 1889 +1348 gateway.fmas_lido 0x8527d16c... Ultra Sound
13777415 3 3128 1781 +1347 ether.fi 0x853b0078... BloXroute Max Profit
13784115 2 3114 1767 +1347 0x856b0004... BloXroute Max Profit
13780322 3 3127 1781 +1346 everstake 0x8a850621... Titan Relay
13778940 6 3167 1821 +1346 everstake 0x8a850621... Ultra Sound
13779205 5 3153 1808 +1345 p2porg 0x850b00e0... BloXroute Regulated
13779995 0 3084 1740 +1344 kelp 0xb26f9666... Titan Relay
13779852 8 3190 1848 +1342 mantle 0x8db2a99d... Ultra Sound
13777608 4 3135 1794 +1341 bitstamp 0x8527d16c... Ultra Sound
13777732 7 3175 1835 +1340 coinbase 0x8a850621... Ultra Sound
13783101 2 3107 1767 +1340 mantle 0xac23f8cc... BloXroute Max Profit
13783275 1 3093 1754 +1339 whale_0x8ebd 0xb26f9666... Titan Relay
13777897 0 3079 1740 +1339 p2porg 0x8527d16c... Ultra Sound
13782406 6 3160 1821 +1339 everstake 0x856b0004... BloXroute Max Profit
13777855 5 3146 1808 +1338 p2porg 0x850b00e0... BloXroute Regulated
13780614 0 3078 1740 +1338 mantle 0x8527d16c... Ultra Sound
13782931 9 3199 1862 +1337 everstake 0x857b0038... Ultra Sound
13778175 0 3077 1740 +1337 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13783451 1 3089 1754 +1335 p2porg 0x8527d16c... Ultra Sound
13783231 1 3089 1754 +1335 nethermind_lido 0xb67eaa5e... BloXroute Regulated
13782248 7 3170 1835 +1335 ether.fi 0x853b0078... Ultra Sound
13781530 0 3073 1740 +1333 ether.fi 0x88857150... Ultra Sound
13778339 5 3140 1808 +1332 ether.fi 0xb67eaa5e... BloXroute Max Profit
13778845 6 3153 1821 +1332 everstake 0x857b0038... Ultra Sound
13783556 10 3207 1876 +1331 everstake 0xb26f9666... Titan Relay
13778758 6 3152 1821 +1331 whale_0x8ee5 0xb67eaa5e... BloXroute Max Profit
13782811 11 3218 1889 +1329 mantle 0x88a53ec4... BloXroute Regulated
13781066 1 3082 1754 +1328 kiln 0x88a53ec4... BloXroute Max Profit
13778217 6 3149 1821 +1328 p2porg 0x853b0078... Agnostic Gnosis
13779715 15 3269 1943 +1326 everstake 0x88a53ec4... BloXroute Regulated
13779133 6 3147 1821 +1326 kiln 0x88a53ec4... BloXroute Max Profit
13781136 3 3106 1781 +1325 kiln 0x88a53ec4... BloXroute Regulated
13778517 1 3078 1754 +1324 abyss_finance 0x88510a78... Flashbots
13782035 0 3064 1740 +1324 coinbase 0xb67eaa5e... Aestus
13780479 8 3172 1848 +1324 kiln 0xb26f9666... Aestus
13783515 0 3063 1740 +1323 whale_0x0000 0x852b0070... BloXroute Max Profit
13783116 5 3130 1808 +1322 whale_0x8ebd 0xb26f9666... Titan Relay
13784207 2 3089 1767 +1322 whale_0x8ebd 0xb26f9666... Titan Relay
13777725 6 3143 1821 +1322 kiln 0xb26f9666... BloXroute Max Profit
13782539 5 3129 1808 +1321 gateway.fmas_lido 0x8527d16c... Ultra Sound
13779359 10 3196 1876 +1320 kiln 0x8db2a99d... BloXroute Max Profit
13777328 0 3060 1740 +1320 kelp 0x8527d16c... Ultra Sound
13781851 0 3059 1740 +1319 whale_0x7791 0x852b0070... Ultra Sound
13781498 6 3140 1821 +1319 p2porg 0x853b0078... Aestus
13783469 1 3072 1754 +1318 p2porg 0x8527d16c... Ultra Sound
13778580 0 3058 1740 +1318 whale_0xedc6 0x852b0070... Agnostic Gnosis
13784178 1 3071 1754 +1317 kelp 0xb26f9666... Titan Relay
13784249 1 3070 1754 +1316 kiln 0x82c466b9... Flashbots
13778355 12 3218 1903 +1315 solo_stakers 0x855b00e6... BloXroute Max Profit
13779290 1 3068 1754 +1314 kiln 0xac23f8cc... BloXroute Max Profit
13779315 5 3122 1808 +1314 bitstamp 0x8527d16c... Ultra Sound
13777774 0 3054 1740 +1314 gateway.fmas_lido 0x852b0070... Ultra Sound
13779559 6 3135 1821 +1314 whale_0x8ebd 0xb26f9666... Titan Relay
13777932 8 3162 1848 +1314 gateway.fmas_lido 0x88857150... Ultra Sound
13780794 11 3202 1889 +1313 mantle 0xb67eaa5e... BloXroute Regulated
13777766 0 3053 1740 +1313 whale_0x8ebd 0xb7c5e609... BloXroute Max Profit
13783067 0 3053 1740 +1313 kiln 0xb26f9666... Titan Relay
13779173 0 3052 1740 +1312 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13783331 6 3133 1821 +1312 stakingfacilities_lido 0x853b0078... BloXroute Max Profit
13779130 8 3160 1848 +1312 ether.fi Local Local
13779538 3 3091 1781 +1310 gateway.fmas_lido 0x8527d16c... Ultra Sound
13783153 0 3050 1740 +1310 everstake 0x8a850621... Ultra Sound
13784046 6 3130 1821 +1309 whale_0x8ebd 0x850b00e0... Flashbots
13782460 11 3197 1889 +1308 mantle 0x88a53ec4... BloXroute Regulated
13781198 2 3075 1767 +1308 p2porg 0x88857150... Ultra Sound
13782922 3 3088 1781 +1307 figment 0x853b0078... Flashbots
13779122 5 3115 1808 +1307 gateway.fmas_lido 0x88857150... Ultra Sound
13779799 5 3115 1808 +1307 p2porg 0x8527d16c... Ultra Sound
13778326 9 3169 1862 +1307 gateway.fmas_lido 0x856b0004... Aestus
13781165 9 3169 1862 +1307 whale_0xedc6 0x856b0004... Ultra Sound
13780895 5 3114 1808 +1306 0xb26f9666... BloXroute Max Profit
13781316 1 3059 1754 +1305 gateway.fmas_lido 0x88857150... Ultra Sound
13783555 3 3086 1781 +1305 p2porg 0x8527d16c... Ultra Sound
13781318 5 3113 1808 +1305 mantle 0x853b0078... Agnostic Gnosis
13781640 0 3045 1740 +1305 p2porg 0x853b0078... Agnostic Gnosis
13783273 16 3261 1957 +1304 whale_0x8ebd 0x856b0004... Ultra Sound
13779649 0 3043 1740 +1303 everstake 0x8a850621... Ultra Sound
13783605 0 3043 1740 +1303 p2porg 0xb26f9666... Aestus
13782123 0 3042 1740 +1302 p2porg 0xb26f9666... Titan Relay
13779791 0 3042 1740 +1302 whale_0x8ebd 0xa9bd259c... Ultra Sound
13782861 2 3069 1767 +1302 mantle 0xb26f9666... Titan Relay
13783849 6 3123 1821 +1302 mantle 0x8527d16c... Ultra Sound
13780000 10 3176 1876 +1300 kelp 0xb26f9666... BloXroute Regulated
13780328 5 3108 1808 +1300 ether.fi 0x8527d16c... Ultra Sound
13778673 0 3040 1740 +1300 p2porg 0xb26f9666... Titan Relay
13779428 0 3040 1740 +1300 p2porg 0xb26f9666... Titan Relay
13779705 2 3067 1767 +1300 p2porg 0xb26f9666... BloXroute Max Profit
13783529 13 3215 1916 +1299 0x88a53ec4... BloXroute Max Profit
13778745 17 3269 1970 +1299 0x8a850621... Titan Relay
13781602 1 3052 1754 +1298 kiln 0x856b0004... Aestus
13778350 0 3038 1740 +1298 p2porg 0xb26f9666... BloXroute Regulated
13781606 1 3051 1754 +1297 whale_0x8ebd 0xb26f9666... Titan Relay
13783016 5 3105 1808 +1297 everstake 0x853b0078... BloXroute Max Profit
13778160 2 3064 1767 +1297 kelp 0x823e0146... Flashbots
13778997 2 3064 1767 +1297 kiln 0x88a53ec4... BloXroute Regulated
13777979 5 3104 1808 +1296 kelp 0x8527d16c... Ultra Sound
13783929 11 3184 1889 +1295 p2porg 0x88857150... Ultra Sound
13781924 3 3075 1781 +1294 p2porg 0xb26f9666... BloXroute Max Profit
13783846 6 3115 1821 +1294 kelp 0x8527d16c... Ultra Sound
13780792 1 3047 1754 +1293 p2porg 0x856b0004... BloXroute Max Profit
13778088 4 3087 1794 +1293 everstake 0x853b0078... BloXroute Max Profit
13781215 1 3046 1754 +1292 p2porg 0x853b0078... Aestus
13777276 5 3099 1808 +1291 ether.fi 0xb26f9666... Titan Relay
13782445 3 3071 1781 +1290 kiln 0xb67eaa5e... BloXroute Regulated
13779479 5 3098 1808 +1290 p2porg 0xb26f9666... Titan Relay
13784395 5 3098 1808 +1290 p2porg 0x850b00e0... BloXroute Regulated
13780829 2 3057 1767 +1290 mantle 0x856b0004... Agnostic Gnosis
13783656 1 3043 1754 +1289 kiln 0x88a53ec4... BloXroute Max Profit
13777351 8 3137 1848 +1289 kelp 0x856b0004... BloXroute Max Profit
13784294 0 3028 1740 +1288 everstake 0x8a850621... Ultra Sound
13782152 4 3082 1794 +1288 kiln 0x856b0004... Aestus
13779378 6 3109 1821 +1288 gateway.fmas_lido 0x8527d16c... Ultra Sound
13780157 8 3136 1848 +1288 stakingfacilities_lido 0x8527d16c... Ultra Sound
13781448 1 3041 1754 +1287 kiln 0x853b0078... BloXroute Max Profit
13782782 5 3094 1808 +1286 p2porg 0x8527d16c... Ultra Sound
13777227 5 3094 1808 +1286 p2porg 0xb26f9666... Aestus
13778605 0 3026 1740 +1286 mantle 0x926b7905... BloXroute Max Profit
13782527 1 3039 1754 +1285 0x823e0146... Flashbots
13783965 3 3066 1781 +1285 kiln 0xb26f9666... Titan Relay
13777954 2 3052 1767 +1285 abyss_finance 0xb26f9666... Titan Relay
13783646 1 3038 1754 +1284 whale_0x8ebd 0x853b0078... Ultra Sound
13783954 1 3038 1754 +1284 kiln 0x853b0078... Aestus
13779470 9 3146 1862 +1284 everstake 0x850b00e0... BloXroute Max Profit
13782392 0 3024 1740 +1284 p2porg 0xac23f8cc... Flashbots
13781891 8 3132 1848 +1284 gateway.fmas_lido 0xb26f9666... Ultra Sound
13781887 5 3091 1808 +1283 p2porg 0xb26f9666... BloXroute Regulated
13781885 15 3226 1943 +1283 stakingfacilities_lido 0xb67eaa5e... BloXroute Regulated
13781311 5 3090 1808 +1282 p2porg 0x856b0004... Aestus
13778538 5 3090 1808 +1282 whale_0x8ebd 0x823e0146... Ultra Sound
13777761 7 3117 1835 +1282 kraken 0x856b0004... Ultra Sound
13782763 0 3022 1740 +1282 mantle 0xb26f9666... Titan Relay
13781411 0 3021 1740 +1281 ether.fi 0xb26f9666... Titan Relay
13779566 0 3020 1740 +1280 kiln 0xb67eaa5e... BloXroute Max Profit
13783989 4 3073 1794 +1279 mantle 0xb26f9666... Titan Relay
13779171 6 3100 1821 +1279 kiln 0x88a53ec4... BloXroute Max Profit
13780802 8 3126 1848 +1278 whale_0x8ebd 0xb26f9666... Titan Relay
13777356 1 3031 1754 +1277 0x856b0004... BloXroute Max Profit
13780750 1 3031 1754 +1277 ether.fi 0xb26f9666... Titan Relay
13783411 0 3017 1740 +1277 stader 0xb26f9666... BloXroute Max Profit
13778585 7 3111 1835 +1276 kelp 0x853b0078... BloXroute Max Profit
13783713 3 3056 1781 +1275 ether.fi 0x856b0004... Aestus
13780839 4 3069 1794 +1275 whale_0x8ebd 0x8db2a99d... Ultra Sound
13781045 1 3028 1754 +1274 kelp 0x8db2a99d... Flashbots
13783068 7 3107 1835 +1272 whale_0x8ebd 0x823e0146... Ultra Sound
13783195 0 3012 1740 +1272 0xb26f9666... BloXroute Max Profit
13778662 0 3011 1740 +1271 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
13783098 0 3011 1740 +1271 mantle 0xb26f9666... Aestus
13781612 0 3010 1740 +1270 mantle 0x8527d16c... Ultra Sound
13778625 1 3023 1754 +1269 ether.fi 0x853b0078... BloXroute Max Profit
Total anomalies: 404

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