Fri, Feb 20, 2026

Propagation anomalies - 2026-02-20

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-20' AND slot_start_date_time < '2026-02-20'::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-20' AND slot_start_date_time < '2026-02-20'::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-20' AND slot_start_date_time < '2026-02-20'::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-20' AND slot_start_date_time < '2026-02-20'::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-20' AND slot_start_date_time < '2026-02-20'::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-20' AND slot_start_date_time < '2026-02-20'::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-20' AND slot_start_date_time < '2026-02-20'::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-20' AND slot_start_date_time < '2026-02-20'::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,188
MEV blocks: 6,699 (93.2%)
Local blocks: 489 (6.8%)

Anomaly detection method

The method:

  1. Fit linear regression: block_first_seen_ms ~ blob_count
  2. Calculate residuals (actual - expected)
  3. Flag blocks with residuals > 2σ as anomalies

Points above the ±2σ band propagated slower than expected given their blob count.

Show code
# Conditional outliers: blocks slow relative to their blob count
df_anomaly = df.copy()

# Fit regression: block_first_seen_ms ~ blob_count
slope, intercept, r_value, p_value, std_err = stats.linregress(
    df_anomaly["blob_count"].astype(float), df_anomaly["block_first_seen_ms"]
)

# Calculate expected value and residual
df_anomaly["expected_ms"] = intercept + slope * df_anomaly["blob_count"].astype(float)
df_anomaly["residual_ms"] = df_anomaly["block_first_seen_ms"] - df_anomaly["expected_ms"]

# Calculate residual standard deviation
residual_std = df_anomaly["residual_ms"].std()

# Flag anomalies: residual > 2σ (unexpectedly slow)
df_anomaly["is_anomaly"] = df_anomaly["residual_ms"] > 2 * residual_std

n_anomalies = df_anomaly["is_anomaly"].sum()
pct_anomalies = n_anomalies / len(df_anomaly) * 100

# Prepare outliers dataframe
df_outliers = df_anomaly[df_anomaly["is_anomaly"]].copy()
df_outliers["relay"] = df_outliers["winning_relays"].apply(lambda x: x[0] if len(x) > 0 else "Local")
df_outliers["proposer"] = df_outliers["proposer_entity"].fillna("Unknown")
df_outliers["builder"] = df_outliers["winning_builder"].apply(
    lambda x: f"{x[:10]}..." if pd.notna(x) and x else "Local"
)

