Mon, Mar 30, 2026

Propagation anomalies - 2026-03-30

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-03-30' AND slot_start_date_time < '2026-03-30'::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-03-30' AND slot_start_date_time < '2026-03-30'::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-03-30' AND slot_start_date_time < '2026-03-30'::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-03-30' AND slot_start_date_time < '2026-03-30'::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-03-30' AND slot_start_date_time < '2026-03-30'::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-03-30' AND slot_start_date_time < '2026-03-30'::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-03-30' AND slot_start_date_time < '2026-03-30'::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-03-30' AND slot_start_date_time < '2026-03-30'::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,177
MEV blocks: 6,607 (92.1%)
Local blocks: 570 (7.9%)

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 = 1729.1 + 11.40 × blob_count (R² = 0.004)
Residual σ = 606.5ms
Anomalies (>2σ slow): 412 (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
14003996 0 5938 1729 +4209 solo_stakers Local Local
14001569 0 5844 1729 +4115 rocketpool Local Local
14003040 0 5289 1729 +3560 abyss_finance Local Local
14004640 0 4977 1729 +3248 upbit Local Local
14000800 0 4771 1729 +3042 upbit Local Local
14004416 0 4650 1729 +2921 abyss_finance Local Local
14004928 6 4403 1797 +2606 liquid_collective Local Local
14003806 0 4136 1729 +2407 whale_0x8ebd Local Local
14003552 0 4106 1729 +2377 upbit Local Local
14004579 5 4017 1786 +2231 kraken 0x8527d16c... Ultra Sound
14004192 0 3942 1729 +2213 upbit Local Local
14005975 2 3723 1752 +1971 ether.fi 0x88a53ec4... BloXroute Max Profit
14001792 0 3698 1729 +1969 nethermind_lido 0x8db2a99d... Ultra Sound
14005875 0 3687 1729 +1958 ether.fi 0x851b00b1... BloXroute Max Profit
14004512 1 3690 1740 +1950 blockdaemon_lido 0x850b00e0... BloXroute Regulated
14007023 12 3762 1866 +1896 ether.fi 0xb67eaa5e... Titan Relay
14006812 7 3690 1809 +1881 coinbase 0x856b0004... Aestus
14002400 0 3593 1729 +1864 solo_stakers 0xb67eaa5e... Titan Relay
14006236 9 3690 1832 +1858 stakefish Local Local
14004634 10 3699 1843 +1856 blockdaemon 0x88857150... Ultra Sound
14005472 0 3570 1729 +1841 luno 0xb67eaa5e... BloXroute Regulated
14005219 0 3512 1729 +1783 kraken 0x82c466b9... EthGas
14005261 0 3511 1729 +1782 solo_stakers Local Local
14005630 12 3632 1866 +1766 everstake 0x857b0038... Ultra Sound
14004722 1 3488 1740 +1748 nethermind_lido 0x850b00e0... Flashbots
14003365 0 3471 1729 +1742 stader 0x850b00e0... BloXroute Max Profit
14003296 9 3571 1832 +1739 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
14005078 9 3560 1832 +1728 everstake 0x855b00e6... BloXroute Max Profit
14004949 7 3534 1809 +1725 everstake 0xb4ce6162... Ultra Sound
14005089 1 3458 1740 +1718 coinbase 0x823e0146... Aestus
14002442 0 3434 1729 +1705 nethermind_lido 0x823e0146... Ultra Sound
14004359 8 3522 1820 +1702 ether.fi 0xb26f9666... Titan Relay
14000608 9 3527 1832 +1695 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
14002161 6 3492 1797 +1695 whale_0x8ebd 0x823e0146... Ultra Sound
14000697 2 3434 1752 +1682 blockdaemon 0x8a850621... Titan Relay
14005415 0 3405 1729 +1676 ether.fi 0xac23f8cc... BloXroute Max Profit
14006885 6 3471 1797 +1674 blockdaemon 0xb67eaa5e... BloXroute Regulated
14005429 0 3385 1729 +1656 stakefish Local Local
14003872 1 3393 1740 +1653 blockdaemon 0xb26f9666... Titan Relay
14007185 0 3379 1729 +1650 nethermind_lido 0xb5a65d00... Aestus
14000733 0 3374 1729 +1645 nethermind_lido 0x8527d16c... Ultra Sound
14003997 0 3370 1729 +1641 blockdaemon 0x83bee517... Titan Relay
14005168 2 3392 1752 +1640 whale_0xad1d Local Local
14006272 0 3366 1729 +1637 p2porg 0x851b00b1... BloXroute Max Profit
14003910 2 3388 1752 +1636 blockdaemon 0x850b00e0... BloXroute Max Profit
14007059 2 3387 1752 +1635 luno 0x853b0078... BloXroute Regulated
14004622 5 3417 1786 +1631 nethermind_lido 0xb26f9666... Aestus
14001049 8 3451 1820 +1631 blockdaemon 0x850b00e0... BloXroute Max Profit
14006237 0 3352 1729 +1623 p2porg 0x8527d16c... Ultra Sound
14006140 3 3385 1763 +1622 blockdaemon 0x850b00e0... BloXroute Regulated
14004835 6 3419 1797 +1622 blockdaemon 0x850b00e0... BloXroute Regulated
14004104 1 3360 1740 +1620 ether.fi Local Local
14006640 1 3359 1740 +1619 blockdaemon_lido 0xb67eaa5e... Titan Relay
14004472 1 3358 1740 +1618 blockdaemon 0x8a850621... Titan Relay
14006010 3 3380 1763 +1617 luno 0x850b00e0... BloXroute Regulated
14001409 0 3345 1729 +1616 blockdaemon_lido 0x856b0004... BloXroute Max Profit
14005735 0 3345 1729 +1616 0xa0366397... Flashbots
14002996 9 3447 1832 +1615 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
14002636 5 3397 1786 +1611 blockdaemon_lido 0x850b00e0... BloXroute Regulated
14000910 6 3407 1797 +1610 0x85fb0503... BloXroute Regulated
14001089 5 3395 1786 +1609 blockdaemon 0x88857150... Ultra Sound
14006331 0 3333 1729 +1604 nethermind_lido 0x8527d16c... Ultra Sound
14005805 1 3343 1740 +1603 luno 0xb67eaa5e... BloXroute Regulated
14000843 10 3445 1843 +1602 nethermind_lido 0xb26f9666... Aestus
14006307 0 3322 1729 +1593 whale_0xdc8d 0x805e28e6... BloXroute Regulated
14006115 1 3330 1740 +1590 ether.fi 0x856b0004... Ultra Sound
14002895 2 3340 1752 +1588 nethermind_lido 0x853b0078... Agnostic Gnosis
14006264 0 3317 1729 +1588 everstake 0xb4ce6162... Ultra Sound
14002461 6 3385 1797 +1588 blockdaemon 0x850b00e0... BloXroute Max Profit
14000672 0 3316 1729 +1587 whale_0xedc6 0x856b0004... Agnostic Gnosis
14003860 0 3313 1729 +1584 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14005942 8 3403 1820 +1583 everstake 0xac23f8cc... Ultra Sound
14004474 0 3310 1729 +1581 solo_stakers 0xb67eaa5e... Aestus
14003636 1 3321 1740 +1581 whale_0xdc8d 0x850b00e0... BloXroute Regulated
14005447 6 3367 1797 +1570 stakefish Local Local
14007583 2 3321 1752 +1569 0xb26f9666... Titan Relay
14001598 2 3319 1752 +1567 0x857b0038... Ultra Sound
14001908 0 3295 1729 +1566 blockdaemon_lido 0x851b00b1... Ultra Sound
14003933 0 3292 1729 +1563 luno 0xac23f8cc... Ultra Sound
14003583 1 3303 1740 +1563 blockdaemon 0xb26f9666... Titan Relay
14003334 7 3371 1809 +1562 luno 0xb7c5fbdd... BloXroute Regulated
14002020 0 3290 1729 +1561 ether.fi 0xb26f9666... Titan Relay
14003505 0 3288 1729 +1559 blockdaemon 0x850b00e0... BloXroute Max Profit
14003796 0 3284 1729 +1555 whale_0xdc8d 0x850b00e0... BloXroute Regulated
14001369 2 3301 1752 +1549 blockdaemon 0x8db2a99d... BloXroute Max Profit
14002851 0 3276 1729 +1547 blockdaemon 0x8a850621... Titan Relay
14002247 3 3309 1763 +1546 luno 0xb26f9666... Titan Relay
14004209 0 3272 1729 +1543 blockdaemon_lido 0xac23f8cc... Ultra Sound
14000414 0 3269 1729 +1540 blockdaemon_lido 0x8527d16c... Ultra Sound
14004115 0 3266 1729 +1537 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14002757 15 3436 1900 +1536 blockdaemon_lido 0x850b00e0... BloXroute Regulated
14005054 0 3264 1729 +1535 blockdaemon 0x8527d16c... Ultra Sound
14006655 1 3275 1740 +1535 whale_0xdc8d 0x853b0078... Ultra Sound
14002995 0 3263 1729 +1534 luno 0xb67eaa5e... BloXroute Regulated
14001292 5 3319 1786 +1533 blockdaemon_lido 0xb26f9666... Titan Relay
14005330 6 3329 1797 +1532 gateway.fmas_lido 0x855b00e6... BloXroute Max Profit
14005457 5 3317 1786 +1531 lido Local Local
14004681 1 3271 1740 +1531 whale_0xdc8d 0xb67eaa5e... BloXroute Regulated
14004350 8 3350 1820 +1530 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
14007237 0 3258 1729 +1529 p2porg 0x8527d16c... Ultra Sound
14007202 1 3269 1740 +1529 p2porg 0x823e0146... Ultra Sound
14003618 8 3348 1820 +1528 whale_0xdc8d 0xb26f9666... Titan Relay
14003149 7 3336 1809 +1527 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
14006593 0 3253 1729 +1524 blockdaemon_lido 0x88857150... Ultra Sound
14000798 1 3261 1740 +1521 luno 0xb26f9666... Ultra Sound
14005421 1 3261 1740 +1521 revolut 0xb26f9666... Titan Relay
14001368 1 3256 1740 +1516 p2porg 0xac23f8cc... Ultra Sound
14003822 5 3299 1786 +1513 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14001705 6 3308 1797 +1511 luno 0xb26f9666... Titan Relay
14002826 5 3289 1786 +1503 revolut 0x850b00e0... BloXroute Regulated
14005300 12 3368 1866 +1502 blockdaemon_lido 0xb26f9666... Titan Relay
14005752 5 3284 1786 +1498 whale_0x8ebd 0xb4ce6162... Ultra Sound
14002746 6 3295 1797 +1498 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14005608 0 3223 1729 +1494 revolut 0xb26f9666... Titan Relay
14006945 6 3291 1797 +1494 gateway.fmas_lido 0xac23f8cc... Ultra Sound
14002447 1 3231 1740 +1491 whale_0x8ebd 0xb4ce6162... Ultra Sound
14003146 5 3271 1786 +1485 gateway.fmas_lido 0x855b00e6... BloXroute Max Profit
14005026 0 3213 1729 +1484 stader 0x8527d16c... Ultra Sound
14004496 0 3211 1729 +1482 coinbase 0xb26f9666... Aestus
14003414 0 3210 1729 +1481 coinbase 0xac23f8cc... Aestus
14006367 0 3209 1729 +1480 blockdaemon Local Local
14003573 6 3276 1797 +1479 blockdaemon_lido 0x853b0078... Titan Relay
14003214 5 3262 1786 +1476 blockdaemon_lido 0x88857150... Ultra Sound
14003936 3 3238 1763 +1475 p2porg 0xb26f9666... Aestus
14005692 1 3215 1740 +1475 p2porg 0x88857150... Ultra Sound
14003665 0 3203 1729 +1474 coinbase 0x88a53ec4... Aestus
14007484 0 3200 1729 +1471 blockdaemon 0x88857150... Ultra Sound
14004932 5 3257 1786 +1471 coinbase 0x88a53ec4... BloXroute Max Profit
14004697 0 3199 1729 +1470 p2porg 0xb211df49... Titan Relay
14001866 6 3264 1797 +1467 blockdaemon 0x88857150... Ultra Sound
14002421 1 3206 1740 +1466 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
14003454 1 3205 1740 +1465 whale_0x8ebd 0xac23f8cc... Ultra Sound
14003077 1 3204 1740 +1464 blockdaemon_lido 0x850b00e0... BloXroute Regulated
14004226 1 3202 1740 +1462 gateway.fmas_lido 0x855b00e6... BloXroute Max Profit
14006512 4 3232 1775 +1457 revolut 0xb26f9666... Titan Relay
14002712 5 3242 1786 +1456 0x8527d16c... Ultra Sound
14000614 9 3285 1832 +1453 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14005772 3 3215 1763 +1452 gateway.fmas_lido 0x853b0078... Agnostic Gnosis
14002661 4 3225 1775 +1450 blockdaemon_lido 0xb67eaa5e... Titan Relay
14006096 6 3246 1797 +1449 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14005188 5 3234 1786 +1448 revolut 0xb26f9666... Titan Relay
14003339 1 3186 1740 +1446 revolut 0xb26f9666... Titan Relay
14007453 2 3195 1752 +1443 blockdaemon_lido 0x855b00e6... BloXroute Max Profit
14004566 6 3240 1797 +1443 blockdaemon 0xb7c5e609... BloXroute Regulated
14003222 8 3260 1820 +1440 blockdaemon_lido 0x853b0078... BloXroute Regulated
14006727 6 3237 1797 +1440 p2porg 0x850b00e0... BloXroute Regulated
14002584 7 3248 1809 +1439 blockdaemon_lido 0x850b00e0... BloXroute Regulated
14004526 3 3199 1763 +1436 p2porg 0x88a53ec4... BloXroute Max Profit
14004317 8 3253 1820 +1433 p2porg 0x850b00e0... BloXroute Regulated
14004027 4 3206 1775 +1431 abyss_finance 0x855b00e6... BloXroute Max Profit
14004707 5 3217 1786 +1431 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14002436 6 3228 1797 +1431 p2porg 0x850b00e0... BloXroute Regulated
14005438 1 3169 1740 +1429 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14003674 6 3225 1797 +1428 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
14007208 6 3225 1797 +1428 p2porg 0x855b00e6... BloXroute Max Profit
14004963 0 3155 1729 +1426 blockdaemon 0x851b00b1... BloXroute Max Profit
14004882 0 3154 1729 +1425 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14002760 10 3268 1843 +1425 revolut 0x8527d16c... Ultra Sound
14003712 5 3210 1786 +1424 coinbase 0x88a53ec4... BloXroute Regulated
14003813 10 3265 1843 +1422 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14005273 2 3173 1752 +1421 p2porg 0x855b00e6... Flashbots
14002604 0 3150 1729 +1421 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14004197 0 3149 1729 +1420 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14007398 0 3143 1729 +1414 blockdaemon 0x88857150... Ultra Sound
14006581 5 3200 1786 +1414 p2porg 0x88a53ec4... BloXroute Regulated
14004114 0 3142 1729 +1413 p2porg 0xb67eaa5e... BloXroute Max Profit
14005278 1 3153 1740 +1413 p2porg 0x855b00e6... BloXroute Max Profit
14005802 7 3221 1809 +1412 coinbase 0xb7c5e609... BloXroute Max Profit
14007164 1 3152 1740 +1412 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
14006244 0 3140 1729 +1411 p2porg 0x88a53ec4... BloXroute Max Profit
14000437 0 3139 1729 +1410 p2porg 0xb26f9666... Titan Relay
14001091 6 3205 1797 +1408 whale_0x8ebd 0x85fb0503... BloXroute Max Profit
14004673 0 3136 1729 +1407 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
14006082 8 3227 1820 +1407 kiln 0x8527d16c... Ultra Sound
14006831 11 3260 1854 +1406 figment 0x823e0146... BloXroute Max Profit
14006052 0 3134 1729 +1405 coinbase 0xb26f9666... Aestus
14004166 1 3143 1740 +1403 whale_0x8ebd 0x855b00e6... Ultra Sound
14002730 0 3131 1729 +1402 whale_0x8ebd 0xb4ce6162... Ultra Sound
14002289 0 3131 1729 +1402 coinbase 0xb26f9666... Aestus
14006863 0 3130 1729 +1401 whale_0x8ebd 0x8527d16c... Ultra Sound
14001972 3 3162 1763 +1399 whale_0x8ebd 0x856b0004... Aestus
14005129 6 3194 1797 +1397 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14004003 5 3181 1786 +1395 everstake 0x88857150... Ultra Sound
14002635 0 3122 1729 +1393 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14000488 0 3121 1729 +1392 kiln 0xa9bd259c... Flashbots
14005020 6 3189 1797 +1392 p2porg 0x88857150... Ultra Sound
14007567 5 3177 1786 +1391 blockdaemon 0x8527d16c... Ultra Sound
14003097 1 3131 1740 +1391 p2porg 0xb67eaa5e... Aestus
14003584 1 3131 1740 +1391 coinbase 0x8db2a99d... BloXroute Max Profit
14002459 0 3119 1729 +1390 bitstamp 0xb67eaa5e... BloXroute Max Profit
14005287 4 3164 1775 +1389 kiln 0xac23f8cc... Flashbots
14001158 0 3117 1729 +1388 solo_stakers 0x823e0146... Aestus
14002187 3 3151 1763 +1388 gateway.fmas_lido 0x8db2a99d... Flashbots
14000602 3 3148 1763 +1385 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
14005013 3 3148 1763 +1385 gateway.fmas_lido 0x8db2a99d... Ultra Sound
14003588 4 3159 1775 +1384 everstake 0x850b00e0... BloXroute Max Profit
14004329 5 3170 1786 +1384 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14006648 0 3111 1729 +1382 p2porg 0xb26f9666... Titan Relay
14001299 1 3122 1740 +1382 coinbase 0xb67eaa5e... BloXroute Max Profit
14000477 7 3190 1809 +1381 everstake 0x853b0078... Agnostic Gnosis
14003481 6 3178 1797 +1381 coinbase 0x823e0146... Flashbots
14005419 1 3119 1740 +1379 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14004990 0 3107 1729 +1378 p2porg 0x855b00e6... Flashbots
14004937 9 3209 1832 +1377 coinbase 0x823e0146... Ultra Sound
14005114 8 3197 1820 +1377 kiln 0xb67eaa5e... BloXroute Max Profit
14005197 1 3117 1740 +1377 everstake 0xb4ce6162... Ultra Sound
14004190 8 3195 1820 +1375 p2porg 0xb67eaa5e... BloXroute Regulated
14006911 0 3101 1729 +1372 coinbase 0x850b00e0... BloXroute Max Profit
14007297 1 3112 1740 +1372 p2porg 0x8db2a99d... Flashbots
14006942 0 3100 1729 +1371 whale_0x8ebd 0xb4ce6162... Ultra Sound
14001919 0 3099 1729 +1370 p2porg 0x853b0078... BloXroute Regulated
14002901 1 3110 1740 +1370 whale_0x8ebd 0x855b00e6... BloXroute Max Profit
14007339 2 3120 1752 +1368 p2porg 0x88a53ec4... BloXroute Max Profit
14005909 5 3153 1786 +1367 p2porg 0x823e0146... Ultra Sound
14005110 5 3149 1786 +1363 whale_0xedc6 0x8527d16c... Ultra Sound
14002053 2 3113 1752 +1361 gateway.fmas_lido 0x8527d16c... Ultra Sound
14006762 1 3101 1740 +1361 kiln 0xb26f9666... Titan Relay
14005427 2 3112 1752 +1360 whale_0x8ebd 0xb26f9666... Titan Relay
14007258 5 3145 1786 +1359 whale_0x8ebd 0x8527d16c... Ultra Sound
14004892 0 3087 1729 +1358 p2porg 0xb67eaa5e... Aestus
14001101 11 3210 1854 +1356 gateway.fmas_lido 0xb26f9666... Aestus
14001975 10 3198 1843 +1355 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14002037 0 3082 1729 +1353 whale_0x8ebd 0x8db2a99d... Ultra Sound
14005776 6 3150 1797 +1353 coinbase 0x88857150... Ultra Sound
14006759 0 3081 1729 +1352 whale_0x8ebd 0xb26f9666... Titan Relay
14005212 8 3171 1820 +1351 p2porg 0xb26f9666... BloXroute Max Profit
14001723 0 3077 1729 +1348 p2porg 0x850b00e0... Flashbots
14002624 1 3084 1740 +1344 nethermind_lido 0xb26f9666... Aestus
14003364 0 3072 1729 +1343 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14004922 6 3140 1797 +1343 figment 0xb26f9666... BloXroute Regulated
14005124 5 3128 1786 +1342 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14004187 4 3116 1775 +1341 coinbase 0xb67eaa5e... BloXroute Max Profit
14006362 1 3080 1740 +1340 kiln 0x8db2a99d... Flashbots
14007538 1 3077 1740 +1337 p2porg 0x856b0004... Agnostic Gnosis
14000838 5 3120 1786 +1334 p2porg 0x8527d16c... Ultra Sound
14007322 15 3234 1900 +1334 everstake 0xb5a65d00... Aestus
14005537 2 3085 1752 +1333 p2porg 0x823e0146... Ultra Sound
14002831 0 3060 1729 +1331 p2porg 0x855b00e6... BloXroute Max Profit
14006780 0 3058 1729 +1329 p2porg 0x8db2a99d... Flashbots
14005454 3 3091 1763 +1328 coinbase 0x8527d16c... Ultra Sound
14000593 9 3159 1832 +1327 figment 0xb26f9666... Titan Relay
14003446 0 3056 1729 +1327 whale_0xedc6 0xb67eaa5e... BloXroute Regulated
14005451 6 3124 1797 +1327 p2porg 0x853b0078... Aestus
14003216 0 3055 1729 +1326 everstake 0x853b0078... Agnostic Gnosis
14002256 1 3066 1740 +1326 figment 0xb26f9666... Titan Relay
14000734 7 3134 1809 +1325 kiln 0x853b0078... Agnostic Gnosis
14001188 5 3111 1786 +1325 stader 0x8527d16c... Ultra Sound
14000951 6 3120 1797 +1323 gateway.fmas_lido 0x8527d16c... Ultra Sound
14006929 12 3188 1866 +1322 0x856b0004... Agnostic Gnosis
14006341 0 3051 1729 +1322 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14006821 0 3050 1729 +1321 blockdaemon_lido 0x8db2a99d... Ultra Sound
14001775 5 3106 1786 +1320 p2porg 0x856b0004... Aestus
14006206 0 3048 1729 +1319 coinbase 0xb26f9666... Titan Relay
14005311 0 3048 1729 +1319 gateway.fmas_lido 0x805e28e6... BloXroute Max Profit
14003163 6 3116 1797 +1319 whale_0x8ebd 0x8527d16c... Ultra Sound
14007420 5 3104 1786 +1318 whale_0x8ebd 0x856b0004... Aestus
14001300 1 3058 1740 +1318 everstake 0xb26f9666... Titan Relay
14006609 5 3103 1786 +1317 whale_0x8ebd 0x8db2a99d... Ultra Sound
14002163 0 3045 1729 +1316 coinbase 0xb26f9666... Titan Relay
14006799 4 3090 1775 +1315 p2porg 0xb67eaa5e... BloXroute Max Profit
14001791 0 3044 1729 +1315 0x856b0004... Aestus
14002560 8 3135 1820 +1315 coinbase 0x8db2a99d... Ultra Sound
14006469 12 3180 1866 +1314 p2porg 0x8db2a99d... Agnostic Gnosis
14005362 10 3157 1843 +1314 whale_0x8ebd 0x8527d16c... Ultra Sound
14002165 1 3054 1740 +1314 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14005353 2 3064 1752 +1312 whale_0x8ebd 0x856b0004... Agnostic Gnosis
14004660 0 3041 1729 +1312 everstake 0xb4ce6162... Ultra Sound
14007521 1 3052 1740 +1312 coinbase 0x8527d16c... Ultra Sound
14001718 5 3097 1786 +1311 whale_0x8ebd 0x853b0078... Agnostic Gnosis
14002152 0 3039 1729 +1310 p2porg 0x853b0078... Aestus
14004643 0 3038 1729 +1309 p2porg 0xb26f9666... BloXroute Max Profit
14006564 15 3209 1900 +1309 whale_0xedc6 0x8527d16c... Ultra Sound
14001324 1 3049 1740 +1309 solo_stakers 0x8db2a99d... Ultra Sound
14007407 0 3037 1729 +1308 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14004897 3 3071 1763 +1308 0xb26f9666... Titan Relay
14006008 1 3048 1740 +1308 kiln 0xb67eaa5e... BloXroute Regulated
14002449 0 3035 1729 +1306 coinbase 0x8527d16c... Ultra Sound
14001903 1 3043 1740 +1303 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14002359 0 3031 1729 +1302 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14007488 5 3088 1786 +1302 everstake 0x88857150... Ultra Sound
14004480 0 3030 1729 +1301 coinbase 0xb26f9666... Titan Relay
14004753 7 3109 1809 +1300 p2porg 0x856b0004... Agnostic Gnosis
14006201 0 3029 1729 +1300 whale_0x8ebd 0x8527d16c... Ultra Sound
14002290 4 3074 1775 +1299 0xb26f9666... BloXroute Max Profit
14003862 0 3028 1729 +1299 whale_0x8ebd 0x853b0078... Agnostic Gnosis
14006709 1 3039 1740 +1299 kiln 0xb67eaa5e... BloXroute Regulated
14005065 0 3027 1729 +1298 p2porg 0x8527d16c... Ultra Sound
14006707 0 3024 1729 +1295 whale_0x8ebd 0x8527d16c... Ultra Sound
14006429 0 3024 1729 +1295 p2porg 0x856b0004... Ultra Sound
14005382 0 3022 1729 +1293 everstake 0x88a53ec4... BloXroute Regulated
14001309 2 3044 1752 +1292 whale_0x8ebd 0x856b0004... Agnostic Gnosis
14000944 0 3021 1729 +1292 p2porg 0x8527d16c... Ultra Sound
14006459 0 3021 1729 +1292 whale_0x8ebd 0x8527d16c... Ultra Sound
14004609 11 3144 1854 +1290 bitstamp 0x88857150... Ultra Sound
14006278 0 3018 1729 +1289 everstake 0xb26f9666... Aestus
14004043 0 3017 1729 +1288 kiln 0xb67eaa5e... BloXroute Max Profit
14004163 3 3051 1763 +1288 coinbase 0x850b00e0... BloXroute Max Profit
14003209 0 3016 1729 +1287 coinbase 0xb26f9666... Titan Relay
14006374 8 3107 1820 +1287 p2porg 0x88a53ec4... BloXroute Max Profit
14002988 0 3014 1729 +1285 kiln 0xb26f9666... BloXroute Regulated
14001263 8 3105 1820 +1285 kiln 0xb26f9666... Aestus
14000985 6 3082 1797 +1285 coinbase 0x8db2a99d... Ultra Sound
14003088 0 3013 1729 +1284 whale_0x8ebd 0x8527d16c... Ultra Sound
14000454 3 3047 1763 +1284 whale_0x8ebd 0x853b0078... Agnostic Gnosis
14004782 0 3012 1729 +1283 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14005887 1 3023 1740 +1283 everstake 0x8db2a99d... Flashbots
14000729 2 3034 1752 +1282 p2porg 0xb26f9666... BloXroute Max Profit
14005954 5 3068 1786 +1282 upbit 0x8527d16c... Ultra Sound
14002096 2 3032 1752 +1280 coinbase 0x823e0146... Flashbots
14000682 0 3009 1729 +1280 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14001711 1 3020 1740 +1280 coinbase 0x823e0146... BloXroute Max Profit
14005141 11 3134 1854 +1280 solo_stakers 0xb26f9666... BloXroute Max Profit
14005139 3 3040 1763 +1277 whale_0x8ebd 0x8527d16c... Ultra Sound
14003526 1 3017 1740 +1277 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14000875 0 3005 1729 +1276 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14000521 13 3151 1877 +1274 p2porg 0x823e0146... Ultra Sound
14006395 0 3001 1729 +1272 p2porg 0x856b0004... BloXroute Max Profit
14005560 3 3034 1763 +1271 whale_0x8ebd 0xb26f9666... Titan Relay
14005613 6 3068 1797 +1271 coinbase 0x856b0004... Agnostic Gnosis
14004536 6 3067 1797 +1270 everstake 0x823e0146... Aestus
14003725 5 3055 1786 +1269 whale_0x8ebd 0x853b0078... Aestus
14001040 0 2997 1729 +1268 0x8527d16c... Ultra Sound
14001120 1 3008 1740 +1268 blockdaemon 0x8db2a99d... Ultra Sound
14006370 1 3008 1740 +1268 kiln 0x853b0078... Agnostic Gnosis
14006040 7 3075 1809 +1266 nethermind_lido 0x850b00e0... BloXroute Max Profit
14001295 5 3052 1786 +1266 solo_stakers 0xac23f8cc... Aestus
14005390 1 3006 1740 +1266 coinbase 0x853b0078... Aestus
14007494 6 3062 1797 +1265 kiln 0xb26f9666... BloXroute Regulated
14003078 5 3050 1786 +1264 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14003746 2 3015 1752 +1263 coinbase 0xac23f8cc... Ultra Sound
14006775 0 2992 1729 +1263 coinbase 0x853b0078... Agnostic Gnosis
14006285 1 3003 1740 +1263 kiln 0x853b0078... Aestus
14000677 5 3048 1786 +1262 whale_0x8ebd 0x8527d16c... Ultra Sound
14006290 3 3025 1763 +1262 bitstamp 0xb4ce6162... Ultra Sound
14002522 13 3139 1877 +1262 everstake 0x82c466b9... Ultra Sound
14003930 7 3070 1809 +1261 0xb26f9666... BloXroute Max Profit
14005717 0 2990 1729 +1261 whale_0xedc6 0xac23f8cc... Ultra Sound
14002062 0 2990 1729 +1261 kiln 0x88a53ec4... BloXroute Regulated
14006695 0 2989 1729 +1260 kiln 0x855b00e6... Ultra Sound
14001420 0 2989 1729 +1260 whale_0xedc6 0x8527d16c... Ultra Sound
14005534 6 3057 1797 +1260 p2porg 0xb26f9666... BloXroute Max Profit
14003360 8 3079 1820 +1259 everstake 0x853b0078... Aestus
14003562 1 2999 1740 +1259 0x853b0078... Agnostic Gnosis
14007397 8 3078 1820 +1258 0x8527d16c... Ultra Sound
14002006 0 2986 1729 +1257 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14000404 5 3043 1786 +1257 everstake 0x88857150... Ultra Sound
14007102 6 3054 1797 +1257 stader 0xb67eaa5e... Aestus
14000587 1 2996 1740 +1256 kiln 0x88a53ec4... BloXroute Regulated
14003491 6 3053 1797 +1256 coinbase 0x8db2a99d... Aestus
14003356 6 3053 1797 +1256 solo_stakers 0x855b00e6... BloXroute Max Profit
14002098 0 2984 1729 +1255 coinbase 0x926b7905... BloXroute Max Profit
14005980 8 3075 1820 +1255 everstake 0xb26f9666... Aestus
14002068 0 2982 1729 +1253 coinbase 0xb67eaa5e... BloXroute Max Profit
14006702 5 3039 1786 +1253 kiln 0x856b0004... Aestus
14001759 1 2991 1740 +1251 p2porg Local Local
14004795 7 3059 1809 +1250 whale_0x8ebd 0x853b0078... Aestus
14006012 5 3036 1786 +1250 coinbase 0x8db2a99d... Aestus
14000792 6 3046 1797 +1249 kiln 0x853b0078... Agnostic Gnosis
14004695 0 2977 1729 +1248 whale_0x8ebd Local Local
14003750 1 2988 1740 +1248 solo_stakers 0xb7c5e609... BloXroute Max Profit
14002117 1 2987 1740 +1247 whale_0x8ebd 0x853b0078... Aestus
14000644 0 2975 1729 +1246 kiln 0x851b00b1... Flashbots
14006209 11 3100 1854 +1246 coinbase Local Local
14006144 0 2974 1729 +1245 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14006193 5 3031 1786 +1245 whale_0x8ebd 0x8527d16c... Ultra Sound
14005108 6 3042 1797 +1245 coinbase 0xb26f9666... Titan Relay
14001656 4 3019 1775 +1244 whale_0x8ebd 0x853b0078... Agnostic Gnosis
14005946 0 2973 1729 +1244 0x851b00b1... BloXroute Max Profit
14000978 1 2982 1740 +1242 coinbase 0x8527d16c... Ultra Sound
14000764 2 2993 1752 +1241 everstake 0x855b00e6... BloXroute Max Profit
14000420 10 3084 1843 +1241 coinbase 0x853b0078... Aestus
14003081 0 2969 1729 +1240 whale_0x8ebd 0xb7c5c39a... BloXroute Max Profit
14000844 3 3003 1763 +1240 kiln 0x88a53ec4... BloXroute Max Profit
14001113 1 2980 1740 +1240 kiln 0x85fb0503... BloXroute Max Profit
14007163 0 2968 1729 +1239 kiln 0x88857150... Ultra Sound
14001151 6 3036 1797 +1239 coinbase 0xb26f9666... Titan Relay
14001211 1 2978 1740 +1238 everstake 0xb26f9666... Titan Relay
14001124 10 3080 1843 +1237 kiln 0x856b0004... Ultra Sound
14002366 5 3022 1786 +1236 everstake 0x8a850621... Titan Relay
14004208 6 3033 1797 +1236 whale_0xd07d 0x856b0004... Agnostic Gnosis
14004819 7 3044 1809 +1235 kiln 0x856b0004... Aestus
14003567 0 2964 1729 +1235 whale_0x8ebd 0x853b0078... Agnostic Gnosis
14003447 7 3043 1809 +1234 whale_0x8ebd 0xb26f9666... Titan Relay
14006276 5 3020 1786 +1234 coinbase 0x853b0078... Aestus
14001346 9 3065 1832 +1233 everstake 0x855b00e6... BloXroute Max Profit
14006335 7 3042 1809 +1233 kiln 0x856b0004... Aestus
14003154 7 3042 1809 +1233 kiln 0xb26f9666... Titan Relay
14004907 3 2995 1763 +1232 coinbase 0x853b0078... Aestus
14004461 3 2994 1763 +1231 0x853b0078... Agnostic Gnosis
14002572 2 2982 1752 +1230 everstake 0x823e0146... BloXroute Max Profit
14006906 0 2959 1729 +1230 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14005686 10 3073 1843 +1230 kiln 0xb4ce6162... Ultra Sound
14005516 1 2970 1740 +1230 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14002780 6 3027 1797 +1230 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14004356 1 2965 1740 +1225 coinbase 0xb26f9666... BloXroute Max Profit
14006700 1 2965 1740 +1225 kiln 0x853b0078... Aestus
14002855 0 2953 1729 +1224 everstake 0x823e0146... Ultra Sound
14000486 10 3067 1843 +1224 coinbase 0xb4ce6162... Ultra Sound
14005231 1 2964 1740 +1224 0x88a53ec4... BloXroute Max Profit
14001996 9 3054 1832 +1222 kiln 0x88a53ec4... BloXroute Regulated
14007470 5 3007 1786 +1221 whale_0x8ebd 0xb26f9666... Titan Relay
14003498 3 2983 1763 +1220 whale_0x8ebd 0x853b0078... Aestus
14002481 0 2948 1729 +1219 kiln 0x856b0004... Agnostic Gnosis
14002509 0 2948 1729 +1219 everstake 0xb67eaa5e... BloXroute Regulated
14005757 0 2947 1729 +1218 0x823e0146... Aestus
14005260 5 3004 1786 +1218 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14004951 0 2946 1729 +1217 blockdaemon 0xac23f8cc... Ultra Sound
14001458 9 3048 1832 +1216 coinbase 0x8527d16c... Ultra Sound
14002043 0 2945 1729 +1216 coinbase 0x853b0078... Aestus
14004479 6 3012 1797 +1215 0x856b0004... Aestus
14005854 0 2943 1729 +1214 kiln 0x8527d16c... Ultra Sound
14005324 5 3000 1786 +1214 coinbase 0xb26f9666... BloXroute Max Profit
Total anomalies: 412

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