Sat, Apr 11, 2026

Propagation anomalies - 2026-04-11

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-11' AND slot_start_date_time < '2026-04-11'::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-11' AND slot_start_date_time < '2026-04-11'::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-11' AND slot_start_date_time < '2026-04-11'::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-11' AND slot_start_date_time < '2026-04-11'::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-11' AND slot_start_date_time < '2026-04-11'::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-11' AND slot_start_date_time < '2026-04-11'::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-11' AND slot_start_date_time < '2026-04-11'::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-11' AND slot_start_date_time < '2026-04-11'::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,181
MEV blocks: 6,647 (92.6%)
Local blocks: 534 (7.4%)

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 = 1714.7 + 17.15 × blob_count (R² = 0.009)
Residual σ = 600.4ms
Anomalies (>2σ slow): 440 (6.1%)
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
14093472 0 5794 1715 +4079 abyss_finance Local Local
14092000 0 5671 1715 +3956 upbit Local Local
14089376 0 5431 1715 +3716 upbit Local Local
14089248 0 4650 1715 +2935 upbit Local Local
14090464 8 4537 1852 +2685 stakefish Local Local
14088516 0 4360 1715 +2645 abyss_finance Local Local
14088096 5 4374 1800 +2574 stakefish Local Local
14090856 0 4274 1715 +2559 whale_0x7b0e Local Local
14092387 0 4061 1715 +2346 whale_0x9212 0xb67eaa5e... Titan Relay
14087963 0 3912 1715 +2197 lido Local Local
14093536 0 3671 1715 +1956 ether.fi Local Local
14090338 0 3668 1715 +1953 dsrv_lido 0x853b0078... Agnostic Gnosis
14089318 1 3555 1732 +1823 ether.fi 0x823e0146... Ultra Sound
14090178 0 3511 1715 +1796 luno 0xb26f9666... Titan Relay
14087360 0 3504 1715 +1789 blockdaemon 0x8a850621... Titan Relay
14088400 1 3519 1732 +1787 blockdaemon_lido 0x8527d16c... Ultra Sound
14087769 1 3499 1732 +1767 whale_0xdc8d 0xb26f9666... Titan Relay
14088928 0 3473 1715 +1758 blockdaemon 0x853b0078... Ultra Sound
14090417 4 3538 1783 +1755 blockdaemon 0x857b0038... Ultra Sound
14088296 5 3551 1800 +1751 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14092251 1 3482 1732 +1750 blockdaemon 0x8527d16c... Ultra Sound
14088864 0 3447 1715 +1732 stakefish Local Local
14089569 1 3455 1732 +1723 nethermind_lido 0x856b0004... Aestus
14093712 6 3536 1818 +1718 blockdaemon_lido 0x8527d16c... Ultra Sound
14089349 3 3466 1766 +1700 blockdaemon_lido 0xb26f9666... Titan Relay
14088848 0 3410 1715 +1695 coinbase 0x823e0146... Aestus
14093396 0 3406 1715 +1691 coinbase 0x88a53ec4... Aestus
14089972 0 3401 1715 +1686 blockdaemon 0x88857150... Ultra Sound
14088293 5 3485 1800 +1685 blockdaemon 0x8a850621... Titan Relay
14089911 6 3500 1818 +1682 blockdaemon_lido 0x8527d16c... Ultra Sound
14087520 6 3497 1818 +1679 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14089237 1 3404 1732 +1672 blockdaemon 0x8a850621... Titan Relay
14093264 0 3381 1715 +1666 blockdaemon 0x8a850621... Titan Relay
14093389 0 3377 1715 +1662 lido 0x823e0146... Ultra Sound
14091469 5 3457 1800 +1657 blockdaemon 0x8527d16c... Ultra Sound
14091536 5 3452 1800 +1652 ether.fi 0xb26f9666... Titan Relay
14090465 0 3361 1715 +1646 whale_0x8ebd Local Local
14087947 0 3359 1715 +1644 whale_0x8ebd 0x856b0004... Aestus
14088649 3 3408 1766 +1642 nethermind_lido 0xb26f9666... Aestus
14093610 0 3355 1715 +1640 ether.fi 0x853b0078... Ultra Sound
14091653 5 3439 1800 +1639 blockdaemon 0x823e0146... Ultra Sound
14093514 4 3421 1783 +1638 blockdaemon 0xb26f9666... Titan Relay
14088192 5 3438 1800 +1638 blockdaemon 0x8527d16c... Ultra Sound
14088046 5 3432 1800 +1632 blockdaemon 0xb4ce6162... Ultra Sound
14093611 0 3343 1715 +1628 launchnodes_lido 0xb67eaa5e... Aestus
14089925 3 3392 1766 +1626 whale_0xdc8d 0x853b0078... Ultra Sound
14088559 0 3337 1715 +1622 blockdaemon 0xb67eaa5e... BloXroute Regulated
14089194 0 3332 1715 +1617 blockdaemon 0x8a850621... Titan Relay
14087764 0 3327 1715 +1612 lido 0x9129eeb4... Ultra Sound
14089242 1 3344 1732 +1612 0xac23f8cc... Ultra Sound
14088782 0 3326 1715 +1611 blockdaemon_lido 0x8527d16c... Ultra Sound
14088869 1 3342 1732 +1610 luno 0xb26f9666... Titan Relay
14088741 2 3359 1749 +1610 luno 0x853b0078... Ultra Sound
14092936 3 3375 1766 +1609 ether.fi 0x856b0004... Ultra Sound
14092072 6 3422 1818 +1604 blockdaemon 0x8527d16c... Ultra Sound
14093899 2 3352 1749 +1603 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
14087476 0 3315 1715 +1600 ether.fi 0xb7c5e609... Flashbots
14093037 1 3330 1732 +1598 whale_0x8ebd 0x8527d16c... Ultra Sound
14088402 6 3408 1818 +1590 blockdaemon 0x88a53ec4... BloXroute Max Profit
14092806 5 3388 1800 +1588 blockdaemon 0x856b0004... BloXroute Max Profit
14088953 1 3313 1732 +1581 whale_0x8ebd 0x8db2a99d... Ultra Sound
14088976 0 3294 1715 +1579 blockdaemon 0x853b0078... Ultra Sound
14088743 0 3289 1715 +1574 blockdaemon 0x856b0004... Ultra Sound
14089717 1 3302 1732 +1570 blockdaemon 0x8db2a99d... Ultra Sound
14092394 0 3284 1715 +1569 p2porg Local Local
14091613 6 3386 1818 +1568 ether.fi 0xb26f9666... Titan Relay
14090494 2 3316 1749 +1567 blockdaemon_lido 0xb67eaa5e... Titan Relay
14089052 0 3280 1715 +1565 blockdaemon 0x8527d16c... Ultra Sound
14087687 6 3378 1818 +1560 revolut 0x8db2a99d... BloXroute Regulated
14090707 0 3273 1715 +1558 blockdaemon 0x88a53ec4... BloXroute Max Profit
14091994 0 3272 1715 +1557 blockdaemon 0xb26f9666... Titan Relay
14088854 1 3289 1732 +1557 0x853b0078... Ultra Sound
14091185 0 3271 1715 +1556 luno 0xb26f9666... Titan Relay
14092603 1 3283 1732 +1551 blockdaemon 0xb4ce6162... Ultra Sound
14087642 5 3351 1800 +1551 p2porg 0xa965c911... Ultra Sound
14088134 0 3264 1715 +1549 whale_0xdc8d 0x823e0146... BloXroute Regulated
14090667 12 3463 1921 +1542 ether.fi 0xac23f8cc... Flashbots
14086910 5 3341 1800 +1541 blockdaemon_lido 0x9129eeb4... Ultra Sound
14088497 6 3356 1818 +1538 blockdaemon 0x853b0078... Ultra Sound
14091403 0 3253 1715 +1538 blockdaemon 0x9129eeb4... Ultra Sound
14088865 0 3251 1715 +1536 whale_0xdc8d 0x8db2a99d... Ultra Sound
14087352 5 3333 1800 +1533 luno 0x85fb0503... BloXroute Max Profit
14089936 1 3262 1732 +1530 revolut 0xb26f9666... Titan Relay
14090779 5 3328 1800 +1528 0x8db2a99d... Ultra Sound
14089695 8 3379 1852 +1527 blockdaemon 0xb26f9666... Titan Relay
14088285 7 3356 1835 +1521 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14090577 1 3253 1732 +1521 whale_0x8ebd 0xb4ce6162... Ultra Sound
14091953 1 3251 1732 +1519 whale_0x8ebd 0xb4ce6162... Ultra Sound
14090361 1 3250 1732 +1518 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14090036 1 3250 1732 +1518 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14093345 0 3232 1715 +1517 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
14088673 6 3334 1818 +1516 whale_0x8ebd 0x857b0038... Ultra Sound
14090821 0 3231 1715 +1516 luno 0xb67eaa5e... BloXroute Regulated
14088307 10 3402 1886 +1516 luno 0xb67eaa5e... BloXroute Regulated
14092696 11 3410 1903 +1507 luno 0x88a53ec4... BloXroute Max Profit
14089472 5 3306 1800 +1506 p2porg 0xb67eaa5e... BloXroute Max Profit
14092246 0 3219 1715 +1504 coinbase 0x856b0004... Agnostic Gnosis
14093123 9 3371 1869 +1502 whale_0x8ebd 0x856b0004... Aestus
14093439 1 3231 1732 +1499 revolut 0xb26f9666... Titan Relay
14093175 6 3316 1818 +1498 0xb4ce6162... Ultra Sound
14091978 1 3227 1732 +1495 whale_0x8ebd 0xb4ce6162... Ultra Sound
14087912 1 3212 1732 +1480 blockdaemon 0x850b00e0... BloXroute Max Profit
14088975 3 3244 1766 +1478 blockdaemon 0x88a53ec4... BloXroute Regulated
14093485 7 3309 1835 +1474 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14091144 11 3375 1903 +1472 ether.fi 0x823e0146... Ultra Sound
14093758 6 3286 1818 +1468 whale_0xdc8d 0xb67eaa5e... BloXroute Regulated
14091253 1 3200 1732 +1468 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
14088973 5 3268 1800 +1468 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14090651 0 3182 1715 +1467 gateway.fmas_lido 0x8527d16c... Ultra Sound
14089007 2 3216 1749 +1467 blockdaemon_lido 0xb26f9666... Titan Relay
14090168 2 3215 1749 +1466 luno 0xa965c911... Ultra Sound
14089611 2 3210 1749 +1461 everstake 0x853b0078... Agnostic Gnosis
14093021 0 3175 1715 +1460 coinbase 0x8527d16c... Ultra Sound
14093280 1 3190 1732 +1458 stakefish Local Local
14086976 2 3207 1749 +1458 p2porg 0x88857150... Ultra Sound
14091896 7 3289 1835 +1454 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
14091043 1 3186 1732 +1454 blockdaemon 0x8527d16c... Ultra Sound
14088388 1 3183 1732 +1451 revolut 0xb26f9666... Titan Relay
14091581 4 3234 1783 +1451 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14090085 11 3354 1903 +1451 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
14092575 2 3199 1749 +1450 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14091375 6 3261 1818 +1443 revolut 0x8527d16c... Ultra Sound
14089919 5 3240 1800 +1440 kiln 0xb73d7672... Flashbots
14090049 1 3171 1732 +1439 gateway.fmas_lido 0x8527d16c... Ultra Sound
14087747 5 3239 1800 +1439 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
14089969 0 3153 1715 +1438 blockdaemon 0x853b0078... Ultra Sound
14088357 8 3290 1852 +1438 0x857b0038... Ultra Sound
14087104 3 3203 1766 +1437 bitstamp 0x8db2a99d... Ultra Sound
14093976 5 3236 1800 +1436 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14091911 6 3253 1818 +1435 p2porg 0x8db2a99d... Ultra Sound
14089620 2 3184 1749 +1435 revolut 0x8527d16c... Ultra Sound
14093053 5 3235 1800 +1435 kiln 0xb67eaa5e... BloXroute Max Profit
14090865 8 3284 1852 +1432 p2porg 0x823e0146... Ultra Sound
14089203 1 3162 1732 +1430 gateway.fmas_lido 0x856b0004... Ultra Sound
14091000 10 3312 1886 +1426 blockdaemon_lido 0xa965c911... Titan Relay
14088229 0 3140 1715 +1425 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14090751 1 3154 1732 +1422 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
14092119 0 3134 1715 +1419 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
14088002 0 3132 1715 +1417 whale_0x8ebd Local Local
14093535 1 3149 1732 +1417 coinbase 0xb7c5e609... BloXroute Max Profit
14093746 5 3217 1800 +1417 kiln 0xb26f9666... Titan Relay
14087274 6 3233 1818 +1415 gateway.fmas_lido 0x8db2a99d... Ultra Sound
14092890 1 3145 1732 +1413 everstake 0xb26f9666... Titan Relay
14091722 2 3162 1749 +1413 gateway.fmas_lido 0x8db2a99d... Ultra Sound
14089513 0 3127 1715 +1412 revolut 0xb26f9666... Titan Relay
14088668 0 3125 1715 +1410 gateway.fmas_lido 0x8527d16c... Ultra Sound
14090980 0 3125 1715 +1410 gateway.fmas_lido 0x8527d16c... Ultra Sound
14087760 1 3142 1732 +1410 coinbase 0x88a53ec4... BloXroute Max Profit
14088381 6 3225 1818 +1407 coinbase 0x88a53ec4... BloXroute Regulated
14093603 4 3190 1783 +1407 gateway.fmas_lido 0x856b0004... Aestus
14093738 6 3223 1818 +1405 coinbase Local Local
14091129 6 3222 1818 +1404 blockdaemon_lido 0x88a53ec4... BloXroute Regulated
14089363 0 3119 1715 +1404 p2porg 0x8db2a99d... BloXroute Max Profit
14092492 6 3221 1818 +1403 gateway.fmas_lido 0xac23f8cc... Ultra Sound
14089023 0 3118 1715 +1403 figment 0xb26f9666... Titan Relay
14093376 0 3113 1715 +1398 ether.fi 0x9129eeb4... Agnostic Gnosis
14090078 0 3112 1715 +1397 gateway.fmas_lido 0x856b0004... Aestus
14090591 0 3112 1715 +1397 revolut 0x853b0078... Ultra Sound
14087598 5 3197 1800 +1397 revolut 0xb26f9666... Titan Relay
14088324 5 3197 1800 +1397 gateway.fmas_lido 0x8db2a99d... Ultra Sound
14087592 4 3177 1783 +1394 p2porg 0x853b0078... Titan Relay
14092439 5 3194 1800 +1394 whale_0x8ebd 0xb4ce6162... Ultra Sound
14089192 0 3108 1715 +1393 gateway.fmas_lido 0xb5a65d00... Ultra Sound
14091188 2 3138 1749 +1389 coinbase 0xb26f9666... BloXroute Regulated
14093109 6 3206 1818 +1388 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14089401 1 3120 1732 +1388 gateway.fmas_lido 0x8527d16c... Ultra Sound
14087467 0 3101 1715 +1386 whale_0x8e76 0x850b00e0... BloXroute Regulated
14090110 0 3101 1715 +1386 blockdaemon 0xb67eaa5e... BloXroute Regulated
14086899 2 3134 1749 +1385 gateway.fmas_lido 0x8527d16c... Ultra Sound
14087713 5 3185 1800 +1385 whale_0x8ebd 0xac23f8cc... Ultra Sound
14093300 3 3150 1766 +1384 coinbase 0x88a53ec4... BloXroute Regulated
14092335 6 3201 1818 +1383 p2porg 0x856b0004... Ultra Sound
14086867 0 3098 1715 +1383 gateway.fmas_lido 0x8527d16c... Ultra Sound
14090857 0 3097 1715 +1382 0xba003e46... BloXroute Max Profit
14092998 1 3113 1732 +1381 abyss_finance 0x853b0078... Agnostic Gnosis
14088859 0 3093 1715 +1378 p2porg 0xb26f9666... Titan Relay
14090002 5 3177 1800 +1377 coinbase 0xb26f9666... BloXroute Regulated
14093437 1 3108 1732 +1376 0x8db2a99d... Ultra Sound
14093527 0 3089 1715 +1374 0xb26f9666... BloXroute Max Profit
14087522 0 3089 1715 +1374 kiln 0x823e0146... Flashbots
14087895 2 3123 1749 +1374 p2porg 0x850b00e0... BloXroute Regulated
14091451 0 3088 1715 +1373 figment 0xb26f9666... Titan Relay
14088535 1 3105 1732 +1373 gateway.fmas_lido 0x8527d16c... Ultra Sound
14087314 8 3223 1852 +1371 0x853b0078... Ultra Sound
14089693 0 3085 1715 +1370 kiln 0x8db2a99d... Flashbots
14092850 0 3078 1715 +1363 kiln 0x856b0004... Aestus
14089313 0 3078 1715 +1363 coinbase 0xb26f9666... Titan Relay
14091719 2 3112 1749 +1363 whale_0x8ebd 0x853b0078... Agnostic Gnosis
14089780 0 3077 1715 +1362 p2porg 0xb26f9666... Titan Relay
14091437 2 3110 1749 +1361 whale_0x8ebd 0xac23f8cc... BloXroute Max Profit
14092438 3 3127 1766 +1361 blockdaemon_lido 0x88857150... Ultra Sound
14090348 1 3092 1732 +1360 p2porg 0xb26f9666... BloXroute Max Profit
14091837 3 3126 1766 +1360 coinbase 0xb67eaa5e... BloXroute Regulated
14092578 0 3073 1715 +1358 whale_0x8ebd 0x99dbe3e8... Ultra Sound
14088188 1 3090 1732 +1358 0x9129eeb4... Agnostic Gnosis
14088997 8 3210 1852 +1358 rocketpool Local Local
14089443 1 3089 1732 +1357 0x856b0004... Ultra Sound
14091705 1 3089 1732 +1357 coinbase 0x88857150... Ultra Sound
14089789 3 3123 1766 +1357 coinbase 0xb26f9666... Titan Relay
14088179 0 3071 1715 +1356 bitstamp 0x823e0146... Flashbots
14090791 7 3191 1835 +1356 gateway.fmas_lido 0x8527d16c... Ultra Sound
14092199 5 3156 1800 +1356 p2porg 0xb26f9666... Titan Relay
14090374 5 3156 1800 +1356 p2porg 0xb26f9666... BloXroute Regulated
14090653 0 3067 1715 +1352 0xa0366397... Ultra Sound
14093915 0 3067 1715 +1352 0xb5a65d00... Ultra Sound
14091337 0 3067 1715 +1352 figment 0xb26f9666... BloXroute Max Profit
14093663 0 3067 1715 +1352 p2porg 0x853b0078... Agnostic Gnosis
14089350 5 3152 1800 +1352 kiln 0x856b0004... Aestus
14087387 0 3065 1715 +1350 coinbase 0xb67eaa5e... BloXroute Regulated
14086915 5 3150 1800 +1350 p2porg 0x853b0078... Ultra Sound
14087969 0 3063 1715 +1348 p2porg 0x853b0078... Agnostic Gnosis
14092506 3 3113 1766 +1347 everstake 0x853b0078... Ultra Sound
14090215 0 3061 1715 +1346 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14092324 1 3078 1732 +1346 whale_0xedc6 0x856b0004... Aestus
14091850 11 3249 1903 +1346 kraken 0xb26f9666... EthGas
14092827 4 3128 1783 +1345 p2porg 0x853b0078... Aestus
14092150 4 3128 1783 +1345 kiln 0x856b0004... Aestus
14091620 5 3145 1800 +1345 p2porg 0x853b0078... BloXroute Regulated
14087298 6 3162 1818 +1344 gateway.fmas_lido 0x85fb0503... Aestus
14090359 0 3059 1715 +1344 figment 0xb26f9666... Ultra Sound
14088433 1 3076 1732 +1344 p2porg 0x853b0078... Agnostic Gnosis
14090177 0 3056 1715 +1341 p2porg 0x853b0078... Titan Relay
14090445 1 3073 1732 +1341 whale_0xedc6 0x856b0004... Ultra Sound
14093955 1 3073 1732 +1341 coinbase 0xb26f9666... BloXroute Regulated
14088849 1 3072 1732 +1340 kiln 0xb26f9666... Aestus
14091801 1 3072 1732 +1340 p2porg 0x856b0004... Agnostic Gnosis
14088808 0 3054 1715 +1339 whale_0x8ebd 0x856b0004... Agnostic Gnosis
14086850 5 3139 1800 +1339 kiln 0x8db2a99d... Flashbots
14088794 2 3087 1749 +1338 coinbase 0x8527d16c... Ultra Sound
14091885 1 3069 1732 +1337 p2porg 0x9129eeb4... Agnostic Gnosis
14091158 0 3051 1715 +1336 p2porg 0xa965c911... Ultra Sound
14093767 0 3051 1715 +1336 kiln 0x88857150... Ultra Sound
14090478 0 3051 1715 +1336 p2porg 0xb67eaa5e... BloXroute Max Profit
14090492 10 3222 1886 +1336 kiln 0xb26f9666... Titan Relay
14092770 0 3050 1715 +1335 coinbase 0x9129eeb4... Agnostic Gnosis
14090408 1 3067 1732 +1335 coinbase 0x8527d16c... Ultra Sound
14092430 6 3152 1818 +1334 p2porg 0xb26f9666... Titan Relay
14088835 6 3152 1818 +1334 p2porg 0x853b0078... BloXroute Max Profit
14087038 0 3049 1715 +1334 whale_0x8ebd 0xb26f9666... Titan Relay
14088919 0 3048 1715 +1333 whale_0xedc6 0x8527d16c... Ultra Sound
14089522 6 3149 1818 +1331 kiln 0xb67eaa5e... BloXroute Regulated
14088861 1 3062 1732 +1330 whale_0x23be 0xb26f9666... BloXroute Max Profit
14090184 2 3078 1749 +1329 p2porg 0xb26f9666... Titan Relay
14088514 2 3078 1749 +1329 p2porg 0x8db2a99d... Flashbots
14091318 0 3043 1715 +1328 coinbase 0x88857150... Ultra Sound
14093512 0 3042 1715 +1327 kiln 0xb67eaa5e... BloXroute Regulated
14087407 0 3042 1715 +1327 whale_0x8ebd 0x8db2a99d... Flashbots
14093043 9 3196 1869 +1327 p2porg 0x853b0078... Agnostic Gnosis
14087663 5 3127 1800 +1327 p2porg 0x823e0146... Flashbots
14087241 3 3092 1766 +1326 p2porg 0x88a53ec4... BloXroute Max Profit
14090896 3 3092 1766 +1326 p2porg 0xb26f9666... Titan Relay
14093190 5 3125 1800 +1325 whale_0x8ebd 0x853b0078... Agnostic Gnosis
14090759 10 3209 1886 +1323 whale_0x8ebd 0x9129eeb4... Ultra Sound
14090589 11 3226 1903 +1323 blockdaemon 0xb26f9666... Titan Relay
14089093 6 3140 1818 +1322 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14088505 5 3122 1800 +1322 stader 0x856b0004... Aestus
14089433 1 3053 1732 +1321 p2porg 0xb26f9666... BloXroute Regulated
14093445 0 3035 1715 +1320 p2porg 0xb26f9666... Aestus
14091162 1 3052 1732 +1320 coinbase 0x88857150... Ultra Sound
14091796 3 3086 1766 +1320 p2porg 0x853b0078... Agnostic Gnosis
14092557 6 3137 1818 +1319 figment 0x853b0078... Agnostic Gnosis
14092226 6 3137 1818 +1319 p2porg 0x823e0146... Flashbots
14091126 6 3137 1818 +1319 coinbase Local Local
14093480 0 3034 1715 +1319 Local Local
14090350 1 3051 1732 +1319 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14087184 5 3119 1800 +1319 blockdaemon_lido 0xb26f9666... Titan Relay
14087844 5 3118 1800 +1318 p2porg 0x850b00e0... BloXroute Regulated
14092178 2 3066 1749 +1317 p2porg 0x9129eeb4... Agnostic Gnosis
14089397 10 3203 1886 +1317 blockdaemon 0xb26f9666... Titan Relay
14093084 1 3047 1732 +1315 coinbase 0x853b0078... Agnostic Gnosis
14092756 1 3047 1732 +1315 everstake 0xb26f9666... Titan Relay
14089014 11 3218 1903 +1315 gateway.fmas_lido 0x823e0146... Ultra Sound
14087231 0 3029 1715 +1314 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14089061 5 3114 1800 +1314 whale_0x8ebd 0xb26f9666... Titan Relay
14093854 0 3028 1715 +1313 whale_0xedc6 0xa10f2964... Flashbots
14091433 0 3027 1715 +1312 p2porg 0x856b0004... Ultra Sound
14091797 1 3044 1732 +1312 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14091071 5 3112 1800 +1312 coinbase 0x8527d16c... Ultra Sound
14089572 0 3026 1715 +1311 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14091244 6 3128 1818 +1310 whale_0x8ebd 0x8527d16c... Ultra Sound
14088572 0 3025 1715 +1310 p2porg 0x9129eeb4... Agnostic Gnosis
14091882 5 3109 1800 +1309 gateway.fmas_lido 0xac23f8cc... Ultra Sound
14092738 5 3109 1800 +1309 p2porg 0x853b0078... Agnostic Gnosis
14092711 0 3023 1715 +1308 0x8db2a99d... Ultra Sound
14092346 1 3039 1732 +1307 whale_0x8ebd 0x853b0078... Agnostic Gnosis
14088058 11 3209 1903 +1306 gateway.fmas_lido 0x856b0004... Aestus
14089564 0 3020 1715 +1305 kiln 0xb26f9666... Aestus
14091905 0 3020 1715 +1305 coinbase 0xb26f9666... BloXroute Max Profit
14087179 0 3019 1715 +1304 0x99dbe3e8... Agnostic Gnosis
14092474 5 3104 1800 +1304 p2porg 0xb67eaa5e... BloXroute Regulated
14088626 0 3017 1715 +1302 whale_0x23be 0x856b0004... Aestus
14091774 1 3034 1732 +1302 coinbase 0xb26f9666... BloXroute Regulated
14088208 1 3033 1732 +1301 p2porg 0xb26f9666... BloXroute Max Profit
14093825 5 3101 1800 +1301 p2porg 0x856b0004... Ultra Sound
14093710 0 3015 1715 +1300 everstake 0xb26f9666... Titan Relay
14090833 0 3015 1715 +1300 whale_0x8ebd 0x856b0004... Aestus
14089179 8 3151 1852 +1299 gateway.fmas_lido 0xb5a65d00... Ultra Sound
14086924 3 3065 1766 +1299 whale_0x8ebd 0x85fb0503... Aestus
14091089 10 3185 1886 +1299 whale_0x8ebd 0xb26f9666... Titan Relay
14093951 1 3030 1732 +1298 everstake 0x8527d16c... Ultra Sound
14088921 3 3063 1766 +1297 whale_0x8ebd 0x856b0004... Aestus
14088282 0 3011 1715 +1296 whale_0x8ebd 0xb26f9666... Titan Relay
14089467 6 3113 1818 +1295 p2porg 0xb67eaa5e... BloXroute Regulated
14087372 0 3010 1715 +1295 p2porg 0xac23f8cc... Flashbots
14088916 1 3027 1732 +1295 kiln 0xb26f9666... BloXroute Regulated
14092902 5 3094 1800 +1294 p2porg 0xb26f9666... BloXroute Max Profit
14091092 1 3025 1732 +1293 p2porg 0x8db2a99d... Flashbots
14092304 5 3093 1800 +1293 p2porg 0x8527d16c... Ultra Sound
14093306 0 3007 1715 +1292 coinbase 0x8527d16c... Ultra Sound
14089295 7 3127 1835 +1292 p2porg 0x856b0004... Agnostic Gnosis
14087105 11 3190 1903 +1287 coinbase 0x88a53ec4... BloXroute Regulated
14089728 5 3087 1800 +1287 coinbase 0xb26f9666... Titan Relay
14087767 5 3087 1800 +1287 kiln 0x8db2a99d... Flashbots
14088759 0 3001 1715 +1286 coinbase 0x9129eeb4... Aestus
14091419 1 3018 1732 +1286 p2porg 0x8db2a99d... Ultra Sound
14090152 3 3051 1766 +1285 whale_0x8ebd 0xb26f9666... Titan Relay
14089520 4 3068 1783 +1285 whale_0x8ebd 0xb26f9666... Titan Relay
14090711 5 3085 1800 +1285 everstake 0xb67eaa5e... BloXroute Regulated
14087808 0 2999 1715 +1284 blockdaemon_lido 0xac23f8cc... BloXroute Regulated
14093792 5 3083 1800 +1283 coinbase 0x856b0004... Aestus
14087240 0 2997 1715 +1282 p2porg 0x85fb0503... Agnostic Gnosis
14092115 3 3046 1766 +1280 kiln 0xa965c911... Ultra Sound
14093142 1 3011 1732 +1279 coinbase 0x853b0078... Agnostic Gnosis
14088872 10 3165 1886 +1279 whale_0x8ebd 0x88857150... Ultra Sound
14093247 6 3096 1818 +1278 p2porg 0xac23f8cc... Aestus
14090870 3 3044 1766 +1278 kiln 0xa965c911... Ultra Sound
14091611 10 3164 1886 +1278 solo_stakers 0x8527d16c... Ultra Sound
14089311 9 3146 1869 +1277 coinbase 0xb67eaa5e... BloXroute Regulated
14090981 1 3005 1732 +1273 coinbase 0xb4ce6162... Ultra Sound
14088721 3 3038 1766 +1272 whale_0x8ebd 0xb26f9666... Titan Relay
14088436 5 3072 1800 +1272 p2porg 0xb4ce6162... Ultra Sound
14087092 1 3003 1732 +1271 kiln 0xb26f9666... BloXroute Regulated
14091706 2 3020 1749 +1271 whale_0x8ebd 0x8db2a99d... Ultra Sound
14089365 0 2985 1715 +1270 coinbase 0x99cba505... Flashbots
14090171 1 3002 1732 +1270 ether.fi 0x88a53ec4... BloXroute Max Profit
14093723 0 2983 1715 +1268 coinbase 0xb26f9666... BloXroute Max Profit
14088740 0 2983 1715 +1268 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14087881 1 3000 1732 +1268 kiln 0x8527d16c... Ultra Sound
14092611 9 3137 1869 +1268 whale_0x8ebd 0x853b0078... Agnostic Gnosis
14093351 1 2999 1732 +1267 coinbase 0xb26f9666... BloXroute Max Profit
14090941 0 2981 1715 +1266 stader 0x8527d16c... Ultra Sound
14087849 0 2981 1715 +1266 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14093995 0 2980 1715 +1265 coinbase 0xac23f8cc... Flashbots
14088793 7 3100 1835 +1265 stader 0xb67eaa5e... BloXroute Max Profit
14086900 2 3014 1749 +1265 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
14090460 1 2993 1732 +1261 coinbase 0xb26f9666... BloXroute Regulated
14092688 3 3027 1766 +1261 coinbase 0xb26f9666... BloXroute Max Profit
14093533 7 3095 1835 +1260 coinbase 0x853b0078... Agnostic Gnosis
14090817 4 3042 1783 +1259 coinbase 0xb26f9666... Titan Relay
14093028 1 2989 1732 +1257 everstake 0x8527d16c... Ultra Sound
14087894 1 2988 1732 +1256 kiln 0x856b0004... Agnostic Gnosis
14093098 0 2970 1715 +1255 coinbase 0x856b0004... Agnostic Gnosis
14087454 1 2987 1732 +1255 0x823e0146... Flashbots
14091250 1 2987 1732 +1255 nethermind_lido 0x8db2a99d... Flashbots
14089336 0 2969 1715 +1254 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14091573 6 3071 1818 +1253 abyss_finance 0xb26f9666... Aestus
14092845 1 2985 1732 +1253 everstake 0x853b0078... Aestus
14089322 6 3070 1818 +1252 kiln 0x8db2a99d... Ultra Sound
14091053 0 2967 1715 +1252 kiln 0xb67eaa5e... BloXroute Regulated
14092393 0 2966 1715 +1251 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14093019 1 2982 1732 +1250 coinbase 0x856b0004... Agnostic Gnosis
14093382 0 2964 1715 +1249 everstake 0x853b0078... Aestus
14089545 1 2981 1732 +1249 kiln 0x8db2a99d... Flashbots
14089823 5 3048 1800 +1248 whale_0x8ebd 0xb4ce6162... Ultra Sound
14091087 1 2979 1732 +1247 whale_0x8ebd 0x857b0038... Ultra Sound
14091661 7 3081 1835 +1246 whale_0x8ebd 0x8db2a99d... Ultra Sound
14088211 0 2960 1715 +1245 kiln 0xb67eaa5e... BloXroute Regulated
14091636 0 2960 1715 +1245 0x856b0004... Aestus
14092753 4 3028 1783 +1245 kiln 0x856b0004... Aestus
14092424 6 3062 1818 +1244 kiln 0xb67eaa5e... BloXroute Max Profit
14092448 1 2976 1732 +1244 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14092219 4 3027 1783 +1244 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14087718 5 3044 1800 +1244 kiln 0x823e0146... BloXroute Max Profit
14092587 6 3061 1818 +1243 whale_0x8ebd 0x853b0078... Agnostic Gnosis
14086922 0 2957 1715 +1242 coinbase 0x851b00b1... BloXroute Max Profit
14091767 0 2957 1715 +1242 kiln 0xb67eaa5e... BloXroute Max Profit
14093152 3 3007 1766 +1241 everstake 0x853b0078... Agnostic Gnosis
14089862 5 3041 1800 +1241 everstake 0xb26f9666... Aestus
14087731 5 3041 1800 +1241 coinbase 0xb26f9666... BloXroute Regulated
14092567 5 3040 1800 +1240 whale_0x8ebd 0x856b0004... Agnostic Gnosis
14087323 5 3040 1800 +1240 coinbase 0x8527d16c... Ultra Sound
14089477 0 2954 1715 +1239 coinbase 0x805e28e6... Flashbots
14093157 2 2987 1749 +1238 coinbase 0xb26f9666... BloXroute Max Profit
14091707 5 3038 1800 +1238 stader 0xb26f9666... Titan Relay
14093397 6 3055 1818 +1237 whale_0x8ebd 0x8db2a99d... Flashbots
14092034 1 2967 1732 +1235 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14093354 0 2949 1715 +1234 coinbase 0xb26f9666... BloXroute Regulated
14089317 1 2965 1732 +1233 everstake 0xb26f9666... Titan Relay
14089040 9 3102 1869 +1233 kraken 0xb26f9666... EthGas
14087447 0 2946 1715 +1231 coinbase 0x85fb0503... Aestus
14093101 0 2946 1715 +1231 whale_0x7669 0x8a850621... Titan Relay
14089953 1 2963 1732 +1231 everstake 0x856b0004... Aestus
14088652 6 3046 1818 +1228 coinbase 0x8db2a99d... Aestus
14092421 0 2943 1715 +1228 everstake 0x8527d16c... Ultra Sound
14089632 0 2943 1715 +1228 everstake 0x856b0004... Aestus
14088012 0 2942 1715 +1227 kiln 0x8db2a99d... Ultra Sound
14092991 0 2942 1715 +1227 solo_stakers 0x8527d16c... Ultra Sound
14090466 2 2976 1749 +1227 kiln 0x9129eeb4... Agnostic Gnosis
14091606 0 2941 1715 +1226 kiln 0xb26f9666... Titan Relay
14089483 10 3112 1886 +1226 coinbase 0x853b0078... Ultra Sound
14090489 4 3009 1783 +1226 kiln 0x9129eeb4... Ultra Sound
14092939 0 2940 1715 +1225 kiln 0x823e0146... Ultra Sound
14090166 0 2940 1715 +1225 everstake 0xa965c911... Ultra Sound
14087734 1 2957 1732 +1225 everstake 0x88a53ec4... BloXroute Max Profit
14092057 1 2955 1732 +1223 whale_0x8ebd 0x853b0078... Aestus
14087967 1 2955 1732 +1223 kiln 0x9129eeb4... Agnostic Gnosis
14089771 0 2937 1715 +1222 coinbase 0x853b0078... Agnostic Gnosis
14093978 0 2936 1715 +1221 whale_0x8ebd 0x856b0004... Agnostic Gnosis
14088271 0 2935 1715 +1220 coinbase 0x8a850621... Titan Relay
14091557 7 3055 1835 +1220 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14089589 3 2986 1766 +1220 everstake 0xb67eaa5e... BloXroute Regulated
14091380 4 3003 1783 +1220 kiln 0x8527d16c... Ultra Sound
14091410 0 2934 1715 +1219 kiln 0xb26f9666... BloXroute Max Profit
14091064 5 3019 1800 +1219 whale_0x8ebd Local Local
14093143 5 3019 1800 +1219 whale_0xd07d 0xb26f9666... Aestus
14089805 0 2933 1715 +1218 kiln 0x8527d16c... Ultra Sound
14093966 1 2950 1732 +1218 kiln 0x853b0078... Agnostic Gnosis
14090617 4 3001 1783 +1218 kiln 0x856b0004... Aestus
14093220 5 3018 1800 +1218 coinbase 0xb26f9666... BloXroute Max Profit
14092586 5 3014 1800 +1214 whale_0x8ebd 0x853b0078... Agnostic Gnosis
14086847 0 2928 1715 +1213 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14088166 0 2927 1715 +1212 nethermind_lido 0x9129eeb4... Agnostic Gnosis
14092973 3 2977 1766 +1211 kiln 0x8527d16c... Ultra Sound
14087202 5 3010 1800 +1210 stader 0x88857150... Ultra Sound
14093599 0 2924 1715 +1209 everstake 0xb26f9666... Titan Relay
14093878 1 2940 1732 +1208 kiln 0x88857150... Ultra Sound
14091999 5 3008 1800 +1208 everstake 0x8527d16c... Ultra Sound
14092725 0 2922 1715 +1207 everstake 0xb26f9666... Titan Relay
14093647 0 2921 1715 +1206 whale_0xfd67 0xb67eaa5e... Aestus
14087669 5 3006 1800 +1206 kiln 0x8527d16c... Ultra Sound
14091417 0 2920 1715 +1205 everstake 0xa965c911... Ultra Sound
14091197 3 2971 1766 +1205 kiln 0x853b0078... Agnostic Gnosis
14093441 0 2919 1715 +1204 everstake 0xb67eaa5e... BloXroute Regulated
14090719 0 2919 1715 +1204 whale_0x8ebd 0x88857150... Ultra Sound
14092345 1 2936 1732 +1204 everstake 0xb26f9666... Titan Relay
14092073 0 2918 1715 +1203 kiln 0x853b0078... Agnostic Gnosis
14089087 1 2935 1732 +1203 everstake 0xb26f9666... Titan Relay
14090443 6 3020 1818 +1202 everstake 0x8db2a99d... BloXroute Max Profit
14088301 0 2917 1715 +1202 solo_stakers 0x88a53ec4... Aestus
14091540 0 2916 1715 +1201 coinbase 0x853b0078... Agnostic Gnosis
Total anomalies: 440

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