print(f"Regression: block_ms = {intercept:.1f} + {slope:.2f} × blob_count (R² = {r_value**2:.3f})")
print(f"Residual σ = {residual_std:.1f}ms")
print(f"Anomalies (>2σ slow): {n_anomalies:,} ({pct_anomalies:.1f}%)")
Regression: block_ms = 1735.4 + 15.94 × blob_count (R² = 0.011)
Residual σ = 629.9ms
Anomalies (>2σ slow): 373 (5.2%)
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
13730918 0 6651 1735 +4916 whale_0x1980 Local Local
13731461 0 6014 1735 +4279 whale_0x1435 Local Local
13729729 0 4975 1735 +3240 solo_stakers Local Local
13732000 8 4559 1863 +2696 upbit Local Local
13729728 5 4489 1815 +2674 upbit Local Local
13733056 4 4429 1799 +2630 upbit Local Local
13730496 0 4307 1735 +2572 upbit Local Local
13729856 0 4096 1735 +2361 upbit Local Local
13733811 0 4035 1735 +2300 whale_0xdd6c Local Local
13727185 0 4022 1735 +2287 csm_operator171_lido Local Local
13731651 3 3859 1783 +2076 solo_stakers 0x8527d16c... Ultra Sound
13733155 6 3831 1831 +2000 solo_stakers Local Local
13726844 0 3705 1735 +1970 kucoin Local Local
13730784 3 3655 1783 +1872 liquid_collective 0xb26f9666... Titan Relay
13731634 0 3604 1735 +1869 blockdaemon 0xa412c4b8... Ultra Sound
13731918 7 3714 1847 +1867 0x850b00e0... BloXroute Regulated
13729568 6 3695 1831 +1864 revolut 0xb26f9666... Titan Relay
13728865 0 3598 1735 +1863 whale_0xdc8d 0xb26f9666... Titan Relay
13728141 10 3709 1895 +1814 whale_0xdc8d 0x850b00e0... BloXroute Regulated
13728207 1 3558 1751 +1807 0x8527d16c... Ultra Sound
13727977 1 3550 1751 +1799 revolut 0xb26f9666... Titan Relay
13732809 8 3653 1863 +1790 blockdaemon 0xb26f9666... Titan Relay
13727852 0 3524 1735 +1789 whale_0xdc8d 0x8527d16c... Ultra Sound
13728338 5 3603 1815 +1788 whale_0xdc8d 0x8527d16c... Ultra Sound
13732688 0 3511 1735 +1776 whale_0x8ebd Local Local
13732275 15 3727 1974 +1753 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13731104 3 3522 1783 +1739 blockdaemon 0xb4ce6162... Ultra Sound
13731011 6 3564 1831 +1733 figment 0xb26f9666... BloXroute Regulated
13729813 0 3461 1735 +1726 blockdaemon 0x88857150... Ultra Sound
13728201 1 3460 1751 +1709 whale_0xc541 0x88857150... Ultra Sound
13731733 20 3749 2054 +1695 0x855b00e6... BloXroute Max Profit
13732072 5 3507 1815 +1692 p2porg 0x856b0004... Agnostic Gnosis
13733876 0 3403 1735 +1668 blockdaemon 0xb4ce6162... Ultra Sound
13731471 0 3402 1735 +1667 whale_0xdd6c 0xa1da2978... Ultra Sound
13732736 2 3424 1767 +1657 blockdaemon_lido 0x850b00e0... BloXroute Regulated
13732856 6 3487 1831 +1656 blockdaemon_lido 0x855b00e6... Ultra Sound
13731390 11 3560 1911 +1649 everstake 0xb67eaa5e... BloXroute Regulated
13730621 6 3477 1831 +1646 blockdaemon 0x8527d16c... Ultra Sound
13729112 6 3470 1831 +1639 solo_stakers Local Local
13733297 6 3467 1831 +1636 blockdaemon_lido 0xb26f9666... Titan Relay
13728680 12 3559 1927 +1632 0x82c466b9... BloXroute Regulated
13731965 12 3554 1927 +1627 blockdaemon 0xb4ce6162... Ultra Sound
13730404 8 3490 1863 +1627 everstake 0x853b0078... Aestus
13728636 5 3430 1815 +1615 blockdaemon 0xb4ce6162... Ultra Sound
13728704 1 3362 1751 +1611 stakingfacilities_lido 0x8527d16c... Ultra Sound
13733492 11 3520 1911 +1609 blockdaemon_lido 0x850b00e0... BloXroute Regulated
13726963 0 3337 1735 +1602 everstake 0xb26f9666... Titan Relay
13728987 7 3439 1847 +1592 luno 0x850b00e0... BloXroute Regulated
13730274 0 3324 1735 +1589 everstake 0x8527d16c... Ultra Sound
13733835 9 3464 1879 +1585 ether.fi Local Local
13729414 3 3368 1783 +1585 ether.fi 0x88a53ec4... BloXroute Regulated
13730606 6 3412 1831 +1581 blockdaemon_lido 0x8527d16c... Ultra Sound
13731813 2 3344 1767 +1577 blockdaemon_lido 0x88510a78... BloXroute Regulated
13732686 9 3454 1879 +1575 ether.fi 0xb67eaa5e... BloXroute Regulated
13730828 6 3400 1831 +1569 luno 0x88a53ec4... BloXroute Regulated
13729011 6 3399 1831 +1568 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13731409 5 3383 1815 +1568 everstake 0x88a53ec4... BloXroute Max Profit
13732576 6 3394 1831 +1563 stakingfacilities_lido 0x8db2a99d... BloXroute Max Profit
13729067 6 3393 1831 +1562 blockdaemon_lido 0xb26f9666... Titan Relay
13731961 1 3313 1751 +1562 blockdaemon 0xb26f9666... Titan Relay
13729869 2 3327 1767 +1560 blockdaemon_lido 0x88857150... Ultra Sound
13729367 0 3291 1735 +1556 nethermind_lido 0xb67eaa5e... BloXroute Regulated
13730113 0 3290 1735 +1555 whale_0x8ebd 0x857b0038... Ultra Sound
13728106 0 3288 1735 +1553 ether.fi 0xb67eaa5e... EthGas
13728789 6 3381 1831 +1550 everstake 0x853b0078... Aestus
13733444 8 3409 1863 +1546 blockdaemon 0x88a53ec4... BloXroute Regulated
13733680 0 3281 1735 +1546 blockdaemon 0x850b00e0... BloXroute Regulated
13733717 0 3280 1735 +1545 blockdaemon 0x850b00e0... BloXroute Max Profit
13731236 0 3279 1735 +1544 blockdaemon 0x850b00e0... BloXroute Regulated
13730596 5 3355 1815 +1540 blockdaemon_lido 0x88857150... Ultra Sound
13733862 6 3370 1831 +1539 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13733417 0 3274 1735 +1539 everstake 0xb26f9666... Titan Relay
13731652 0 3273 1735 +1538 everstake 0xb26f9666... Titan Relay
13726960 8 3399 1863 +1536 everstake 0xb26f9666... Aestus
13731610 3 3319 1783 +1536 everstake 0x823e0146... Flashbots
13730938 2 3300 1767 +1533 blockdaemon_lido 0x850b00e0... BloXroute Regulated
13732730 1 3283 1751 +1532 blockdaemon 0x88510a78... BloXroute Regulated
13729377 5 3340 1815 +1525 blockdaemon 0x850b00e0... BloXroute Regulated
13732506 0 3260 1735 +1525 luno 0xb67eaa5e... BloXroute Regulated
13729130 5 3338 1815 +1523 blockdaemon_lido 0x88857150... Ultra Sound
13732925 5 3337 1815 +1522 blockdaemon 0xb26f9666... Titan Relay
13726938 3 3305 1783 +1522 everstake 0xb26f9666... Titan Relay
13730451 2 3289 1767 +1522 blockdaemon 0x853b0078... Ultra Sound
13732224 8 3383 1863 +1520 stakingfacilities_lido 0x8527d16c... Ultra Sound
13731230 4 3318 1799 +1519 blockdaemon 0xb26f9666... Titan Relay
13727076 5 3332 1815 +1517 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
13733234 5 3330 1815 +1515 luno 0xb26f9666... Titan Relay
13731939 3 3297 1783 +1514 everstake 0x88857150... Ultra Sound
13732835 3 3297 1783 +1514 everstake 0x8527d16c... Ultra Sound
13732080 0 3249 1735 +1514 everstake 0x852b0070... BloXroute Max Profit
13728219 6 3342 1831 +1511 blockdaemon_lido 0x856b0004... Ultra Sound
13733979 6 3342 1831 +1511 luno 0x88510a78... BloXroute Regulated
13732085 3 3290 1783 +1507 figment 0x8527d16c... Ultra Sound
13730875 0 3241 1735 +1506 kelp 0x851b00b1... Flashbots
13730677 5 3320 1815 +1505 blockdaemon_lido 0x850b00e0... BloXroute Regulated
13728661 1 3256 1751 +1505 everstake 0x88857150... Ultra Sound
13733315 1 3256 1751 +1505 whale_0xdc8d 0x8527d16c... Ultra Sound
13732028 0 3239 1735 +1504 everstake 0x8527d16c... Ultra Sound
13728256 5 3318 1815 +1503 ether.fi 0x8db2a99d... BloXroute Max Profit
13729446 6 3331 1831 +1500 blockdaemon_lido 0x88857150... Ultra Sound
13729004 4 3298 1799 +1499 luno 0xb67eaa5e... BloXroute Regulated
13729250 8 3361 1863 +1498 everstake 0x856b0004... Agnostic Gnosis
13732214 1 3248 1751 +1497 everstake 0xb26f9666... Aestus
13733231 3 3276 1783 +1493 0x850b00e0... BloXroute Regulated
13729866 3 3275 1783 +1492 whale_0xdc8d 0xb26f9666... Titan Relay
13728820 7 3333 1847 +1486 blockdaemon 0x82c466b9... BloXroute Regulated
13728299 5 3301 1815 +1486 blockdaemon_lido 0x88857150... Ultra Sound
13732393 8 3347 1863 +1484 blockdaemon 0xb26f9666... Titan Relay
13733794 6 3314 1831 +1483 everstake 0x853b0078... Aestus
13732035 0 3214 1735 +1479 blockdaemon 0x8527d16c... Ultra Sound
13726883 5 3293 1815 +1478 blockdaemon 0x88857150... Ultra Sound
13729444 0 3213 1735 +1478 everstake 0x855b00e6... BloXroute Max Profit
13732914 10 3372 1895 +1477 everstake 0xb67eaa5e... BloXroute Max Profit
13730928 9 3355 1879 +1476 everstake 0x856b0004... Aestus
13728055 0 3211 1735 +1476 blockdaemon 0x88857150... Ultra Sound
13730091 5 3289 1815 +1474 everstake 0x855b00e6... BloXroute Max Profit
13731220 9 3350 1879 +1471 blockdaemon 0x853b0078... Ultra Sound
13730301 8 3333 1863 +1470 kiln 0x88a53ec4... BloXroute Max Profit
13726893 4 3267 1799 +1468 solo_stakers 0x855b00e6... BloXroute Max Profit
13731002 17 3472 2006 +1466 blockdaemon 0xa230e2cf... BloXroute Regulated
13732528 5 3280 1815 +1465 blockdaemon_lido 0x88a53ec4... BloXroute Regulated
13733120 8 3327 1863 +1464 everstake 0x856b0004... BloXroute Max Profit
13728624 11 3374 1911 +1463 blockdaemon 0x853b0078... Ultra Sound
13728892 3 3246 1783 +1463 everstake 0x88857150... Ultra Sound
13728500 5 3277 1815 +1462 blockdaemon_lido 0x853b0078... Ultra Sound
13727816 9 3339 1879 +1460 blockdaemon_lido 0xb26f9666... Titan Relay
13733267 6 3290 1831 +1459 blockdaemon 0xb26f9666... Titan Relay
13728020 5 3274 1815 +1459 0xb4ce6162... Ultra Sound
13729254 3 3242 1783 +1459 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13728442 18 3480 2022 +1458 whale_0xdd6c 0x856b0004... Agnostic Gnosis
13730997 9 3336 1879 +1457 whale_0xdc8d 0x8527d16c... Ultra Sound
13732546 0 3192 1735 +1457 solo_stakers 0x853b0078... Agnostic Gnosis
13732301 8 3319 1863 +1456 blockdaemon 0xb26f9666... BloXroute Regulated
13730020 0 3191 1735 +1456 kiln 0x8527d16c... Ultra Sound
13733125 9 3332 1879 +1453 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13733159 4 3249 1799 +1450 everstake 0x853b0078... BloXroute Max Profit
13731386 0 3185 1735 +1450 stakingfacilities_lido 0xb26f9666... Titan Relay
13730557 1 3200 1751 +1449 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13732662 9 3325 1879 +1446 luno 0xb26f9666... Titan Relay
13727258 8 3308 1863 +1445 everstake 0x8db2a99d... BloXroute Max Profit
13727249 8 3308 1863 +1445 everstake 0x8527d16c... Ultra Sound
13729090 0 3179 1735 +1444 ether.fi 0x8527d16c... Ultra Sound
13732316 10 3338 1895 +1443 blockdaemon_lido 0xb26f9666... Titan Relay
13732647 6 3274 1831 +1443 ether.fi 0x853b0078... Ultra Sound
13733418 10 3336 1895 +1441 whale_0xdc8d 0x8527d16c... Ultra Sound
13727570 8 3303 1863 +1440 luno 0x8527d16c... Ultra Sound
13729852 5 3255 1815 +1440 everstake 0x8527d16c... Ultra Sound
13733412 9 3316 1879 +1437 everstake 0x8527d16c... Ultra Sound
13730153 12 3363 1927 +1436 blockdaemon 0x853b0078... Ultra Sound
13729357 5 3245 1815 +1430 p2porg 0x856b0004... Agnostic Gnosis
13730786 5 3245 1815 +1430 blockdaemon_lido 0x853b0078... Ultra Sound
13733537 5 3245 1815 +1430 stakingfacilities_lido 0x88a53ec4... BloXroute Max Profit
13732394 0 3165 1735 +1430 gateway.fmas_lido 0x8527d16c... Ultra Sound
13731585 0 3163 1735 +1428 0xa412c4b8... Ultra Sound
13731662 5 3242 1815 +1427 ether.fi 0xb26f9666... Titan Relay
13733613 8 3288 1863 +1425 ether.fi 0xb26f9666... Titan Relay
13733914 6 3256 1831 +1425 everstake 0x856b0004... Aestus
13730861 20 3477 2054 +1423 bitstamp 0xb67eaa5e... BloXroute Max Profit
13727845 5 3237 1815 +1422 whale_0xedc6 0x853b0078... Aestus
13732685 0 3157 1735 +1422 gateway.fmas_lido 0x855b00e6... BloXroute Max Profit
13733564 5 3235 1815 +1420 gateway.fmas_lido 0x853b0078... BloXroute Max Profit
13728291 2 3187 1767 +1420 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
13729172 0 3155 1735 +1420 kiln 0x850b00e0... BloXroute Max Profit
13729657 1 3169 1751 +1418 blockdaemon_lido 0x88857150... Ultra Sound
13731134 3 3200 1783 +1417 coinbase 0xb26f9666... Aestus
13730572 5 3230 1815 +1415 ether.fi 0xb26f9666... Titan Relay
13727350 0 3149 1735 +1414 everstake 0x8527d16c... Ultra Sound
13729315 9 3292 1879 +1413 stakingfacilities_lido 0x853b0078... Aestus
13731865 11 3318 1911 +1407 0xb26f9666... Ultra Sound
13726814 10 3301 1895 +1406 everstake 0x853b0078... Aestus
13727173 3 3185 1783 +1402 kiln 0x850b00e0... Flashbots
13731043 3 3184 1783 +1401 p2porg 0x850b00e0... BloXroute Regulated
13728204 9 3279 1879 +1400 0xa1467c4a... Flashbots
13729671 7 3247 1847 +1400 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
13731450 10 3294 1895 +1399 everstake 0xb26f9666... Aestus
13729594 0 3134 1735 +1399 gateway.fmas_lido 0x8527d16c... Ultra Sound
13733881 6 3228 1831 +1397 everstake 0xb26f9666... Titan Relay
13728887 0 3131 1735 +1396 everstake 0xb211df49... Agnostic Gnosis
13728242 1 3145 1751 +1394 p2porg 0xb7c5e609... Flashbots
13728149 0 3129 1735 +1394 gateway.fmas_lido 0x8527d16c... Ultra Sound
13728984 2 3159 1767 +1392 whale_0x8ebd 0xb26f9666... Titan Relay
13728120 10 3286 1895 +1391 mantle 0x8527d16c... Ultra Sound
13728414 10 3285 1895 +1390 revolut 0x853b0078... Ultra Sound
13728982 1 3140 1751 +1389 whale_0xdd6c 0xb26f9666... Titan Relay
13729955 8 3251 1863 +1388 0x850b00e0... Flashbots
13731303 5 3203 1815 +1388 ether.fi 0xb67eaa5e... BloXroute Regulated
13729464 10 3281 1895 +1386 kiln 0x850b00e0... BloXroute Max Profit
13727869 6 3217 1831 +1386 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
13732082 3 3169 1783 +1386 stakingfacilities_lido 0xb26f9666... Aestus
13727796 0 3121 1735 +1386 everstake 0xb26f9666... Aestus
13733619 1 3136 1751 +1385 kiln 0xb26f9666... BloXroute Regulated
13730834 5 3199 1815 +1384 gateway.fmas_lido 0xb26f9666... Titan Relay
13733212 5 3197 1815 +1382 bitstamp 0x856b0004... Ultra Sound
13731112 0 3117 1735 +1382 kelp 0x852b0070... BloXroute Max Profit
13731416 0 3116 1735 +1381 whale_0x8ebd 0x852b0070... BloXroute Max Profit
13729013 0 3115 1735 +1380 kelp 0x88857150... Ultra Sound
13730402 6 3210 1831 +1379 p2porg 0x850b00e0... BloXroute Regulated
13731987 0 3114 1735 +1379 everstake 0x88a53ec4... BloXroute Max Profit
13732858 4 3177 1799 +1378 everstake 0x856b0004... BloXroute Max Profit
13731210 1 3129 1751 +1378 everstake 0xb26f9666... Titan Relay
13730256 0 3113 1735 +1378 kiln 0x852b0070... Flashbots
13732127 5 3192 1815 +1377 solo_stakers 0xb26f9666... Aestus
13731567 0 3112 1735 +1377 mantle 0xb26f9666... Titan Relay
13727429 0 3108 1735 +1373 gateway.fmas_lido 0x853b0078... Aestus
13732453 11 3283 1911 +1372 everstake 0x8527d16c... Ultra Sound
13728814 6 3202 1831 +1371 0xb4ce6162... Ultra Sound
13728263 3 3152 1783 +1369 0x856b0004... Ultra Sound
13729424 3 3152 1783 +1369 whale_0x8ebd 0xac23f8cc... Flashbots
13731105 5 3182 1815 +1367 0x88a53ec4... BloXroute Max Profit
13728248 4 3164 1799 +1365 everstake 0x853b0078... BloXroute Max Profit
13727001 10 3259 1895 +1364 stakingfacilities_lido 0x855b00e6... BloXroute Max Profit
13727437 8 3227 1863 +1364 everstake 0xb26f9666... Titan Relay
13731622 6 3195 1831 +1364 gateway.fmas_lido 0xb26f9666... Titan Relay
13731405 4 3163 1799 +1364 p2porg 0x850b00e0... BloXroute Regulated
13727370 8 3226 1863 +1363 gateway.fmas_lido 0x853b0078... Ultra Sound
13727140 6 3192 1831 +1361 nethermind_lido 0x8527d16c... Ultra Sound
13732743 11 3271 1911 +1360 blockdaemon_lido 0xb26f9666... Titan Relay
13728031 1 3111 1751 +1360 p2porg 0xb67eaa5e... BloXroute Regulated
13732179 0 3095 1735 +1360 p2porg 0x852b0070... BloXroute Max Profit
13728037 8 3222 1863 +1359 kiln 0x853b0078... Agnostic Gnosis
13732054 1 3110 1751 +1359 kiln 0x850b00e0... BloXroute Max Profit
13730366 0 3093 1735 +1358 p2porg 0x852b0070... BloXroute Max Profit
13731905 6 3188 1831 +1357 0x8db2a99d... Flashbots
13732263 5 3171 1815 +1356 gateway.fmas_lido 0x8527d16c... Ultra Sound
13730205 2 3123 1767 +1356 p2porg 0x850b00e0... BloXroute Regulated
13728435 15 3330 1974 +1356 everstake 0xb7c5beef... Titan Relay
13728092 0 3089 1735 +1354 p2porg 0xb26f9666... Titan Relay
13732440 11 3264 1911 +1353 blockdaemon_lido 0xb26f9666... Titan Relay
13729995 6 3184 1831 +1353 gateway.fmas_lido 0x853b0078... Agnostic Gnosis
13727415 15 3326 1974 +1352 everstake 0x88857150... Ultra Sound
13728163 6 3180 1831 +1349 whale_0x8ebd 0xb26f9666... BloXroute Regulated
13730323 11 3259 1911 +1348 blockdaemon 0x8527d16c... Ultra Sound
13731520 5 3163 1815 +1348 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13728890 1 3098 1751 +1347 gateway.fmas_lido 0x8527d16c... Ultra Sound
13733243 10 3239 1895 +1344 ether.fi 0x8527d16c... Ultra Sound
13728770 3 3127 1783 +1344 p2porg 0xb26f9666... BloXroute Regulated
13730005 0 3078 1735 +1343 p2porg 0x852b0070... Ultra Sound
13731435 0 3078 1735 +1343 ether.fi 0x8527d16c... Ultra Sound
13733042 5 3156 1815 +1341 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13730644 1 3092 1751 +1341 p2porg 0x8527d16c... Ultra Sound
13727400 0 3076 1735 +1341 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13728004 3 3123 1783 +1340 p2porg 0xb26f9666... Titan Relay
13731457 0 3075 1735 +1340 kelp 0x852b0070... Aestus
13731826 10 3234 1895 +1339 p2porg 0x850b00e0... BloXroute Regulated
13727149 0 3073 1735 +1338 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13730266 1 3087 1751 +1336 0x8527d16c... Ultra Sound
13727692 12 3262 1927 +1335 blockdaemon_lido 0xb26f9666... Titan Relay
13728539 3 3116 1783 +1333 0xb4ce6162... Ultra Sound
13733434 1 3084 1751 +1333 0x853b0078... Aestus
13733548 1 3084 1751 +1333 p2porg 0x853b0078... Agnostic Gnosis
13731985 0 3066 1735 +1331 whale_0x8ebd 0xb211df49... Ultra Sound
13729393 14 3289 1959 +1330 blockdaemon_lido 0x8527d16c... Ultra Sound
13733074 5 3145 1815 +1330 0x8527d16c... Ultra Sound
13730082 3 3113 1783 +1330 ether.fi 0x853b0078... Ultra Sound
13730118 0 3064 1735 +1329 whale_0x8ebd 0x853b0078... Ultra Sound
13732609 4 3127 1799 +1328 0x8527d16c... Ultra Sound
13726944 3 3110 1783 +1327 whale_0x8ebd 0x853b0078... Ultra Sound
13728996 1 3078 1751 +1327 0x856b0004... Aestus
13727089 9 3205 1879 +1326 everstake 0x8db2a99d... Flashbots
13732375 0 3061 1735 +1326 p2porg 0x850b00e0... BloXroute Regulated
13733323 3 3107 1783 +1324 p2porg 0xb26f9666... Titan Relay
13729421 1 3075 1751 +1324 whale_0x8ebd 0x850b00e0... Flashbots
13728213 3 3106 1783 +1323 ether.fi 0x855b00e6... BloXroute Max Profit
13727320 0 3058 1735 +1323 p2porg 0x852b0070... Agnostic Gnosis
13732305 5 3137 1815 +1322 0x8527d16c... Ultra Sound
13732939 0 3057 1735 +1322 ether.fi 0x856b0004... Aestus
13733178 6 3152 1831 +1321 everstake 0x8527d16c... Ultra Sound
13732839 11 3231 1911 +1320 stakingfacilities_lido 0x8527d16c... Ultra Sound
13728284 1 3071 1751 +1320 kelp 0xb26f9666... Titan Relay
13728735 1 3071 1751 +1320 kelp 0xb26f9666... Aestus
13730721 0 3053 1735 +1318 kelp 0x852b0070... Agnostic Gnosis
13727904 0 3052 1735 +1317 kraken 0x8527d16c... Ultra Sound
13733358 5 3131 1815 +1316 ether.fi 0x853b0078... Aestus
13727438 0 3051 1735 +1316 p2porg 0x856b0004... Aestus
13731534 3 3098 1783 +1315 whale_0xedc6 0x853b0078... Ultra Sound
13730331 9 3193 1879 +1314 ether.fi 0x8527d16c... Ultra Sound
13729200 0 3049 1735 +1314 everstake 0xb67eaa5e... BloXroute Max Profit
13729054 8 3176 1863 +1313 gateway.fmas_lido 0xac23f8cc... Flashbots
13733479 0 3047 1735 +1312 ether.fi 0x852b0070... BloXroute Max Profit
13728602 0 3047 1735 +1312 0xac23f8cc... Flashbots
13728050 5 3126 1815 +1311 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13730155 0 3046 1735 +1311 mantle 0xb26f9666... Titan Relay
13727468 14 3269 1959 +1310 p2porg 0x88a53ec4... BloXroute Max Profit
13730345 0 3045 1735 +1310 nethermind_lido 0xb26f9666... Titan Relay
13729738 4 3108 1799 +1309 whale_0x8ebd 0xb26f9666... Titan Relay
13727356 3 3092 1783 +1309 ether.fi 0xb26f9666... Titan Relay
13733257 0 3043 1735 +1308 whale_0x8ebd 0xb26f9666... Titan Relay
13731835 1 3058 1751 +1307 0xb26f9666... BloXroute Max Profit
13733171 1 3058 1751 +1307 whale_0x8ebd 0x853b0078... BloXroute Regulated
13727212 8 3169 1863 +1306 gateway.fmas_lido 0x8527d16c... Ultra Sound
13731038 1 3057 1751 +1306 p2porg 0x856b0004... Agnostic Gnosis
13728855 3 3088 1783 +1305 0x8527d16c... Ultra Sound
13732508 0 3040 1735 +1305 whale_0xedc6 0x805e28e6... BloXroute Max Profit
13726971 0 3040 1735 +1305 kelp 0xb26f9666... Titan Relay
13731033 11 3215 1911 +1304 gateway.fmas_lido 0x8527d16c... Ultra Sound
13729849 10 3199 1895 +1304 kraken 0x8527d16c... Ultra Sound
13729534 3 3087 1783 +1304 whale_0x8ebd 0x823e0146... BloXroute Max Profit
13726865 5 3117 1815 +1302 mantle 0x8527d16c... Ultra Sound
13729440 4 3101 1799 +1302 whale_0x8ebd 0xac23f8cc... Flashbots
13732983 6 3132 1831 +1301 p2porg 0xb67eaa5e... BloXroute Max Profit
13727553 2 3068 1767 +1301 everstake 0x850b00e0... BloXroute Max Profit
13731827 1 3052 1751 +1301 0xac23f8cc... BloXroute Max Profit
13733111 6 3131 1831 +1300 kiln 0x8db2a99d... Flashbots
13729681 4 3099 1799 +1300 abyss_finance 0x8527d16c... Ultra Sound
13728337 0 3034 1735 +1299 0xb26f9666... Titan Relay
13732413 5 3113 1815 +1298 p2porg 0xb26f9666... BloXroute Regulated
13733294 1 3049 1751 +1298 0xb26f9666... Ultra Sound
13728156 8 3160 1863 +1297 0x88a53ec4... BloXroute Max Profit
13727248 0 3032 1735 +1297 ether.fi 0xb26f9666... Titan Relay
13729150 0 3032 1735 +1297 origin_protocol 0xb26f9666... Titan Relay
13733008 0 3032 1735 +1297 p2porg 0x8527d16c... Ultra Sound
13728768 5 3111 1815 +1296 ether.fi 0x8527d16c... Ultra Sound
13730681 4 3095 1799 +1296 bitstamp 0xac23f8cc... BloXroute Max Profit
13728773 3 3079 1783 +1296 p2porg 0xb26f9666... BloXroute Max Profit
13728619 3 3079 1783 +1296 0x8527d16c... Ultra Sound
13730288 0 3031 1735 +1296 p2porg 0x8527d16c... Ultra Sound
13729783 6 3125 1831 +1294 p2porg 0x8527d16c... Ultra Sound
13731757 6 3125 1831 +1294 everstake 0x850b00e0... Flashbots
13733043 4 3092 1799 +1293 p2porg 0x853b0078... Aestus
13731493 2 3060 1767 +1293 ether.fi 0x853b0078... Aestus
13730751 0 3028 1735 +1293 kelp 0xb26f9666... Aestus
13732526 0 3028 1735 +1293 p2porg 0x8db2a99d... Flashbots
13731725 1 3043 1751 +1292 kelp 0xb26f9666... Titan Relay
13729854 0 3026 1735 +1291 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13730142 9 3168 1879 +1289 p2porg 0xb26f9666... Titan Relay
13730238 0 3024 1735 +1289 kelp 0xb7c5beef... Titan Relay
13732200 0 3024 1735 +1289 0xb26f9666... BloXroute Max Profit
13732799 0 3023 1735 +1288 whale_0x8ebd 0x8527d16c... Ultra Sound
13733848 9 3165 1879 +1286 everstake 0xb26f9666... Titan Relay
13733203 0 3021 1735 +1286 kiln 0x856b0004... Agnostic Gnosis
13728585 0 3021 1735 +1286 ether.fi 0xb26f9666... Titan Relay
13728067 5 3100 1815 +1285 p2porg 0x88857150... Ultra Sound
13727282 2 3052 1767 +1285 p2porg 0x8527d16c... Ultra Sound
13733050 3 3067 1783 +1284 whale_0xedc6 0x8527d16c... Ultra Sound
13727472 6 3114 1831 +1283 p2porg 0x850b00e0... BloXroute Regulated
13732659 4 3082 1799 +1283 whale_0x8ebd 0x856b0004... Ultra Sound
13729043 3 3063 1783 +1280 p2porg 0x853b0078... BloXroute Max Profit
13727165 0 3014 1735 +1279 whale_0x9e88 0xba003e46... Ultra Sound
13731042 8 3141 1863 +1278 figment 0x856b0004... Agnostic Gnosis
13730457 5 3093 1815 +1278 nethermind_lido 0x853b0078... Ultra Sound
13733078 0 3013 1735 +1278 kelp 0x8527d16c... Ultra Sound
13730564 6 3108 1831 +1277 whale_0x8ebd 0xb26f9666... BloXroute Regulated
13729969 0 3012 1735 +1277 kiln 0x88857150... Ultra Sound
13729654 5 3090 1815 +1275 0x853b0078... Agnostic Gnosis
13733653 3 3058 1783 +1275 whale_0x7791 0x853b0078... BloXroute Max Profit
13733911 10 3168 1895 +1273 whale_0x8ebd 0xb26f9666... Titan Relay
13732704 6 3104 1831 +1273 whale_0x8ebd 0x857b0038... Ultra Sound
13732550 2 3039 1767 +1272 p2porg 0x8527d16c... Ultra Sound
13729471 0 3007 1735 +1272 whale_0x8ebd 0xb26f9666... Titan Relay
13728168 0 3007 1735 +1272 kiln 0x860d4173... BloXroute Max Profit
13730665 7 3118 1847 +1271 0x853b0078... BloXroute Max Profit
13731321 3 3054 1783 +1271 p2porg 0xb26f9666... BloXroute Max Profit
13729949 1 3022 1751 +1271 kiln 0xb26f9666... Titan Relay
13729902 0 3006 1735 +1271 kiln 0x8db2a99d... Flashbots
13730068 0 3006 1735 +1271 whale_0x8ebd 0xb26f9666... Titan Relay
13730838 5 3085 1815 +1270 p2porg 0x853b0078... Agnostic Gnosis
13731807 3 3052 1783 +1269 p2porg 0x8db2a99d... Flashbots
13732209 1 3020 1751 +1269 p2porg 0x823e0146... BloXroute Max Profit
13729456 0 3004 1735 +1269 0xb26f9666... Titan Relay
13731625 5 3083 1815 +1268 ether.fi 0xb26f9666... Titan Relay
13729260 3 3051 1783 +1268 whale_0x8ebd 0x857b0038... Ultra Sound
13731026 3 3049 1783 +1266 0x8527d16c... Ultra Sound
13731738 1 3017 1751 +1266 0x8527d16c... Ultra Sound
13731050 1 3017 1751 +1266 kiln 0x8527d16c... Ultra Sound
13728267 7 3112 1847 +1265 kiln 0x850b00e0... Flashbots
13730180 0 3000 1735 +1265 kiln 0x88857150... Ultra Sound
13733550 6 3095 1831 +1264 p2porg 0x856b0004... Aestus
13732921 0 2998 1735 +1263 kiln 0x856b0004... BloXroute Max Profit
13728957 3 3045 1783 +1262 p2porg 0xb67eaa5e... BloXroute Max Profit
13727951 3 3045 1783 +1262 0x853b0078... BloXroute Max Profit
13727435 6 3092 1831 +1261 whale_0x4685 0x853b0078... Agnostic Gnosis
13730037 3 3044 1783 +1261 kiln 0xb26f9666... Titan Relay
13732614 1 3012 1751 +1261 whale_0x7791 0x853b0078... Aestus
Total anomalies: 373

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