Wed, Feb 25, 2026

Propagation anomalies - 2026-02-25

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-25' AND slot_start_date_time < '2026-02-25'::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-25' AND slot_start_date_time < '2026-02-25'::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-25' AND slot_start_date_time < '2026-02-25'::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-25' AND slot_start_date_time < '2026-02-25'::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-25' AND slot_start_date_time < '2026-02-25'::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-25' AND slot_start_date_time < '2026-02-25'::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-25' AND slot_start_date_time < '2026-02-25'::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-25' AND slot_start_date_time < '2026-02-25'::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,750 (94.0%)
Local blocks: 434 (6.0%)

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 = 1741.8 + 13.68 × blob_count (R² = 0.009)
Residual σ = 634.0ms
Anomalies (>2σ slow): 379 (5.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
13768383 0 13890 1742 +12148 solo_stakers Local Local
13768960 0 5734 1742 +3992 whale_0x88de Local Local
13769184 0 5322 1742 +3580 piertwo Local Local
13769248 0 5272 1742 +3530 upbit Local Local
13767355 9 5087 1865 +3222 sigmaprime_lido Local Local
13768712 0 4729 1742 +2987 coinbase Local Local
13763424 0 4474 1742 +2732 ether.fi Local Local
13762931 0 4384 1742 +2642 rocketpool Local Local
13763712 0 4361 1742 +2619 solo_stakers Local Local
13768715 0 3997 1742 +2255 stakefish Local Local
13763201 7 4066 1838 +2228 0xb26f9666... EthGas
13766186 1 3841 1756 +2085 prysmaticlabs_lido 0x88857150... Ultra Sound
13768359 2 3829 1769 +2060 everstake 0xb67eaa5e... Aestus
13766158 0 3691 1742 +1949 whale_0x8ebd 0x88857150... Ultra Sound
13766870 6 3720 1824 +1896 0x850b00e0... BloXroute Regulated
13764288 6 3710 1824 +1886 blockdaemon 0xb67eaa5e... BloXroute Regulated
13766763 8 3699 1851 +1848 solo_stakers 0xb67eaa5e... Aestus
13764628 1 3542 1756 +1786 figment 0x856b0004... Ultra Sound
13765375 2 3539 1769 +1770 ether.fi 0x8527d16c... Ultra Sound
13767823 3 3545 1783 +1762 0x82c466b9... BloXroute Regulated
13768195 14 3687 1933 +1754 ether.fi 0x82c466b9... EthGas
13769204 5 3553 1810 +1743 figment 0xb26f9666... BloXroute Regulated
13765426 7 3559 1838 +1721 everstake 0x853b0078... Aestus
13769740 0 3458 1742 +1716 blockdaemon 0xa1da2978... Ultra Sound
13766577 8 3563 1851 +1712 ether.fi 0xb26f9666... Titan Relay
13769636 0 3449 1742 +1707 lido 0xb26f9666... Titan Relay
13764230 6 3531 1824 +1707 0x8527d16c... Ultra Sound
13768077 8 3556 1851 +1705 0x850b00e0... BloXroute Regulated
13765490 6 3527 1824 +1703 coinbase 0xb67eaa5e... Aestus
13764613 3 3474 1783 +1691 blockdaemon 0x8a850621... Ultra Sound
13764208 2 3459 1769 +1690 whale_0xdc8d 0x850b00e0... BloXroute Regulated
13762899 0 3429 1742 +1687 solo_stakers 0x852b0070... BloXroute Max Profit
13769124 0 3424 1742 +1682 blockdaemon 0x8a850621... Titan Relay
13769706 0 3402 1742 +1660 blockdaemon 0x8a850621... Ultra Sound
13769463 2 3426 1769 +1657 0xb67eaa5e... BloXroute Regulated
13763695 7 3492 1838 +1654 blockdaemon 0x857b0038... Ultra Sound
13768320 0 3395 1742 +1653 everstake 0xb26f9666... Titan Relay
13766403 1 3408 1756 +1652 everstake 0xb67eaa5e... Aestus
13766602 9 3515 1865 +1650 whale_0xdc8d 0xb26f9666... Titan Relay
13763151 6 3472 1824 +1648 everstake 0x88a53ec4... BloXroute Regulated
13767250 8 3496 1851 +1645 ether.fi 0x88a53ec4... BloXroute Regulated
13769196 7 3467 1838 +1629 blockdaemon 0x88857150... Ultra Sound
13768793 3 3406 1783 +1623 blockdaemon_lido 0x88857150... Ultra Sound
13765792 2 3385 1769 +1616 gateway.fmas_lido 0x856b0004... Aestus
13768160 0 3352 1742 +1610 stakingfacilities_lido 0xa9bd259c... Ultra Sound
13769892 0 3346 1742 +1604 blockdaemon 0x8a850621... Titan Relay
13763228 12 3507 1906 +1601 ether.fi 0xb26f9666... EthGas
13767853 8 3450 1851 +1599 blockdaemon 0x88857150... Ultra Sound
13769067 1 3351 1756 +1595 luno 0xb26f9666... Titan Relay
13767042 6 3417 1824 +1593 blockdaemon 0x82c466b9... BloXroute Regulated
13769225 2 3361 1769 +1592 whale_0x51ac 0x856b0004... Ultra Sound
13766431 1 3346 1756 +1590 blockdaemon 0x856b0004... BloXroute Max Profit
13769824 0 3332 1742 +1590 stakingfacilities_lido 0x88857150... Ultra Sound
13762910 6 3412 1824 +1588 everstake 0xb26f9666... Titan Relay
13768381 0 3328 1742 +1586 blockdaemon 0xb26f9666... Titan Relay
13767987 2 3354 1769 +1585 blockdaemon 0xb26f9666... Titan Relay
13763570 0 3326 1742 +1584 luno 0xb26f9666... Titan Relay
13769503 4 3375 1797 +1578 blockdaemon_lido 0x853b0078... BloXroute Regulated
13762929 10 3453 1879 +1574 everstake 0xb26f9666... Titan Relay
13767174 5 3381 1810 +1571 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13763334 1 3325 1756 +1569 blockdaemon 0xb26f9666... Titan Relay
13766883 7 3405 1838 +1567 blockdaemon 0x8a850621... Ultra Sound
13764762 5 3376 1810 +1566 blockdaemon_lido 0x82c466b9... BloXroute Regulated
13763230 6 3389 1824 +1565 solo_stakers 0xb67eaa5e... Aestus
13763274 0 3306 1742 +1564 whale_0xdc8d 0x99dbe3e8... Ultra Sound
13767811 6 3385 1824 +1561 blockdaemon_lido 0x88857150... Ultra Sound
13763115 2 3329 1769 +1560 luno 0xb26f9666... Titan Relay
13766435 1 3310 1756 +1554 everstake 0x853b0078... BloXroute Max Profit
13764872 1 3309 1756 +1553 blockdaemon_lido 0x88a53ec4... BloXroute Regulated
13769349 4 3350 1797 +1553 blockdaemon 0x855b00e6... BloXroute Max Profit
13768689 7 3390 1838 +1552 luno 0x88857150... Ultra Sound
13769230 9 3416 1865 +1551 blockdaemon_lido 0x850b00e0... BloXroute Regulated
13767145 2 3320 1769 +1551 everstake 0x8db2a99d... BloXroute Max Profit
13763564 3 3327 1783 +1544 blockdaemon_lido 0x856b0004... BloXroute Max Profit
13762991 1 3298 1756 +1542 ether.fi 0x82c466b9... EthGas
13768985 5 3352 1810 +1542 blockdaemon_lido 0x88857150... Ultra Sound
13769554 0 3280 1742 +1538 luno 0xb26f9666... Titan Relay
13765312 0 3280 1742 +1538 p2porg 0x851b00b1... Flashbots
13769676 0 3280 1742 +1538 blockdaemon_lido 0x926b7905... BloXroute Max Profit
13768772 3 3321 1783 +1538 blockdaemon 0x853b0078... BloXroute Regulated
13767356 1 3290 1756 +1534 blockscape_lido 0x856b0004... BloXroute Max Profit
13769643 4 3331 1797 +1534 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13766646 4 3330 1797 +1533 blockdaemon_lido 0x88857150... Ultra Sound
13763615 0 3271 1742 +1529 blockdaemon 0x926b7905... BloXroute Max Profit
13762875 9 3394 1865 +1529 everstake 0xac23f8cc... Flashbots
13768364 7 3366 1838 +1528 blockdaemon_lido 0x88510a78... BloXroute Regulated
13768622 5 3336 1810 +1526 whale_0xb83e 0x8527d16c... Ultra Sound
13769347 5 3331 1810 +1521 luno 0xb26f9666... Titan Relay
13764671 7 3358 1838 +1520 blockdaemon 0x8527d16c... Ultra Sound
13769150 8 3370 1851 +1519 everstake 0x856b0004... Aestus
13768390 2 3286 1769 +1517 revolut 0xb67eaa5e... BloXroute Regulated
13765845 7 3354 1838 +1516 everstake 0x853b0078... BloXroute Regulated
13769422 1 3270 1756 +1514 blockdaemon 0x8527d16c... Ultra Sound
13764908 2 3282 1769 +1513 blockdaemon_lido 0xb26f9666... Titan Relay
13766256 6 3336 1824 +1512 blockdaemon_lido 0x823e0146... BloXroute Max Profit
13765344 2 3280 1769 +1511 p2porg 0x853b0078... Agnostic Gnosis
13766621 1 3266 1756 +1510 everstake 0x853b0078... Agnostic Gnosis
13766425 6 3332 1824 +1508 everstake 0xb67eaa5e... BloXroute Max Profit
13769148 6 3332 1824 +1508 revolut 0x853b0078... BloXroute Regulated
13766521 7 3343 1838 +1505 everstake 0x8527d16c... Ultra Sound
13769258 6 3327 1824 +1503 revolut 0xb26f9666... Titan Relay
13763434 11 3395 1892 +1503 blockdaemon_lido 0x8527d16c... Ultra Sound
13768671 6 3326 1824 +1502 solo_stakers 0xac23f8cc... BloXroute Max Profit
13762856 11 3394 1892 +1502 luno 0xb26f9666... Titan Relay
13765278 1 3253 1756 +1497 blockdaemon_lido 0x88857150... Ultra Sound
13763197 0 3239 1742 +1497 blockdaemon 0xb26f9666... Titan Relay
13765764 9 3362 1865 +1497 everstake 0xb26f9666... Titan Relay
13765990 1 3251 1756 +1495 everstake 0x853b0078... BloXroute Max Profit
13769850 1 3250 1756 +1494 blockdaemon 0x8527d16c... Ultra Sound
13767668 0 3235 1742 +1493 blockdaemon_lido 0x823e0146... BloXroute Max Profit
13766270 2 3262 1769 +1493 blockdaemon 0x850b00e0... BloXroute Regulated
13763202 1 3245 1756 +1489 p2porg 0xb26f9666... BloXroute Regulated
13765872 1 3243 1756 +1487 blockdaemon 0x8527d16c... Ultra Sound
13765905 10 3366 1879 +1487 blockdaemon_lido 0x856b0004... Ultra Sound
13765440 7 3324 1838 +1486 bitstamp 0xb67eaa5e... BloXroute Max Profit
13765323 2 3253 1769 +1484 whale_0xdc8d 0xb26f9666... Titan Relay
13765775 10 3361 1879 +1482 blockdaemon_lido 0xb26f9666... Titan Relay
13765055 10 3361 1879 +1482 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13769475 1 3237 1756 +1481 blockdaemon 0x88857150... Ultra Sound
13768974 5 3289 1810 +1479 whale_0xdc8d 0x8527d16c... Ultra Sound
13765202 11 3371 1892 +1479 everstake 0x8527d16c... Ultra Sound
13764006 1 3231 1756 +1475 blockdaemon_lido 0x88857150... Ultra Sound
13766033 0 3217 1742 +1475 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13762829 14 3408 1933 +1475 blockdaemon 0xb26f9666... Titan Relay
13767944 0 3216 1742 +1474 blockdaemon 0x8527d16c... Ultra Sound
13768579 6 3298 1824 +1474 stakingfacilities_lido 0x93b11bec... Flashbots
13765609 9 3339 1865 +1474 stakefish 0x853b0078... BloXroute Max Profit
13764170 8 3325 1851 +1474 bitstamp 0x88857150... Ultra Sound
13768418 8 3323 1851 +1472 blockdaemon_lido 0x88857150... Ultra Sound
13768076 14 3403 1933 +1470 blockdaemon_lido 0x88510a78... BloXroute Regulated
13767457 0 3211 1742 +1469 everstake 0xa9bd259c... Ultra Sound
13762820 4 3264 1797 +1467 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13769997 3 3250 1783 +1467 whale_0xdc8d 0x8527d16c... Ultra Sound
13767587 6 3289 1824 +1465 blockdaemon 0xb26f9666... Titan Relay
13768791 0 3206 1742 +1464 revolut 0xb26f9666... Titan Relay
13767022 6 3284 1824 +1460 0x853b0078... Ultra Sound
13769581 8 3309 1851 +1458 blockdaemon 0x82c466b9... BloXroute Regulated
13766555 6 3281 1824 +1457 blockdaemon_lido 0xb26f9666... Titan Relay
13763848 2 3225 1769 +1456 blockdaemon_lido 0x853b0078... Ultra Sound
13765709 1 3211 1756 +1455 stader 0xb26f9666... Titan Relay
13766187 6 3275 1824 +1451 0x8527d16c... Ultra Sound
13766001 6 3271 1824 +1447 rocketpool 0x8a850621... Ultra Sound
13764793 1 3201 1756 +1445 everstake 0xb26f9666... Titan Relay
13765248 6 3268 1824 +1444 whale_0x3ffa 0x850b00e0... BloXroute Max Profit
13768152 17 3416 1974 +1442 p2porg 0x82c466b9... BloXroute Regulated
13766759 11 3333 1892 +1441 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13768685 6 3264 1824 +1440 everstake 0xb67eaa5e... BloXroute Max Profit
13765226 6 3262 1824 +1438 everstake 0xb26f9666... Aestus
13768463 11 3330 1892 +1438 kelp 0x88a53ec4... BloXroute Max Profit
13767403 1 3193 1756 +1437 stakingfacilities_lido 0x853b0078... Agnostic Gnosis
13768420 3 3218 1783 +1435 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13768454 9 3299 1865 +1434 revolut 0xb26f9666... Titan Relay
13766492 4 3228 1797 +1431 0x8527d16c... Ultra Sound
13769772 5 3240 1810 +1430 ether.fi 0x8527d16c... Ultra Sound
13767490 1 3185 1756 +1429 stakingfacilities_lido 0x88857150... Ultra Sound
13763351 6 3253 1824 +1429 everstake 0xb26f9666... Titan Relay
13768313 4 3224 1797 +1427 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13769943 0 3168 1742 +1426 everstake 0x852b0070... Agnostic Gnosis
13767848 11 3317 1892 +1425 blockdaemon_lido 0x853b0078... Ultra Sound
13767714 5 3233 1810 +1423 blockdaemon_lido 0x88857150... Ultra Sound
13767640 13 3341 1920 +1421 0x8527d16c... Ultra Sound
13767477 17 3393 1974 +1419 stakingfacilities_lido 0xb67eaa5e... BloXroute Max Profit
13768010 19 3419 2002 +1417 everstake 0xb26f9666... Titan Relay
13763561 1 3172 1756 +1416 everstake 0x8527d16c... Ultra Sound
13768827 6 3237 1824 +1413 gateway.fmas_lido 0x853b0078... Ultra Sound
13764194 1 3168 1756 +1412 p2porg 0x853b0078... Agnostic Gnosis
13768447 0 3153 1742 +1411 everstake 0xb26f9666... Aestus
13763349 9 3273 1865 +1408 blockdaemon_lido 0x853b0078... Ultra Sound
13769282 2 3177 1769 +1408 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13766963 2 3177 1769 +1408 gateway.fmas_lido 0x8527d16c... Ultra Sound
13764315 7 3245 1838 +1407 p2porg 0xb26f9666... Titan Relay
13766727 0 3149 1742 +1407 whale_0x8ebd 0xb26f9666... Titan Relay
13764980 2 3175 1769 +1406 0x856b0004... Ultra Sound
13766896 4 3199 1797 +1402 stakingfacilities_lido 0x8527d16c... Ultra Sound
13767019 0 3143 1742 +1401 gateway.fmas_lido 0x823e0146... BloXroute Max Profit
13765947 1 3156 1756 +1400 gateway.fmas_lido 0x8527d16c... Ultra Sound
13763925 13 3320 1920 +1400 abyss_finance 0xb67eaa5e... BloXroute Regulated
13767685 11 3292 1892 +1400 kelp 0x88a53ec4... BloXroute Max Profit
13769964 11 3292 1892 +1400 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13763327 2 3168 1769 +1399 whale_0x8ebd 0xb26f9666... Titan Relay
13765863 1 3154 1756 +1398 gateway.fmas_lido 0x8527d16c... Ultra Sound
13765696 4 3194 1797 +1397 kelp 0x853b0078... Aestus
13763942 5 3205 1810 +1395 everstake 0x823e0146... Flashbots
13763438 0 3136 1742 +1394 p2porg 0x99dbe3e8... Ultra Sound
13763970 2 3162 1769 +1393 gateway.fmas_lido 0x823e0146... BloXroute Max Profit
13766167 7 3230 1838 +1392 p2porg 0xb26f9666... Titan Relay
13764193 5 3202 1810 +1392 everstake 0x8527d16c... Ultra Sound
13765843 6 3214 1824 +1390 blockdaemon 0x8527d16c... Ultra Sound
13765803 6 3214 1824 +1390 0xb67eaa5e... Aestus
13764936 4 3186 1797 +1389 gateway.fmas_lido 0xb26f9666... Titan Relay
13766173 10 3268 1879 +1389 p2porg 0x850b00e0... BloXroute Regulated
13768048 5 3199 1810 +1389 bitstamp 0x856b0004... Ultra Sound
13767691 7 3226 1838 +1388 everstake 0x853b0078... BloXroute Max Profit
13763762 15 3335 1947 +1388 coinbase Local Local
13766299 6 3210 1824 +1386 0x8527d16c... Ultra Sound
13769938 5 3196 1810 +1386 blockdaemon 0x88510a78... BloXroute Regulated
13764802 1 3141 1756 +1385 gateway.fmas_lido 0x8db2a99d... Flashbots
13763319 9 3250 1865 +1385 everstake 0x853b0078... Aestus
13764607 6 3208 1824 +1384 everstake 0xb26f9666... Titan Relay
13764312 9 3248 1865 +1383 mantle 0x88857150... Ultra Sound
13764285 1 3137 1756 +1381 stakingfacilities_lido 0x88a53ec4... BloXroute Max Profit
13769854 16 3342 1961 +1381 blockdaemon 0xb26f9666... Titan Relay
13763811 0 3123 1742 +1381 kraken 0xb26f9666... EthGas
13768585 0 3123 1742 +1381 everstake 0x853b0078... Agnostic Gnosis
13763329 3 3164 1783 +1381 ether.fi 0x853b0078... Aestus
13769169 6 3205 1824 +1381 whale_0x8ebd 0x857b0038... Ultra Sound
13767000 6 3203 1824 +1379 stakingfacilities_lido 0x8527d16c... Ultra Sound
13764355 6 3202 1824 +1378 everstake 0xb26f9666... Titan Relay
13768278 5 3188 1810 +1378 whale_0x8ebd 0x8527d16c... Ultra Sound
13763023 10 3255 1879 +1376 p2porg 0x88a53ec4... BloXroute Max Profit
13769115 6 3194 1824 +1370 p2porg 0x8527d16c... Ultra Sound
13766874 6 3194 1824 +1370 stakingfacilities_lido 0x853b0078... Ultra Sound
13768467 11 3262 1892 +1370 everstake 0xb26f9666... Aestus
13764057 7 3207 1838 +1369 kelp 0x8527d16c... Ultra Sound
13768891 0 3111 1742 +1369 stakingfacilities_lido 0xac23f8cc... Flashbots
13768215 0 3110 1742 +1368 everstake 0xb26f9666... Titan Relay
13764651 12 3272 1906 +1366 blockdaemon_lido 0xb26f9666... Titan Relay
13763072 1 3121 1756 +1365 whale_0x8ebd 0x856b0004... BloXroute Max Profit
13763077 13 3283 1920 +1363 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13766832 1 3117 1756 +1361 whale_0x8ebd 0x8a850621... Ultra Sound
13768664 8 3212 1851 +1361 kraken 0xb26f9666... EthGas
13764041 2 3129 1769 +1360 ether.fi 0x8527d16c... Ultra Sound
13763963 2 3128 1769 +1359 gateway.fmas_lido 0x8527d16c... Ultra Sound
13769303 2 3128 1769 +1359 p2porg 0x8527d16c... Ultra Sound
13769692 5 3169 1810 +1359 everstake 0x853b0078... Agnostic Gnosis
13764143 4 3155 1797 +1358 stakingfacilities_lido 0x853b0078... Ultra Sound
13767243 0 3100 1742 +1358 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13769008 9 3223 1865 +1358 everstake 0xb67eaa5e... BloXroute Regulated
13763751 12 3263 1906 +1357 solo_stakers 0xb67eaa5e... Aestus
13764463 5 3167 1810 +1357 figment 0xb67eaa5e... BloXroute Max Profit
13763111 11 3248 1892 +1356 everstake 0xb7c5beef... Titan Relay
13768824 1 3110 1756 +1354 gateway.fmas_lido 0x88857150... Ultra Sound
13768975 0 3096 1742 +1354 gateway.fmas_lido 0x8527d16c... Ultra Sound
13764749 3 3137 1783 +1354 gateway.fmas_lido 0x823e0146... BloXroute Max Profit
13764946 6 3178 1824 +1354 bitstamp 0x8527d16c... Ultra Sound
13763015 1 3109 1756 +1353 mantle 0x8527d16c... Ultra Sound
13762987 8 3204 1851 +1353 whale_0x8ebd 0x823e0146... BloXroute Max Profit
13763966 1 3107 1756 +1351 stakingfacilities_lido 0x8db2a99d... Flashbots
13764660 1 3107 1756 +1351 gateway.fmas_lido 0x88857150... Ultra Sound
13766732 1 3106 1756 +1350 gateway.fmas_lido 0x8527d16c... Ultra Sound
13766260 4 3147 1797 +1350 whale_0xdd6c 0x8db2a99d... BloXroute Max Profit
13766336 8 3201 1851 +1350 abyss_finance 0x88a53ec4... BloXroute Max Profit
13766176 1 3105 1756 +1349 whale_0x9212 0x88857150... Ultra Sound
13766062 1 3104 1756 +1348 gateway.fmas_lido 0x853b0078... Agnostic Gnosis
13769297 21 3377 2029 +1348 p2porg 0x850b00e0... BloXroute Regulated
13769083 5 3158 1810 +1348 everstake 0x856b0004... Aestus
13762906 8 3197 1851 +1346 mantle 0x8527d16c... Ultra Sound
13765589 1 3101 1756 +1345 kelp 0x8527d16c... Ultra Sound
13769996 6 3169 1824 +1345 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13766359 6 3169 1824 +1345 stakingfacilities_lido 0x853b0078... BloXroute Max Profit
13767343 1 3095 1756 +1339 mantle 0xb26f9666... Titan Relay
13765046 5 3146 1810 +1336 everstake 0x853b0078... BloXroute Max Profit
13768727 0 3076 1742 +1334 gateway.fmas_lido 0x8db2a99d... Flashbots
13763214 21 3363 2029 +1334 whale_0x8ebd 0x857b0038... Ultra Sound
13768955 8 3185 1851 +1334 myetherwallet 0xb67eaa5e... BloXroute Regulated
13765336 8 3185 1851 +1334 0x853b0078... Agnostic Gnosis
13762917 1 3088 1756 +1332 kelp 0x88857150... Ultra Sound
13769434 6 3156 1824 +1332 p2porg 0x8db2a99d... Flashbots
13766129 6 3156 1824 +1332 gateway.fmas_lido 0x88857150... Ultra Sound
13763096 4 3128 1797 +1331 p2porg 0x853b0078... Aestus
13767981 6 3155 1824 +1331 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13766718 9 3195 1865 +1330 gateway.fmas_lido 0x8527d16c... Ultra Sound
13762988 1 3085 1756 +1329 mantle 0xb26f9666... Titan Relay
13768717 0 3071 1742 +1329 everstake 0x823e0146... Flashbots
13767688 0 3071 1742 +1329 p2porg 0xa1da2978... Ultra Sound
13763914 1 3084 1756 +1328 everstake 0x88a53ec4... BloXroute Max Profit
13765948 3 3110 1783 +1327 kelp 0x856b0004... BloXroute Max Profit
13765354 6 3151 1824 +1327 p2porg 0xb26f9666... BloXroute Max Profit
13764159 4 3123 1797 +1326 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13766983 10 3205 1879 +1326 everstake 0x853b0078... Agnostic Gnosis
13763581 0 3068 1742 +1326 everstake 0x852b0070... BloXroute Max Profit
13769650 0 3067 1742 +1325 p2porg 0xb26f9666... BloXroute Regulated
13765621 5 3135 1810 +1325 p2porg 0x8db2a99d... BloXroute Max Profit
13769712 10 3203 1879 +1324 everstake 0x8527d16c... Ultra Sound
13768502 0 3066 1742 +1324 ether.fi 0x8527d16c... Ultra Sound
13766454 9 3189 1865 +1324 ether.fi 0x823e0146... BloXroute Max Profit
13763458 1 3079 1756 +1323 gateway.fmas_lido 0x8527d16c... Ultra Sound
13766834 2 3092 1769 +1323 ether.fi 0x88a53ec4... BloXroute Max Profit
13762898 1 3078 1756 +1322 p2porg 0x8527d16c... Ultra Sound
13763044 1 3078 1756 +1322 p2porg 0x853b0078... Aestus
13763325 10 3199 1879 +1320 gateway.fmas_lido 0xb26f9666... Titan Relay
13769274 0 3062 1742 +1320 whale_0xe985 0xb211df49... Agnostic Gnosis
13768950 8 3171 1851 +1320 p2porg 0x853b0078... Ultra Sound
13769993 0 3061 1742 +1319 p2porg 0x91b123d8... BloXroute Regulated
13768993 1 3074 1756 +1318 kelp 0x88857150... Ultra Sound
13762817 4 3115 1797 +1318 p2porg 0xb26f9666... Titan Relay
13767291 13 3236 1920 +1316 stakingfacilities_lido 0x853b0078... Agnostic Gnosis
13764991 1 3071 1756 +1315 kelp 0x8527d16c... Ultra Sound
13763436 0 3057 1742 +1315 coinbase 0xb67eaa5e... Aestus
13769330 2 3084 1769 +1315 kelp 0xb26f9666... Titan Relay
13763961 5 3125 1810 +1315 mantle 0x8527d16c... Ultra Sound
13764219 8 3165 1851 +1314 kraken 0xb26f9666... EthGas
13764786 1 3068 1756 +1312 p2porg 0xb26f9666... BloXroute Regulated
13766974 7 3150 1838 +1312 whale_0xedc6 0x853b0078... BloXroute Max Profit
13768170 0 3053 1742 +1311 mantle 0xa9bd259c... Flashbots
13767004 6 3135 1824 +1311 p2porg 0x82c466b9... Flashbots
13769573 15 3257 1947 +1310 p2porg 0xac23f8cc... BloXroute Max Profit
13763816 1 3065 1756 +1309 p2porg 0x8527d16c... Ultra Sound
13767086 1 3064 1756 +1308 kelp 0x8527d16c... Ultra Sound
13766304 1 3064 1756 +1308 ether.fi 0x8db2a99d... BloXroute Max Profit
13768287 0 3050 1742 +1308 p2porg 0x8527d16c... Ultra Sound
13766850 3 3091 1783 +1308 ether.fi 0x8527d16c... Ultra Sound
13763132 6 3132 1824 +1308 gateway.fmas_lido 0xb26f9666... Aestus
13764039 5 3118 1810 +1308 ether.fi 0xb26f9666... Titan Relay
13767334 11 3200 1892 +1308 kiln 0x88a53ec4... BloXroute Regulated
13763590 7 3145 1838 +1307 p2porg 0x823e0146... BloXroute Max Profit
13768468 0 3049 1742 +1307 solo_stakers 0xb26f9666... Aestus
13763402 1 3061 1756 +1305 0xb26f9666... BloXroute Max Profit
13766706 14 3237 1933 +1304 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13764286 1 3059 1756 +1303 p2porg 0xb67eaa5e... BloXroute Max Profit
13769267 0 3045 1742 +1303 abyss_finance 0xb26f9666... Titan Relay
13769290 0 3044 1742 +1302 kiln 0xb26f9666... BloXroute Max Profit
13765996 5 3112 1810 +1302 ether.fi 0xb26f9666... Titan Relay
13763551 5 3112 1810 +1302 mantle 0xb26f9666... Titan Relay
13769268 6 3124 1824 +1300 kelp 0x856b0004... BloXroute Max Profit
13769495 1 3055 1756 +1299 kiln 0xb67eaa5e... BloXroute Regulated
13769915 0 3040 1742 +1298 stakingfacilities_lido 0x88857150... Ultra Sound
13763854 0 3040 1742 +1298 kelp 0xb26f9666... Titan Relay
13763166 2 3067 1769 +1298 coinbase 0xb67eaa5e... Aestus
13768623 2 3067 1769 +1298 kelp 0x856b0004... BloXroute Max Profit
13763968 11 3190 1892 +1298 ether.fi 0x88857150... Ultra Sound
13767866 6 3121 1824 +1297 gateway.fmas_lido 0x8527d16c... Ultra Sound
13763744 8 3148 1851 +1297 ether.fi 0x853b0078... BloXroute Max Profit
13769585 5 3106 1810 +1296 everstake 0xb67eaa5e... BloXroute Max Profit
13766766 1 3051 1756 +1295 p2porg 0x8527d16c... Ultra Sound
13765897 7 3133 1838 +1295 gateway.fmas_lido 0x8527d16c... Ultra Sound
13763381 2 3063 1769 +1294 solo_stakers 0x856b0004... BloXroute Max Profit
13768361 0 3035 1742 +1293 kiln 0xa0366397... Ultra Sound
13765945 7 3130 1838 +1292 stakingfacilities_lido 0x8527d16c... Ultra Sound
13769984 0 3032 1742 +1290 mantle 0x88a53ec4... BloXroute Max Profit
13764575 1 3045 1756 +1289 p2porg 0x88a53ec4... BloXroute Max Profit
13762819 2 3058 1769 +1289 p2porg 0x8527d16c... Ultra Sound
13764646 2 3058 1769 +1289 whale_0x8ebd 0x856b0004... Ultra Sound
13763060 5 3099 1810 +1289 nethermind_lido 0x823e0146... Flashbots
13763155 0 3030 1742 +1288 kiln 0xb26f9666... Titan Relay
13769276 0 3030 1742 +1288 kelp 0xb26f9666... Titan Relay
13763268 6 3112 1824 +1288 p2porg 0x855b00e6... BloXroute Max Profit
13767563 1 3043 1756 +1287 kiln 0x823e0146... Flashbots
13769355 2 3056 1769 +1287 kiln 0x88a53ec4... BloXroute Max Profit
13769317 21 3315 2029 +1286 kelp 0x8527d16c... Ultra Sound
13767180 16 3246 1961 +1285 everstake 0xb26f9666... Aestus
13769407 3 3068 1783 +1285 ether.fi 0x8527d16c... Ultra Sound
13764661 12 3191 1906 +1285 bitstamp 0x8527d16c... Ultra Sound
13767567 8 3136 1851 +1285 kelp 0x8527d16c... Ultra Sound
13766749 1 3040 1756 +1284 everstake 0x8a850621... Ultra Sound
13763457 7 3122 1838 +1284 mantle 0x88857150... Ultra Sound
13763457 7 3122 1838 +1284 mantle 0x88857150... Ultra Sound
13763611 13 3204 1920 +1284 stakingfacilities_lido 0x8db2a99d... BloXroute Max Profit
13765319 2 3053 1769 +1284 abyss_finance 0x853b0078... Aestus
13766222 1 3039 1756 +1283 p2porg 0xb67eaa5e... BloXroute Max Profit
13768681 0 3025 1742 +1283 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
13767159 0 3025 1742 +1283 mantle 0xb26f9666... Titan Relay
13763855 1 3038 1756 +1282 p2porg 0x8527d16c... Ultra Sound
13767926 0 3022 1742 +1280 mantle 0x852b0070... Aestus
13763866 6 3104 1824 +1280 kiln 0x855b00e6... Flashbots
13768179 16 3240 1961 +1279 everstake 0x823e0146... BloXroute Max Profit
13766451 7 3116 1838 +1278 0x8db2a99d... BloXroute Max Profit
13768437 2 3047 1769 +1278 kiln 0x88a53ec4... BloXroute Regulated
13763613 6 3101 1824 +1277 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
13764266 2 3046 1769 +1277 p2porg 0x853b0078... BloXroute Max Profit
13769756 0 3018 1742 +1276 p2porg 0xb67eaa5e... BloXroute Max Profit
13768400 0 3018 1742 +1276 0x852b0070... BloXroute Max Profit
13767736 6 3100 1824 +1276 ether.fi 0xb26f9666... Titan Relay
13763682 1 3031 1756 +1275 ether.fi 0x823e0146... Flashbots
13765347 7 3113 1838 +1275 p2porg 0x88a53ec4... BloXroute Max Profit
13765731 3 3058 1783 +1275 ether.fi 0x8527d16c... Ultra Sound
13766612 14 3208 1933 +1275 kiln 0x88a53ec4... BloXroute Max Profit
13763612 0 3015 1742 +1273 whale_0x8ebd 0xb7c5e609... BloXroute Max Profit
13763684 1 3028 1756 +1272 mantle 0x88a53ec4... BloXroute Regulated
13764423 6 3096 1824 +1272 kelp 0xb26f9666... Titan Relay
13766814 1 3027 1756 +1271 kiln 0xb26f9666... Aestus
13769576 0 3013 1742 +1271 whale_0x8ebd 0x8527d16c... Ultra Sound
13769592 1 3026 1756 +1270 whale_0xad3b 0x853b0078... Ultra Sound
13768790 4 3067 1797 +1270 ether.fi 0xb26f9666... Aestus
13769678 1 3025 1756 +1269 kelp 0xb26f9666... Titan Relay
13764406 1 3025 1756 +1269 p2porg 0x8527d16c... Ultra Sound
13763087 6 3093 1824 +1269 kiln 0xb26f9666... BloXroute Regulated
13768224 0 3010 1742 +1268 paralinker 0x8a850621... Titan Relay
13769741 6 3092 1824 +1268 gateway.fmas_lido 0x88857150... Ultra Sound
Total anomalies: 379

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