Sun, Apr 12, 2026

Propagation anomalies - 2026-04-12

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

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

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

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

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

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

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

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

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

-- Column arrival timing: first arrival per column, then min/max of those
column_gossip AS (
    SELECT
        slot,
        min(first_seen) AS first_column_first_seen,
        max(first_seen) AS last_column_first_seen
    FROM (
        SELECT
            slot,
            column_index,
            min(event_date_time) AS first_seen
        FROM libp2p_gossipsub_data_column_sidecar
        WHERE meta_network_name = 'mainnet'
          AND slot_start_date_time >= '2026-04-12' AND slot_start_date_time < '2026-04-12'::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,185
MEV blocks: 6,664 (92.7%)
Local blocks: 521 (7.3%)

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 = 1730.1 + 20.05 × blob_count (R² = 0.012)
Residual σ = 612.6ms
Anomalies (>2σ slow): 413 (5.7%)
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
14097984 0 7720 1730 +5990 rocketpool Local Local
14095095 0 5049 1730 +3319 myetherwallet Local Local
14095744 1 4829 1750 +3079 upbit Local Local
14096960 0 4719 1730 +2989 upbit Local Local
14097248 0 4696 1730 +2966 liquid_collective Local Local
14098688 0 4636 1730 +2906 upbit Local Local
14099040 0 4382 1730 +2652 whale_0xd5e9 Local Local
14097275 0 3840 1730 +2110 whale_0x8ebd 0x99dbe3e8... Agnostic Gnosis
14099132 0 3818 1730 +2088 blockdaemon 0x8db2a99d... Ultra Sound
14100000 0 3692 1730 +1962 luno 0x8db2a99d... BloXroute Max Profit
14098531 7 3731 1870 +1861 whale_0x9212 0xb67eaa5e... BloXroute Max Profit
14096385 1 3580 1750 +1830 blockdaemon 0x853b0078... Ultra Sound
14096406 3 3597 1790 +1807 blockdaemon_lido 0x8527d16c... Ultra Sound
14095130 6 3645 1850 +1795 whale_0xb6de Local Local
14100578 0 3522 1730 +1792 dsrv_lido 0xb26f9666... Titan Relay
14096486 4 3594 1810 +1784 ether.fi 0x8527d16c... Ultra Sound
14099854 1 3518 1750 +1768 blockdaemon 0xb4ce6162... Ultra Sound
14095978 2 3519 1770 +1749 blockdaemon 0x8527d16c... Ultra Sound
14094281 5 3573 1830 +1743 blockdaemon 0x857b0038... Ultra Sound
14095326 9 3633 1911 +1722 coinbase 0xb67eaa5e... BloXroute Max Profit
14098969 15 3753 2031 +1722 kraken 0x8527d16c... EthGas
14097465 2 3467 1770 +1697 ether.fi 0xb26f9666... Aestus
14098679 5 3526 1830 +1696 blockdaemon 0xb4ce6162... Ultra Sound
14094251 6 3544 1850 +1694 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14095136 13 3683 1991 +1692 kraken 0xb26f9666... EthGas
14099740 1 3438 1750 +1688 ether.fi 0xb26f9666... Titan Relay
14095171 1 3424 1750 +1674 blockdaemon 0x8a850621... Titan Relay
14094146 0 3396 1730 +1666 luno 0xb26f9666... Titan Relay
14100299 1 3411 1750 +1661 blockdaemon 0x8527d16c... Ultra Sound
14099272 5 3487 1830 +1657 blockdaemon 0x8a850621... BloXroute Max Profit
14095041 1 3403 1750 +1653 blockdaemon 0x88a53ec4... BloXroute Regulated
14100384 0 3381 1730 +1651 gateway.fmas_lido 0xb26f9666... Titan Relay
14100991 1 3400 1750 +1650 blockdaemon_lido 0xb67eaa5e... Titan Relay
14094889 1 3398 1750 +1648 ether.fi 0xac23f8cc... Flashbots
14095386 1 3397 1750 +1647 ether.fi 0x856b0004... Ultra Sound
14101154 0 3376 1730 +1646 blockdaemon 0xb4ce6162... Ultra Sound
14094692 5 3466 1830 +1636 blockdaemon 0xb67eaa5e... BloXroute Regulated
14094232 1 3383 1750 +1633 blockdaemon 0xb26f9666... Titan Relay
14099928 6 3482 1850 +1632 nethermind_lido 0x8db2a99d... Ultra Sound
14100664 1 3377 1750 +1627 blockdaemon 0xb26f9666... Titan Relay
14094315 2 3394 1770 +1624 nethermind_lido 0x8db2a99d... Flashbots
14098883 1 3367 1750 +1617 blockdaemon_lido 0x856b0004... Ultra Sound
14099543 5 3447 1830 +1617 ether.fi 0xb67eaa5e... Titan Relay
14095777 5 3444 1830 +1614 ether.fi 0xb26f9666... Titan Relay
14098220 6 3463 1850 +1613 blockdaemon 0x8a850621... Titan Relay
14099178 1 3361 1750 +1611 whale_0xa7d9 0x857b0038... Ultra Sound
14095076 4 3421 1810 +1611 lido 0xac23f8cc... BloXroute Max Profit
14095137 1 3359 1750 +1609 ether.fi 0x856b0004... Ultra Sound
14097624 5 3439 1830 +1609 ether.fi Local Local
14098942 1 3353 1750 +1603 blockdaemon_lido 0xb26f9666... Titan Relay
14095689 0 3332 1730 +1602 blockdaemon 0xb26f9666... Titan Relay
14094714 2 3372 1770 +1602 ether.fi 0x8527d16c... Ultra Sound
14098051 10 3532 1931 +1601 blockdaemon 0x857b0038... Ultra Sound
14097600 5 3430 1830 +1600 bitstamp 0xb67eaa5e... BloXroute Max Profit
14100868 0 3327 1730 +1597 blockdaemon_lido 0x88a53ec4... BloXroute Regulated
14095733 0 3326 1730 +1596 blockdaemon 0x8527d16c... Ultra Sound
14099826 0 3325 1730 +1595 whale_0xdc8d 0x853b0078... Ultra Sound
14096240 0 3325 1730 +1595 luno 0xa965c911... Ultra Sound
14097545 11 3543 1951 +1592 blockdaemon_lido 0x8527d16c... Ultra Sound
14097482 3 3382 1790 +1592 blockdaemon_lido 0x853b0078... Ultra Sound
14096374 6 3442 1850 +1592 coinbase 0xb26f9666... Titan Relay
14096138 0 3321 1730 +1591 blockdaemon_lido 0xb26f9666... Titan Relay
14096754 6 3441 1850 +1591 blockdaemon 0xb67eaa5e... BloXroute Regulated
14099176 0 3319 1730 +1589 blockdaemon 0x80ad903b... BloXroute Max Profit
14098364 6 3436 1850 +1586 blockdaemon 0x856b0004... Ultra Sound
14100236 0 3315 1730 +1585 blockdaemon 0x857b0038... Ultra Sound
14099827 0 3308 1730 +1578 luno 0x8527d16c... Ultra Sound
14096584 0 3308 1730 +1578 blockdaemon_lido 0xb4ce6162... Ultra Sound
14101179 0 3307 1730 +1577 blockdaemon 0xb26f9666... Titan Relay
14094844 5 3406 1830 +1576 blockdaemon 0xb67eaa5e... BloXroute Max Profit
14098772 0 3305 1730 +1575 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14094196 6 3423 1850 +1573 blockdaemon 0xb67eaa5e... BloXroute Max Profit
14098113 1 3322 1750 +1572 blockdaemon 0x823e0146... Ultra Sound
14097897 1 3319 1750 +1569 blockdaemon 0x9129eeb4... Ultra Sound
14095969 0 3296 1730 +1566 p2porg 0x8db2a99d... Ultra Sound
14100923 0 3292 1730 +1562 blockdaemon_lido 0xb67eaa5e... Titan Relay
14096297 6 3411 1850 +1561 luno 0x8db2a99d... Ultra Sound
14095813 0 3289 1730 +1559 0xb26f9666... Titan Relay
14100112 3 3347 1790 +1557 luno 0x853b0078... Ultra Sound
14100680 12 3523 1971 +1552 ether.fi 0x853b0078... BloXroute Max Profit
14095681 0 3280 1730 +1550 luno 0xac23f8cc... BloXroute Max Profit
14099988 2 3318 1770 +1548 blockdaemon 0x88510a78... Ultra Sound
14094447 10 3478 1931 +1547 luno 0xb67eaa5e... BloXroute Max Profit
14097985 0 3277 1730 +1547 ether.fi Local Local
14094188 5 3374 1830 +1544 blockdaemon_lido 0xb26f9666... Titan Relay
14099189 1 3292 1750 +1542 0x856b0004... Ultra Sound
14094627 21 3692 2151 +1541 ether.fi 0x856b0004... BloXroute Max Profit
14094514 0 3269 1730 +1539 blockdaemon 0xb4ce6162... Ultra Sound
14094306 0 3268 1730 +1538 whale_0x8ebd 0x85fb0503... BloXroute Max Profit
14100857 1 3286 1750 +1536 whale_0xdc8d 0x856b0004... Ultra Sound
14098086 10 3463 1931 +1532 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
14097510 0 3262 1730 +1532 blockdaemon_lido 0xb4ce6162... Ultra Sound
14096462 2 3302 1770 +1532 luno 0x853b0078... Ultra Sound
14098495 0 3257 1730 +1527 blockdaemon_lido 0xa965c911... Ultra Sound
14098395 6 3376 1850 +1526 blockdaemon 0xb26f9666... Titan Relay
14095431 8 3415 1891 +1524 blockdaemon_lido 0x9129eeb4... Ultra Sound
14099008 6 3374 1850 +1524 ether.fi 0xb67eaa5e... BloXroute Max Profit
14099496 5 3351 1830 +1521 everstake 0x8527d16c... Ultra Sound
14097319 6 3370 1850 +1520 whale_0x8ebd 0x857b0038... Ultra Sound
14096640 7 3389 1870 +1519 solo_stakers 0x856b0004... Aestus
14097707 0 3243 1730 +1513 blockdaemon_lido 0xb67eaa5e... Titan Relay
14094881 5 3343 1830 +1513 0xb67eaa5e... BloXroute Regulated
14096156 1 3262 1750 +1512 luno 0x8db2a99d... Ultra Sound
14097587 8 3402 1891 +1511 whale_0xdc8d 0x8527d16c... Ultra Sound
14095999 10 3437 1931 +1506 kiln 0xb67eaa5e... BloXroute Max Profit
14097507 1 3256 1750 +1506 blockdaemon 0xb26f9666... Titan Relay
14097797 5 3334 1830 +1504 revolut 0xb67eaa5e... BloXroute Regulated
14100657 6 3352 1850 +1502 blockdaemon_lido 0xb67eaa5e... Titan Relay
14101186 5 3327 1830 +1497 whale_0xdc8d 0xb67eaa5e... BloXroute Regulated
14097065 1 3243 1750 +1493 blockdaemon_lido 0xb67eaa5e... Titan Relay
14096800 5 3322 1830 +1492 p2porg 0x853b0078... Titan Relay
14096979 6 3342 1850 +1492 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14098421 0 3219 1730 +1489 p2porg 0x8527d16c... Ultra Sound
14098538 0 3219 1730 +1489 whale_0xdc8d 0x9129eeb4... Ultra Sound
14099859 1 3239 1750 +1489 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
14099364 2 3258 1770 +1488 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14095590 5 3316 1830 +1486 0x88a53ec4... BloXroute Regulated
14096239 5 3315 1830 +1485 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14099324 0 3213 1730 +1483 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14098892 17 3553 2071 +1482 blockdaemon_lido 0x88857150... Ultra Sound
14094790 0 3211 1730 +1481 kiln 0xb5a65d00... Aestus
14099014 0 3210 1730 +1480 whale_0x8ebd 0x88857150... Ultra Sound
14097002 0 3207 1730 +1477 gateway.fmas_lido 0x856b0004... BloXroute Max Profit
14099023 2 3247 1770 +1477 whale_0x8ebd 0x857b0038... Ultra Sound
14100780 11 3426 1951 +1475 blockdaemon_lido 0x8527d16c... Ultra Sound
14099621 0 3205 1730 +1475 blockdaemon_lido 0x823e0146... BloXroute Max Profit
14096222 0 3201 1730 +1471 coinbase 0xb26f9666... Titan Relay
14101047 2 3241 1770 +1471 blockdaemon 0x88a53ec4... BloXroute Regulated
14097466 6 3317 1850 +1467 revolut 0x853b0078... BloXroute Max Profit
14098455 1 3214 1750 +1464 blockdaemon 0x8527d16c... Ultra Sound
14094127 4 3274 1810 +1464 blockdaemon_lido 0xb26f9666... Titan Relay
14096162 0 3192 1730 +1462 p2porg 0xb67eaa5e... BloXroute Regulated
14100547 1 3211 1750 +1461 blockdaemon 0x8527d16c... Ultra Sound
14099396 5 3290 1830 +1460 ether.fi 0x823e0146... Ultra Sound
14098151 6 3309 1850 +1459 blockdaemon 0x853b0078... Ultra Sound
14097637 10 3389 1931 +1458 nethermind_lido 0xb26f9666... Aestus
14095687 1 3207 1750 +1457 revolut 0xb26f9666... Titan Relay
14099798 6 3304 1850 +1454 whale_0x8ebd 0x8527d16c... Ultra Sound
14099162 0 3181 1730 +1451 revolut 0xb26f9666... Titan Relay
14094777 3 3239 1790 +1449 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14097330 7 3319 1870 +1449 blockdaemon_lido 0x8527d16c... Ultra Sound
14094265 1 3196 1750 +1446 bitstamp 0x85fb0503... Aestus
14097717 3 3235 1790 +1445 revolut 0x853b0078... Ultra Sound
14098139 5 3274 1830 +1444 coinbase 0xb67eaa5e... BloXroute Max Profit
14095622 0 3171 1730 +1441 revolut 0xb26f9666... Titan Relay
14096181 9 3351 1911 +1440 blockdaemon_lido 0x8527d16c... Ultra Sound
14096936 6 3290 1850 +1440 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14096519 5 3265 1830 +1435 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14098668 1 3183 1750 +1433 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14096345 3 3223 1790 +1433 gateway.fmas_lido 0x856b0004... Aestus
14094486 0 3162 1730 +1432 p2porg 0x9129eeb4... Agnostic Gnosis
14096568 0 3161 1730 +1431 gateway.fmas_lido 0x8527d16c... Ultra Sound
14094263 1 3181 1750 +1431 p2porg 0x853b0078... Agnostic Gnosis
14096189 1 3180 1750 +1430 coinbase 0xb26f9666... Titan Relay
14097513 0 3159 1730 +1429 revolut 0xb26f9666... Titan Relay
14095192 3 3218 1790 +1428 revolut 0xb67eaa5e... BloXroute Max Profit
14094794 0 3157 1730 +1427 coinbase 0xb26f9666... Titan Relay
14098339 0 3155 1730 +1425 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
14098275 2 3194 1770 +1424 p2porg 0xb67eaa5e... BloXroute Max Profit
14099098 1 3173 1750 +1423 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
14100251 1 3172 1750 +1422 revolut 0x853b0078... Ultra Sound
14098543 0 3150 1730 +1420 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14099009 0 3148 1730 +1418 bitstamp 0x853b0078... BloXroute Max Profit
14098885 0 3143 1730 +1413 whale_0x8ebd 0x8db2a99d... Ultra Sound
14094396 1 3163 1750 +1413 gateway.fmas_lido 0x85fb0503... BloXroute Max Profit
14098059 0 3142 1730 +1412 gateway.fmas_lido 0x805e28e6... BloXroute Regulated
14101138 0 3141 1730 +1411 p2porg 0x88a53ec4... Aestus
14099090 5 3241 1830 +1411 p2porg 0x856b0004... Aestus
14095248 1 3157 1750 +1407 coinbase 0x8527d16c... Ultra Sound
14097666 5 3237 1830 +1407 revolut 0x853b0078... Ultra Sound
14100694 0 3134 1730 +1404 p2porg 0xb26f9666... Titan Relay
14097163 0 3133 1730 +1403 gateway.fmas_lido 0x88857150... Ultra Sound
14098390 2 3168 1770 +1398 p2porg 0xb26f9666... Titan Relay
14098805 0 3126 1730 +1396 blockdaemon 0x853b0078... BloXroute Regulated
14098754 5 3224 1830 +1394 blockdaemon 0xb67eaa5e... BloXroute Regulated
14100620 0 3122 1730 +1392 blockdaemon_lido 0x88a53ec4... BloXroute Regulated
14095113 1 3142 1750 +1392 gateway.fmas_lido 0x88857150... Ultra Sound
14097146 1 3142 1750 +1392 coinbase 0xb5a65d00... Aestus
14099319 1 3141 1750 +1391 gateway.fmas_lido 0x856b0004... Aestus
14096268 3 3181 1790 +1391 p2porg 0x856b0004... Ultra Sound
14094111 2 3160 1770 +1390 coinbase 0x85fb0503... Aestus
14098729 0 3119 1730 +1389 gateway.fmas_lido 0x99cba505... Flashbots
14098262 5 3219 1830 +1389 whale_0x8ebd 0x8527d16c... Ultra Sound
14094731 0 3115 1730 +1385 gateway.fmas_lido 0x8527d16c... Ultra Sound
14101117 0 3115 1730 +1385 gateway.fmas_lido 0xb7c5e609... BloXroute Max Profit
14097303 1 3135 1750 +1385 p2porg 0x853b0078... Titan Relay
14095224 1 3135 1750 +1385 p2porg 0x853b0078... Agnostic Gnosis
14096402 7 3254 1870 +1384 whale_0x8ebd 0x856b0004... Agnostic Gnosis
14100813 2 3150 1770 +1380 whale_0x8ebd 0xb26f9666... Titan Relay
14100404 9 3288 1911 +1377 coinbase 0xb67eaa5e... BloXroute Max Profit
14100787 1 3127 1750 +1377 p2porg 0xb67eaa5e... BloXroute Max Profit
14098487 10 3304 1931 +1373 kraken 0x8527d16c... EthGas
14096835 6 3223 1850 +1373 coinbase 0xb26f9666... Titan Relay
14095587 7 3243 1870 +1373 blockdaemon_lido 0x88a53ec4... BloXroute Regulated
14096011 0 3102 1730 +1372 p2porg 0xac23f8cc... Aestus
14097015 11 3322 1951 +1371 whale_0xdc8d 0x9129eeb4... Ultra Sound
14094989 16 3422 2051 +1371 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14098172 0 3101 1730 +1371 coinbase 0xb26f9666... Aestus
14099031 0 3101 1730 +1371 coinbase 0xb26f9666... Titan Relay
14094715 6 3221 1850 +1371 whale_0x8ebd 0x85fb0503... Aestus
14094911 0 3100 1730 +1370 p2porg 0x853b0078... Titan Relay
14099783 0 3100 1730 +1370 kiln 0xb26f9666... BloXroute Regulated
14098129 0 3100 1730 +1370 stader 0xb67eaa5e... BloXroute Max Profit
14098984 1 3120 1750 +1370 nethermind_lido 0xac23f8cc... Flashbots
14099182 0 3099 1730 +1369 whale_0x8ebd 0xb26f9666... Titan Relay
14099042 4 3179 1810 +1369 coinbase 0x9129eeb4... Agnostic Gnosis
14095889 0 3097 1730 +1367 coinbase 0x8527d16c... Ultra Sound
14100189 1 3117 1750 +1367 coinbase 0x8527d16c... Ultra Sound
14101024 1 3117 1750 +1367 p2porg 0xb26f9666... BloXroute Regulated
14095167 3 3156 1790 +1366 kiln 0xb26f9666... Titan Relay
14096905 0 3095 1730 +1365 coinbase 0x8527d16c... Ultra Sound
14095066 0 3094 1730 +1364 0x88a53ec4... BloXroute Regulated
14094451 0 3094 1730 +1364 everstake 0xb26f9666... Aestus
14099154 0 3093 1730 +1363 nethermind_lido 0x823e0146... Agnostic Gnosis
14098417 1 3112 1750 +1362 blockdaemon 0x8527d16c... Ultra Sound
14099087 2 3131 1770 +1361 p2porg 0x853b0078... Titan Relay
14099181 6 3210 1850 +1360 ether.fi 0xac23f8cc... Flashbots
14096877 1 3109 1750 +1359 kiln 0xb26f9666... Titan Relay
14094361 0 3088 1730 +1358 whale_0x8ebd 0x85fb0503... BloXroute Max Profit
14094564 0 3088 1730 +1358 p2porg 0xb67eaa5e... BloXroute Max Profit
14099581 5 3188 1830 +1358 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14098091 6 3208 1850 +1358 p2porg 0x853b0078... Titan Relay
14094002 0 3085 1730 +1355 p2porg 0x8527d16c... Ultra Sound
14095358 0 3084 1730 +1354 everstake 0xb26f9666... Titan Relay
14096220 0 3082 1730 +1352 p2porg 0xb26f9666... BloXroute Max Profit
14099585 1 3102 1750 +1352 p2porg 0x853b0078... Aestus
14099274 1 3100 1750 +1350 coinbase 0xb26f9666... Titan Relay
14096298 3 3140 1790 +1350 p2porg 0xb26f9666... Titan Relay
14098739 5 3179 1830 +1349 gateway.fmas_lido 0x8527d16c... Ultra Sound
14096998 5 3177 1830 +1347 blockdaemon 0xb26f9666... Titan Relay
14094145 0 3076 1730 +1346 coinbase 0x85fb0503... Aestus
14099978 6 3196 1850 +1346 coinbase 0xb26f9666... Titan Relay
14096790 8 3236 1891 +1345 gateway.fmas_lido 0x9129eeb4... Ultra Sound
14095382 0 3074 1730 +1344 whale_0x8ebd 0xb26f9666... Titan Relay
14096536 2 3114 1770 +1344 coinbase 0x8527d16c... Ultra Sound
14099443 5 3174 1830 +1344 p2porg 0x853b0078... Ultra Sound
14095302 12 3314 1971 +1343 coinbase 0xb67eaa5e... BloXroute Max Profit
14095075 0 3073 1730 +1343 coinbase 0xb26f9666... BloXroute Max Profit
14097799 5 3173 1830 +1343 coinbase 0xb67eaa5e... BloXroute Regulated
14096885 0 3070 1730 +1340 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14101078 8 3230 1891 +1339 blockdaemon_lido 0xb67eaa5e... Titan Relay
14100338 5 3169 1830 +1339 coinbase 0x88a53ec4... BloXroute Regulated
14100815 0 3068 1730 +1338 whale_0x8ebd 0x99cba505... Flashbots
14099340 0 3068 1730 +1338 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14098253 1 3088 1750 +1338 whale_0xedc6 0x856b0004... Ultra Sound
14098860 8 3228 1891 +1337 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14100101 0 3066 1730 +1336 whale_0x8ebd 0xb26f9666... Titan Relay
14099552 0 3066 1730 +1336 coinbase 0x853b0078... Agnostic Gnosis
14099995 0 3066 1730 +1336 0x856b0004... Agnostic Gnosis
14100385 0 3064 1730 +1334 0x823e0146... BloXroute Max Profit
14095522 3 3124 1790 +1334 p2porg 0xb26f9666... Titan Relay
14098808 15 3364 2031 +1333 kraken 0xb26f9666... EthGas
14094084 0 3063 1730 +1333 p2porg 0xb26f9666... BloXroute Regulated
14095925 3 3123 1790 +1333 blockdaemon_lido 0xb26f9666... Titan Relay
14095992 0 3062 1730 +1332 p2porg 0x805e28e6... BloXroute Max Profit
14099831 0 3061 1730 +1331 p2porg 0x856b0004... Aestus
14095556 1 3081 1750 +1331 p2porg 0xac23f8cc... Flashbots
14101028 2 3099 1770 +1329 p2porg 0xac23f8cc... Flashbots
14098580 0 3056 1730 +1326 p2porg 0x853b0078... Agnostic Gnosis
14096427 2 3096 1770 +1326 coinbase 0x8527d16c... Ultra Sound
14099160 6 3176 1850 +1326 abyss_finance 0x853b0078... Agnostic Gnosis
14096458 3 3115 1790 +1325 coinbase 0x9129eeb4... Agnostic Gnosis
14096490 5 3155 1830 +1325 gateway.fmas_lido 0x8527d16c... Ultra Sound
14096659 0 3054 1730 +1324 p2porg 0x856b0004... Agnostic Gnosis
14097990 1 3074 1750 +1324 p2porg 0x8db2a99d... BloXroute Regulated
14095448 0 3050 1730 +1320 coinbase 0x8db2a99d... Flashbots
14099067 1 3068 1750 +1318 coinbase 0x853b0078... Agnostic Gnosis
14095002 5 3148 1830 +1318 p2porg 0xb67eaa5e... BloXroute Regulated
14096856 8 3208 1891 +1317 kiln 0xb67eaa5e... BloXroute Regulated
14098078 5 3147 1830 +1317 coinbase 0x88857150... Ultra Sound
14099080 8 3205 1891 +1314 p2porg 0xb26f9666... BloXroute Regulated
14098922 0 3044 1730 +1314 p2porg 0xb26f9666... Aestus
14099999 0 3044 1730 +1314 coinbase 0xb26f9666... BloXroute Max Profit
14094217 3 3102 1790 +1312 0x9129eeb4... Agnostic Gnosis
14098732 0 3041 1730 +1311 whale_0x8ebd 0xb26f9666... Titan Relay
14096779 5 3141 1830 +1311 figment 0xb26f9666... Titan Relay
14099365 0 3040 1730 +1310 p2porg 0x88857150... Ultra Sound
14100125 1 3060 1750 +1310 p2porg 0xb26f9666... Titan Relay
14095766 5 3140 1830 +1310 coinbase 0xb26f9666... BloXroute Regulated
14098858 0 3039 1730 +1309 coinbase 0x8527d16c... Ultra Sound
14096697 3 3099 1790 +1309 coinbase 0xb26f9666... Titan Relay
14094509 13 3299 1991 +1308 ether.fi 0xac23f8cc... BloXroute Max Profit
14097334 0 3038 1730 +1308 coinbase 0x853b0078... Agnostic Gnosis
14101023 1 3058 1750 +1308 whale_0xedc6 0x823e0146... BloXroute Max Profit
14099307 1 3057 1750 +1307 abyss_finance 0x853b0078... BloXroute Max Profit
14099142 7 3177 1870 +1307 p2porg 0x8527d16c... Ultra Sound
14094323 2 3076 1770 +1306 everstake 0xb26f9666... Titan Relay
14098355 2 3074 1770 +1304 p2porg 0xb26f9666... Titan Relay
14095253 2 3072 1770 +1302 p2porg 0xa965c911... Ultra Sound
14098728 6 3151 1850 +1301 p2porg 0x856b0004... Aestus
14096383 7 3171 1870 +1301 whale_0x8ebd 0x856b0004... Ultra Sound
14098392 6 3149 1850 +1299 p2porg 0x856b0004... Ultra Sound
14100270 0 3028 1730 +1298 whale_0x8ebd 0x853b0078... Aestus
14100238 0 3027 1730 +1297 kiln 0x853b0078... Agnostic Gnosis
14096852 3 3087 1790 +1297 0x853b0078... Agnostic Gnosis
14098843 8 3185 1891 +1294 p2porg 0xb26f9666... Titan Relay
14094242 1 3044 1750 +1294 p2porg 0x85fb0503... BloXroute Max Profit
14100743 0 3023 1730 +1293 p2porg 0x853b0078... Titan Relay
14100454 0 3022 1730 +1292 coinbase 0xb26f9666... Titan Relay
14094037 0 3021 1730 +1291 coinbase 0xb26f9666... BloXroute Regulated
14098551 1 3041 1750 +1291 0x9129eeb4... Agnostic Gnosis
14099549 2 3061 1770 +1291 whale_0x8ebd 0xb26f9666... Titan Relay
14097029 0 3019 1730 +1289 whale_0x8ebd 0x8527d16c... Ultra Sound
14098588 6 3139 1850 +1289 whale_0x8ebd 0x857b0038... Ultra Sound
14097072 7 3159 1870 +1289 gateway.fmas_lido 0xb5a65d00... Ultra Sound
14095202 0 3018 1730 +1288 everstake 0x8527d16c... Ultra Sound
14095116 1 3037 1750 +1287 coinbase 0xb67eaa5e... BloXroute Max Profit
14095878 6 3135 1850 +1285 coinbase 0xb4ce6162... Ultra Sound
14099470 7 3155 1870 +1285 whale_0x8ebd 0xb26f9666... Titan Relay
14096205 7 3155 1870 +1285 blockdaemon 0xac23f8cc... Ultra Sound
14095630 4 3094 1810 +1284 p2porg 0x8db2a99d... BloXroute Max Profit
14100226 6 3134 1850 +1284 everstake 0x8527d16c... Ultra Sound
14094422 5 3113 1830 +1283 p2porg 0x85fb0503... Aestus
14096792 1 3032 1750 +1282 0xb26f9666... Titan Relay
14099729 1 3032 1750 +1282 coinbase 0xb26f9666... Titan Relay
14095761 2 3052 1770 +1282 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14097865 1 3030 1750 +1280 0xb67eaa5e... BloXroute Regulated
14094089 6 3129 1850 +1279 0x856b0004... Aestus
14098874 0 3008 1730 +1278 0xb67eaa5e... BloXroute Regulated
14094183 2 3048 1770 +1278 whale_0x8ebd 0x85fb0503... Aestus
14098547 0 3007 1730 +1277 kiln 0x88857150... Ultra Sound
14099077 0 3007 1730 +1277 blockdaemon 0xa965c911... Ultra Sound
14095857 7 3147 1870 +1277 p2porg 0xb26f9666... Titan Relay
14098230 2 3046 1770 +1276 coinbase 0x8db2a99d... Ultra Sound
14099514 5 3105 1830 +1275 whale_0x8ebd 0xb26f9666... Titan Relay
14099011 6 3125 1850 +1275 p2porg 0xb67eaa5e... BloXroute Max Profit
14097864 0 3004 1730 +1274 kiln 0xb67eaa5e... BloXroute Max Profit
14097704 0 3004 1730 +1274 p2porg 0x83d6a6ab... Flashbots
14100135 4 3084 1810 +1274 p2porg 0x856b0004... Aestus
14095359 5 3104 1830 +1274 stader 0xb26f9666... Aestus
14100839 6 3124 1850 +1274 abyss_finance 0xb26f9666... BloXroute Max Profit
14099241 12 3242 1971 +1271 coinbase 0xb26f9666... BloXroute Max Profit
14097402 10 3201 1931 +1270 p2porg 0x853b0078... Titan Relay
14100962 0 3000 1730 +1270 0xb26f9666... Titan Relay
14097044 0 3000 1730 +1270 kiln 0xb26f9666... BloXroute Regulated
14094679 0 2999 1730 +1269 whale_0x8ebd 0xa965c911... Ultra Sound
14096411 0 2999 1730 +1269 whale_0x8ebd 0x857b0038... Ultra Sound
14096609 0 2997 1730 +1267 coinbase 0x8527d16c... Ultra Sound
14097874 1 3017 1750 +1267 coinbase 0x853b0078... Agnostic Gnosis
14096079 2 3037 1770 +1267 nethermind_lido 0x856b0004... Agnostic Gnosis
14098325 4 3077 1810 +1267 whale_0x8ebd 0x853b0078... Aestus
14099600 1 3016 1750 +1266 0x853b0078... Agnostic Gnosis
14097369 6 3116 1850 +1266 p2porg 0xb26f9666... BloXroute Max Profit
14094635 0 2995 1730 +1265 coinbase 0x83d6a6ab... BloXroute Max Profit
14094961 0 2995 1730 +1265 coinbase 0x8db2a99d... Flashbots
14100400 0 2994 1730 +1264 coinbase 0x8db2a99d... Aestus
14099222 0 2993 1730 +1263 kiln 0x88857150... Ultra Sound
14100420 4 3072 1810 +1262 whale_0xedc6 0x8db2a99d... Ultra Sound
14096945 5 3091 1830 +1261 gate.io 0xaceaea9f... Aestus
14100428 2 3030 1770 +1260 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14098780 0 2989 1730 +1259 whale_0x8ebd 0x853b0078... Agnostic Gnosis
14100795 6 3108 1850 +1258 p2porg 0xb67eaa5e... BloXroute Regulated
14100194 8 3148 1891 +1257 0xb67eaa5e... BloXroute Regulated
14099184 0 2986 1730 +1256 kiln 0xb26f9666... Titan Relay
14097880 6 3105 1850 +1255 p2porg 0x853b0078... Agnostic Gnosis
14099843 0 2984 1730 +1254 kiln 0xb26f9666... Aestus
14094502 0 2984 1730 +1254 coinbase 0xb26f9666... BloXroute Max Profit
14094028 0 2982 1730 +1252 everstake 0x853b0078... Agnostic Gnosis
14096603 5 3082 1830 +1252 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14095122 0 2981 1730 +1251 everstake 0xb5a65d00... Aestus
14096915 6 3101 1850 +1251 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14099884 6 3101 1850 +1251 bitstamp 0x9129eeb4... Agnostic Gnosis
14097071 0 2980 1730 +1250 coinbase 0xb26f9666... Titan Relay
14099076 0 2980 1730 +1250 coinbase 0xb4ce6162... Ultra Sound
14095295 8 3140 1891 +1249 coinbase 0xac23f8cc... Flashbots
14096842 5 3079 1830 +1249 kiln 0xb26f9666... Aestus
14096421 7 3119 1870 +1249 p2porg 0xb26f9666... Titan Relay
14100549 6 3096 1850 +1246 whale_0x8ebd 0x8527d16c... Ultra Sound
14095304 1 2995 1750 +1245 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14094778 1 2995 1750 +1245 everstake 0x85fb0503... BloXroute Max Profit
14100119 3 3035 1790 +1245 whale_0x8ebd 0x856b0004... Aestus
14098539 8 3135 1891 +1244 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14095043 0 2974 1730 +1244 whale_0x8ebd 0x853b0078... Agnostic Gnosis
14094549 0 2974 1730 +1244 kiln 0xb26f9666... Titan Relay
14097690 1 2994 1750 +1244 kiln 0xaceaea9f... Aestus
14094131 5 3074 1830 +1244 p2porg 0x85fb0503... BloXroute Max Profit
14095099 0 2973 1730 +1243 kiln 0x99dbe3e8... Agnostic Gnosis
14100571 0 2973 1730 +1243 kiln 0xac23f8cc... Flashbots
14096439 5 3073 1830 +1243 p2porg 0x856b0004... Aestus
14100504 6 3093 1850 +1243 coinbase 0xb26f9666... Titan Relay
14099659 8 3133 1891 +1242 0x9129eeb4... Agnostic Gnosis
14094847 0 2972 1730 +1242 everstake 0xb26f9666... Titan Relay
14097884 1 2992 1750 +1242 coinbase 0x853b0078... Agnostic Gnosis
14100354 5 3072 1830 +1242 whale_0x8ebd 0xb26f9666... Titan Relay
14099439 7 3112 1870 +1242 gateway.fmas_lido 0x88857150... Ultra Sound
14095993 1 2991 1750 +1241 kiln 0x8527d16c... Ultra Sound
14095252 1 2991 1750 +1241 whale_0x8ebd 0x856b0004... Agnostic Gnosis
14100046 10 3171 1931 +1240 coinbase 0x8527d16c... Ultra Sound
14097174 0 2969 1730 +1239 kiln 0x88857150... Ultra Sound
14099922 5 3069 1830 +1239 kiln Local Local
14094668 0 2968 1730 +1238 solo_stakers 0x856b0004... Aestus
14099969 1 2988 1750 +1238 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14097887 0 2967 1730 +1237 kiln 0xb67eaa5e... BloXroute Max Profit
14095961 1 2987 1750 +1237 kiln 0xb26f9666... Titan Relay
14100485 1 2987 1750 +1237 coinbase 0x88857150... Ultra Sound
14100850 2 3007 1770 +1237 kiln 0x856b0004... Aestus
14098493 0 2966 1730 +1236 whale_0x8ebd 0x856b0004... Agnostic Gnosis
14100322 0 2966 1730 +1236 kiln 0x88a53ec4... BloXroute Max Profit
14094040 1 2986 1750 +1236 coinbase 0x85fb0503... Aestus
14099478 0 2965 1730 +1235 everstake 0xb67eaa5e... BloXroute Max Profit
14100984 0 2965 1730 +1235 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14095885 1 2985 1750 +1235 whale_0x8ebd 0x856b0004... Agnostic Gnosis
14097277 14 3245 2011 +1234 kraken 0xb26f9666... EthGas
14099656 0 2964 1730 +1234 everstake 0x853b0078... Agnostic Gnosis
14096096 6 3084 1850 +1234 coinbase 0xac23f8cc... Aestus
14098509 6 3083 1850 +1233 p2porg 0xb26f9666... BloXroute Max Profit
14099315 0 2962 1730 +1232 kiln 0x8db2a99d... Flashbots
14096677 6 3079 1850 +1229 ether.fi 0xb67eaa5e... BloXroute Max Profit
14100774 0 2958 1730 +1228 coinbase 0x853b0078... Agnostic Gnosis
14098069 4 3038 1810 +1228 kiln 0x856b0004... Aestus
14095983 1 2977 1750 +1227 0x856b0004... Aestus
14096974 2 2997 1770 +1227 nethermind_lido 0xac23f8cc... Ultra Sound
14096101 3 3016 1790 +1226 whale_0x8ebd 0xb26f9666... BloXroute Regulated
Total anomalies: 413

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