Fri, Apr 24, 2026

Propagation anomalies - 2026-04-24

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-24' AND slot_start_date_time < '2026-04-24'::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-24' AND slot_start_date_time < '2026-04-24'::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-24' AND slot_start_date_time < '2026-04-24'::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-24' AND slot_start_date_time < '2026-04-24'::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-24' AND slot_start_date_time < '2026-04-24'::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-24' AND slot_start_date_time < '2026-04-24'::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-24' AND slot_start_date_time < '2026-04-24'::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-24' AND slot_start_date_time < '2026-04-24'::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,192
MEV blocks: 6,881 (95.7%)
Local blocks: 311 (4.3%)

Anomaly detection method

The method:

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

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

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

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

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

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

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

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

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

print(f"Regression: block_ms = {intercept:.1f} + {slope:.2f} × blob_count (R² = {r_value**2:.3f})")
print(f"Residual σ = {residual_std:.1f}ms")
print(f"Anomalies (>2σ slow): {n_anomalies:,} ({pct_anomalies:.1f}%)")
Regression: block_ms = 1690.9 + 15.00 × blob_count (R² = 0.006)
Residual σ = 645.8ms
Anomalies (>2σ slow): 375 (5.2%)
Show code
# Create scatter plot with regression band
x_range = np.array([0, int(max_blobs)])
y_pred = intercept + slope * x_range
y_upper = y_pred + 2 * residual_std
y_lower = y_pred - 2 * residual_std

fig = go.Figure()

# Add ±2σ band
fig.add_trace(go.Scatter(
    x=np.concatenate([x_range, x_range[::-1]]),
    y=np.concatenate([y_upper, y_lower[::-1]]),
    fill="toself",
    fillcolor="rgba(100,100,100,0.2)",
    line=dict(width=0),
    name="±2σ band",
    hoverinfo="skip",
))

# Add regression line
fig.add_trace(go.Scatter(
    x=x_range,
    y=y_pred,
    mode="lines",
    line=dict(color="white", width=2, dash="dash"),
    name="Expected",
))

# Normal points (sample to avoid overplotting)
df_normal = df_anomaly[~df_anomaly["is_anomaly"]]
if len(df_normal) > 2000:
    df_normal = df_normal.sample(2000, random_state=42)

fig.add_trace(go.Scatter(
    x=df_normal["blob_count"],
    y=df_normal["block_first_seen_ms"],
    mode="markers",
    marker=dict(size=4, color="rgba(100,150,200,0.4)"),
    name=f"Normal ({len(df_anomaly) - n_anomalies:,})",
    hoverinfo="skip",
))

# Anomaly points
fig.add_trace(go.Scatter(
    x=df_outliers["blob_count"],
    y=df_outliers["block_first_seen_ms"],
    mode="markers",
    marker=dict(
        size=7,
        color="#e74c3c",
        line=dict(width=1, color="white"),
    ),
    name=f"Anomalies ({n_anomalies:,})",
    customdata=np.column_stack([
        df_outliers["slot"],
        df_outliers["residual_ms"].round(0),
        df_outliers["relay"],
    ]),
    hovertemplate="<b>Slot %{customdata[0]}</b><br>Blobs: %{x}<br>Actual: %{y:.0f}ms<br>+%{customdata[1]}ms vs expected<br>Relay: %{customdata[2]}<extra></extra>",
))

fig.update_layout(
    margin=dict(l=60, r=30, t=30, b=60),
    xaxis=dict(title="Blob count", range=[-0.5, int(max_blobs) + 0.5]),
    yaxis=dict(title="Block first seen (ms from slot start)"),
    legend=dict(orientation="h", yanchor="bottom", y=1.02, xanchor="right", x=1),
    height=500,
)
fig.show(config={"responsive": True})

All propagation anomalies

Blocks that propagated much slower than expected given their blob count, sorted by residual (worst first).

Show code
# All anomalies table with selectable text and Lab links
if n_anomalies > 0:
    df_table = df_outliers.sort_values("residual_ms", ascending=False)[
        ["slot", "blob_count", "block_first_seen_ms", "expected_ms", "residual_ms", "proposer", "builder", "relay"]
    ].copy()
    df_table["block_first_seen_ms"] = df_table["block_first_seen_ms"].round(0).astype(int)
    df_table["expected_ms"] = df_table["expected_ms"].round(0).astype(int)
    df_table["residual_ms"] = df_table["residual_ms"].round(0).astype(int)
    
    # Build HTML table
    html = '''
    <style>
    .anomaly-table { border-collapse: collapse; width: 100%; font-family: monospace; font-size: 13px; }
    .anomaly-table th { background: #2c3e50; color: white; padding: 8px 12px; text-align: left; position: sticky; top: 0; }
    .anomaly-table td { padding: 6px 12px; border-bottom: 1px solid #eee; }
    .anomaly-table tr:hover { background: #f5f5f5; }
    .anomaly-table .num { text-align: right; }
    .anomaly-table .delta { background: #ffebee; color: #c62828; font-weight: bold; }
    .anomaly-table a { color: #1976d2; text-decoration: none; }
    .anomaly-table a:hover { text-decoration: underline; }
    .table-container { max-height: 600px; overflow-y: auto; }
    </style>
    <div class="table-container">
    <table class="anomaly-table">
    <thead>
    <tr><th>Slot</th><th class="num">Blobs</th><th class="num">Actual (ms)</th><th class="num">Expected (ms)</th><th class="num">Δ (ms)</th><th>Proposer</th><th>Builder</th><th>Relay</th></tr>
    </thead>
    <tbody>
    '''
    
    for _, row in df_table.iterrows():
        slot_link = f'<a href="https://lab.ethpandaops.io/ethereum/slots/{row["slot"]}" target="_blank">{row["slot"]}</a>'
        html += f'''<tr>
            <td>{slot_link}</td>
            <td class="num">{row["blob_count"]}</td>
            <td class="num">{row["block_first_seen_ms"]}</td>
            <td class="num">{row["expected_ms"]}</td>
            <td class="num delta">+{row["residual_ms"]}</td>
            <td>{row["proposer"]}</td>
            <td>{row["builder"]}</td>
            <td>{row["relay"]}</td>
        </tr>'''
    
    html += '</tbody></table></div>'
    display(HTML(html))
    print(f"\nTotal anomalies: {len(df_table):,}")
else:
    print("No anomalies detected.")
SlotBlobsActual (ms)Expected (ms)Δ (ms)ProposerBuilderRelay
14184038 0 16814 1691 +15123 piertwo Local Local
14182017 0 11370 1691 +9679 consensyscodefi_lido Local Local
14186664 0 9472 1691 +7781 whale_0x3212 Local Local
14183872 0 5852 1691 +4161 upbit Local Local
14182016 8 5103 1811 +3292 upbit Local Local
14182432 0 4846 1691 +3155 blockdaemon_lido Local Local
14186784 0 4556 1691 +2865 upbit Local Local
14185012 0 4170 1691 +2479 csm_operator217_lido Local Local
14184864 0 3793 1691 +2102 blockdaemon Local Local
14185984 0 3787 1691 +2096 stakefish 0x8db2a99d... BloXroute Max Profit
14182080 1 3798 1706 +2092 blockdaemon 0x857b0038... BloXroute Regulated
14185802 1 3770 1706 +2064 coinbase 0x8a850621... Titan Relay
14183552 1 3735 1706 +2029 stakefish 0x856b0004... BloXroute Max Profit
14186200 0 3693 1691 +2002 blockdaemon_lido 0x850b00e0... Ultra Sound
14187580 3 3689 1736 +1953 blockdaemon_lido 0x857b0038... BloXroute Max Profit
14187430 1 3658 1706 +1952 ether.fi 0x857b0038... BloXroute Max Profit
14187584 6 3696 1781 +1915 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
14181915 1 3581 1706 +1875 blockdaemon_lido 0x850b00e0... Ultra Sound
14182417 0 3543 1691 +1852 blockdaemon_lido 0x851b00b1... Ultra Sound
14180768 6 3607 1781 +1826 blockdaemon 0x853b0078... Ultra Sound
14185824 5 3586 1766 +1820 stakefish 0x8db2a99d... Ultra Sound
14181703 5 3577 1766 +1811 ether.fi 0x823e0146... Aestus
14183616 4 3556 1751 +1805 whale_0xdc8d 0x853b0078... Ultra Sound
14187355 8 3588 1811 +1777 blockdaemon 0xb67eaa5e... BloXroute Regulated
14181988 0 3464 1691 +1773 blockdaemon_lido 0x851b00b1... Ultra Sound
14186620 0 3463 1691 +1772 blockdaemon_lido 0x851b00b1... BloXroute Max Profit
14185215 0 3463 1691 +1772 blockdaemon_lido 0x851b00b1... Ultra Sound
14182384 15 3665 1916 +1749 whale_0xb23c 0xb26f9666... EthGas
14182428 0 3435 1691 +1744 blockdaemon 0x853b0078... Ultra Sound
14185135 1 3441 1706 +1735 ether.fi 0xb67eaa5e... BloXroute Regulated
14184243 1 3438 1706 +1732 blockdaemon_lido 0x850b00e0... Ultra Sound
14186492 0 3421 1691 +1730 blockdaemon_lido 0x8db2a99d... Ultra Sound
14185856 6 3508 1781 +1727 bitstamp 0x8db2a99d... BloXroute Max Profit
14186063 0 3413 1691 +1722 blockdaemon_lido 0xb67eaa5e... Titan Relay
14184513 1 3423 1706 +1717 blockdaemon 0x8a850621... Titan Relay
14186304 0 3400 1691 +1709 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14182199 0 3399 1691 +1708 nethermind_lido 0xb26f9666... Aestus
14180474 0 3397 1691 +1706 nethermind_lido 0xb26f9666... Aestus
14185310 0 3394 1691 +1703 blockdaemon 0x8a850621... Titan Relay
14183311 0 3392 1691 +1701 ether.fi Local Local
14187224 0 3390 1691 +1699 blockdaemon 0x8a850621... Titan Relay
14184981 1 3402 1706 +1696 whale_0xdc8d 0xb26f9666... Titan Relay
14180884 0 3384 1691 +1693 nethermind_lido 0xb26f9666... Aestus
14184263 0 3377 1691 +1686 blockdaemon 0x8a850621... Titan Relay
14182932 0 3370 1691 +1679 blockdaemon_lido 0x856b0004... BloXroute Max Profit
14187058 0 3369 1691 +1678 blockdaemon 0x8a850621... Titan Relay
14186233 6 3456 1781 +1675 blockdaemon 0x853b0078... Ultra Sound
14183916 0 3366 1691 +1675 nethermind_lido 0xb26f9666... Aestus
14182574 5 3440 1766 +1674 blockdaemon 0xb7c5c39a... BloXroute Max Profit
14183808 9 3492 1826 +1666 blockdaemon 0x853b0078... Ultra Sound
14185547 0 3357 1691 +1666 ether.fi 0xb67eaa5e... Titan Relay
14186827 1 3369 1706 +1663 blockdaemon_lido 0x82c466b9... BloXroute Regulated
14182810 0 3353 1691 +1662 nethermind_lido 0xb26f9666... Aestus
14181969 2 3379 1721 +1658 coinbase 0x88a53ec4... Aestus
14187293 1 3352 1706 +1646 blockdaemon 0x857b0038... BloXroute Max Profit
14184357 1 3352 1706 +1646 blockdaemon 0x88a53ec4... BloXroute Max Profit
14186220 6 3423 1781 +1642 blockdaemon_lido 0xb67eaa5e... Titan Relay
14186143 5 3408 1766 +1642 blockdaemon 0xb67eaa5e... BloXroute Max Profit
14180802 1 3346 1706 +1640 blockdaemon 0x8db2a99d... Ultra Sound
14182535 0 3327 1691 +1636 whale_0xba40 0x88a53ec4... Aestus
14183130 2 3354 1721 +1633 blockdaemon 0x850b00e0... BloXroute Max Profit
14186077 0 3322 1691 +1631 blockdaemon 0x8a850621... Titan Relay
14180439 1 3326 1706 +1620 0xb26f9666... Titan Relay
14182044 7 3413 1796 +1617 blockdaemon 0xb4ce6162... Ultra Sound
14184989 0 3306 1691 +1615 blockdaemon 0x8a850621... Ultra Sound
14183071 10 3454 1841 +1613 revolut 0x88a53ec4... BloXroute Max Profit
14183239 2 3333 1721 +1612 blockdaemon_lido 0x8527d16c... Ultra Sound
14184708 0 3303 1691 +1612 blockdaemon 0xb26f9666... Titan Relay
14186281 7 3405 1796 +1609 ether.fi 0x8527d16c... Ultra Sound
14182864 5 3369 1766 +1603 blockdaemon 0x8a850621... Titan Relay
14183733 11 3454 1856 +1598 blockdaemon 0x856b0004... Ultra Sound
14185443 1 3304 1706 +1598 whale_0xdc8d 0x88a53ec4... BloXroute Regulated
14186450 6 3376 1781 +1595 luno 0x853b0078... BloXroute Max Profit
14181833 7 3390 1796 +1594 whale_0xdc8d 0x853b0078... Ultra Sound
14181165 1 3300 1706 +1594 blockdaemon 0x853b0078... Ultra Sound
14180621 2 3314 1721 +1593 blockdaemon 0x857b0038... Ultra Sound
14181404 5 3350 1766 +1584 blockdaemon_lido 0x88857150... Ultra Sound
14186461 1 3288 1706 +1582 0x853b0078... BloXroute Regulated
14180473 9 3406 1826 +1580 blockdaemon 0x8a850621... Titan Relay
14182053 6 3359 1781 +1578 ether.fi 0x8527d16c... Ultra Sound
14180433 5 3343 1766 +1577 blockdaemon 0x853b0078... Ultra Sound
14181050 1 3281 1706 +1575 whale_0xdc8d 0x88857150... Ultra Sound
14182713 2 3295 1721 +1574 blockdaemon 0xb26f9666... Titan Relay
14186851 8 3383 1811 +1572 kiln 0x88857150... Ultra Sound
14182794 9 3395 1826 +1569 revolut 0x88a53ec4... BloXroute Max Profit
14182642 1 3275 1706 +1569 luno 0x88857150... Ultra Sound
14181795 12 3438 1871 +1567 whale_0xdc8d 0xb26f9666... Titan Relay
14181185 1 3273 1706 +1567 p2porg 0x8527d16c... Ultra Sound
14185114 15 3482 1916 +1566 revolut 0x88a53ec4... BloXroute Regulated
14180606 6 3345 1781 +1564 blockdaemon_lido 0x88510a78... BloXroute Regulated
14180498 0 3255 1691 +1564 blockdaemon 0x823e0146... BloXroute Max Profit
14186548 1 3265 1706 +1559 blockdaemon_lido 0x88857150... Ultra Sound
14184209 1 3263 1706 +1557 p2porg 0x857b0038... BloXroute Regulated
14187091 1 3262 1706 +1556 luno 0x823e0146... BloXroute Max Profit
14181660 1 3262 1706 +1556 whale_0xdc8d 0xb26f9666... Titan Relay
14180575 0 3247 1691 +1556 blockdaemon_lido 0x851b00b1... Ultra Sound
14183963 0 3246 1691 +1555 blockdaemon 0x850b00e0... BloXroute Max Profit
14182012 0 3245 1691 +1554 blockdaemon_lido 0x823e0146... Ultra Sound
14182056 3 3289 1736 +1553 blockdaemon_lido 0x8527d16c... Ultra Sound
14184757 5 3317 1766 +1551 p2porg 0x857b0038... BloXroute Regulated
14182645 0 3241 1691 +1550 whale_0xdc8d 0x856b0004... Ultra Sound
14186739 7 3345 1796 +1549 0x856b0004... Ultra Sound
14181503 0 3237 1691 +1546 blockdaemon_lido 0x8527d16c... Ultra Sound
14185117 1 3249 1706 +1543 revolut 0xb26f9666... Titan Relay
14181431 8 3347 1811 +1536 ether.fi 0x856b0004... Ultra Sound
14182249 6 3315 1781 +1534 blockdaemon_lido 0x853b0078... BloXroute Max Profit
14185431 11 3384 1856 +1528 luno 0x88857150... Ultra Sound
14182746 7 3323 1796 +1527 solo_stakers Local Local
14181801 5 3293 1766 +1527 revolut 0xb26f9666... Titan Relay
14186904 0 3216 1691 +1525 whale_0x8914 0xb67eaa5e... Titan Relay
14182274 2 3244 1721 +1523 whale_0xdc8d 0xb67eaa5e... Ultra Sound
14184493 0 3213 1691 +1522 0x805e28e6... Ultra Sound
14187524 3 3256 1736 +1520 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14180513 1 3221 1706 +1515 blockdaemon_lido 0x850b00e0... Ultra Sound
14182158 0 3204 1691 +1513 whale_0x3878 0xb67eaa5e... Aestus
14185479 7 3308 1796 +1512 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14184888 3 3248 1736 +1512 p2porg 0x857b0038... BloXroute Regulated
14181665 6 3288 1781 +1507 blockdaemon_lido 0x850b00e0... Ultra Sound
14182842 0 3198 1691 +1507 stakefish 0x857b0038... BloXroute Regulated
14185026 6 3287 1781 +1506 blockdaemon_lido 0xb26f9666... Titan Relay
14184589 4 3252 1751 +1501 kiln 0xb67eaa5e... BloXroute Max Profit
14185957 7 3296 1796 +1500 blockdaemon_lido 0x850b00e0... Ultra Sound
14183922 1 3202 1706 +1496 bitstamp 0xb67eaa5e... BloXroute Regulated
14183754 0 3187 1691 +1496 whale_0xdc8d 0x853b0078... Ultra Sound
14184718 2 3216 1721 +1495 kiln 0x88857150... Ultra Sound
14186868 1 3201 1706 +1495 whale_0xfd67 0xb67eaa5e... Titan Relay
14182505 6 3275 1781 +1494 blockdaemon 0xb26f9666... Titan Relay
14185994 1 3200 1706 +1494 whale_0x8914 0xb67eaa5e... Titan Relay
14182616 5 3258 1766 +1492 revolut 0xb26f9666... Titan Relay
14183790 6 3271 1781 +1490 blockdaemon 0x856b0004... Ultra Sound
14186603 5 3256 1766 +1490 blockdaemon_lido 0x8db2a99d... BloXroute Max Profit
14184943 6 3267 1781 +1486 everstake 0x857b0038... BloXroute Regulated
14182898 11 3341 1856 +1485 whale_0xdc8d 0xb26f9666... Titan Relay
14183589 1 3188 1706 +1482 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
14182111 2 3199 1721 +1478 revolut 0x8527d16c... Ultra Sound
14181438 0 3169 1691 +1478 gateway.fmas_lido 0xb4ce6162... Ultra Sound
14184985 0 3168 1691 +1477 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
14185399 6 3256 1781 +1475 blockdaemon_lido 0x850b00e0... Ultra Sound
14186896 3 3211 1736 +1475 revolut 0xb26f9666... Titan Relay
14180701 5 3240 1766 +1474 blockdaemon_lido 0x82c466b9... BloXroute Regulated
14185358 1 3180 1706 +1474 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
14183110 7 3266 1796 +1470 blockdaemon 0xb67eaa5e... Ultra Sound
14185350 6 3251 1781 +1470 whale_0x8914 0x88a53ec4... Aestus
14184562 1 3176 1706 +1470 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14182441 6 3249 1781 +1468 blockdaemon 0xb67eaa5e... Titan Relay
14184316 13 3352 1886 +1466 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14184632 4 3217 1751 +1466 whale_0x8ebd 0x850b00e0... Ultra Sound
14184074 2 3184 1721 +1463 blockdaemon 0x856b0004... Ultra Sound
14186234 0 3154 1691 +1463 blockdaemon_lido 0xb26f9666... Titan Relay
14186490 4 3212 1751 +1461 p2porg 0x850b00e0... Ultra Sound
14184337 3 3196 1736 +1460 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14181544 11 3315 1856 +1459 blockdaemon_lido 0xb26f9666... Titan Relay
14186315 3 3194 1736 +1458 blockdaemon 0x853b0078... Ultra Sound
14186399 6 3236 1781 +1455 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14183109 10 3295 1841 +1454 blockdaemon 0xb26f9666... Titan Relay
14187267 0 3140 1691 +1449 whale_0x8ebd 0x851b00b1... BloXroute Max Profit
14184126 5 3210 1766 +1444 solo_stakers 0xb67eaa5e... BloXroute Max Profit
14186706 5 3210 1766 +1444 coinbase 0xb67eaa5e... BloXroute Max Profit
14182284 0 3131 1691 +1440 whale_0x8914 0xb67eaa5e... Titan Relay
14186172 5 3204 1766 +1438 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14187468 0 3129 1691 +1438 p2porg 0x9129eeb4... Ultra Sound
14187475 6 3216 1781 +1435 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14184064 6 3216 1781 +1435 whale_0x8ebd 0x8527d16c... Ultra Sound
14185952 3 3170 1736 +1434 abyss_finance 0xb26f9666... BloXroute Max Profit
14182828 0 3125 1691 +1434 gateway.fmas_lido 0x823e0146... BloXroute Max Profit
14181126 0 3125 1691 +1434 p2porg 0x853b0078... Titan Relay
14186457 0 3124 1691 +1433 gateway.fmas_lido 0x8527d16c... Ultra Sound
14183227 0 3122 1691 +1431 whale_0xc611 0xb67eaa5e... Titan Relay
14181740 3 3165 1736 +1429 gateway.fmas_lido 0x856b0004... Agnostic Gnosis
14183698 2 3150 1721 +1429 whale_0xba40 0x850b00e0... Ultra Sound
14180840 1 3134 1706 +1428 whale_0xfd67 0x8527d16c... Ultra Sound
14186740 0 3119 1691 +1428 gateway.fmas_lido 0x8db2a99d... Flashbots
14185414 6 3208 1781 +1427 whale_0x8914 0x850b00e0... Ultra Sound
14183682 3 3163 1736 +1427 coinbase 0x856b0004... Ultra Sound
14180983 0 3118 1691 +1427 0x88a53ec4... Aestus
14183193 6 3207 1781 +1426 whale_0x8914 0x88a53ec4... Aestus
14185346 8 3236 1811 +1425 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14181333 4 3176 1751 +1425 gateway.fmas_lido 0x8db2a99d... Flashbots
14185420 1 3130 1706 +1424 p2porg 0x850b00e0... BloXroute Regulated
14186750 6 3204 1781 +1423 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14181913 0 3114 1691 +1423 whale_0x8914 0x856b0004... Agnostic Gnosis
14181222 5 3187 1766 +1421 whale_0x8ebd 0x82c466b9... Flashbots
14185586 6 3201 1781 +1420 whale_0xf273 0xb67eaa5e... Titan Relay
14187544 5 3186 1766 +1420 whale_0x8914 0xb67eaa5e... Titan Relay
14186906 5 3186 1766 +1420 p2porg 0x850b00e0... BloXroute Regulated
14182695 2 3141 1721 +1420 gateway.fmas_lido 0x88857150... Ultra Sound
14186343 1 3126 1706 +1420 p2porg 0xb26f9666... Titan Relay
14181218 5 3182 1766 +1416 figment 0xb26f9666... Titan Relay
14184307 1 3122 1706 +1416 everstake 0x8527d16c... Ultra Sound
14181031 1 3121 1706 +1415 0x853b0078... Ultra Sound
14182790 1 3121 1706 +1415 whale_0x8914 0x85fb0503... Ultra Sound
14183862 12 3285 1871 +1414 whale_0x8914 0x850b00e0... Ultra Sound
14184298 4 3165 1751 +1414 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
14181573 1 3115 1706 +1409 whale_0x8ebd 0x8db2a99d... Flashbots
14183994 0 3100 1691 +1409 0xb26f9666... Titan Relay
14183656 5 3173 1766 +1407 p2porg 0x853b0078... Titan Relay
14187088 1 3112 1706 +1406 p2porg 0x856b0004... Ultra Sound
14184040 0 3097 1691 +1406 p2porg 0x850b00e0... BloXroute Regulated
14183874 0 3096 1691 +1405 everstake 0x851b00b1... BloXroute Max Profit
14180559 2 3124 1721 +1403 kiln 0x856b0004... Ultra Sound
14187399 1 3107 1706 +1401 p2porg 0x8db2a99d... Flashbots
14186819 0 3090 1691 +1399 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14182226 6 3179 1781 +1398 gateway.fmas_lido 0x856b0004... BloXroute Max Profit
14183057 1 3104 1706 +1398 whale_0x8ebd 0xb26f9666... Titan Relay
14180510 6 3178 1781 +1397 solo_stakers 0x8527d16c... Ultra Sound
14183715 1 3103 1706 +1397 coinbase 0x856b0004... Ultra Sound
14186223 2 3117 1721 +1396 kiln 0xb26f9666... Titan Relay
14186788 3 3129 1736 +1393 whale_0xedc6 0x856b0004... Ultra Sound
14182711 6 3173 1781 +1392 whale_0x6ddb 0x88a53ec4... BloXroute Max Profit
14182567 5 3157 1766 +1391 gateway.fmas_lido 0xb7c5e609... BloXroute Max Profit
14180711 0 3082 1691 +1391 whale_0x8ebd 0xb26f9666... Titan Relay
14183836 6 3171 1781 +1390 whale_0x8ebd 0x856b0004... Ultra Sound
14186693 4 3141 1751 +1390 kiln 0xb67eaa5e... BloXroute Regulated
14185929 2 3111 1721 +1390 whale_0x8ebd 0x856b0004... Ultra Sound
14187243 1 3096 1706 +1390 coinbase 0x856b0004... Ultra Sound
14184570 5 3155 1766 +1389 stakefish 0x853b0078... BloXroute Max Profit
14187132 2 3108 1721 +1387 whale_0xba40 0x8db2a99d... Agnostic Gnosis
14186630 1 3093 1706 +1387 whale_0x3878 0xb67eaa5e... BloXroute Max Profit
14183063 2 3107 1721 +1386 coinbase 0xb26f9666... Titan Relay
14184671 1 3092 1706 +1386 whale_0x6ddb 0x88a53ec4... BloXroute Max Profit
14183187 6 3166 1781 +1385 figment 0x853b0078... BloXroute Max Profit
14187556 3 3121 1736 +1385 whale_0x8ebd 0x8db2a99d... Flashbots
14185943 2 3104 1721 +1383 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14182282 1 3087 1706 +1381 coinbase 0xb67eaa5e... BloXroute Max Profit
14181538 0 3071 1691 +1380 figment 0xb26f9666... Titan Relay
14185539 4 3130 1751 +1379 figment 0x853b0078... Ultra Sound
14183595 2 3100 1721 +1379 p2porg 0x9129eeb4... Ultra Sound
14183046 0 3068 1691 +1377 whale_0x8ebd 0x8db2a99d... Titan Relay
14184147 1 3081 1706 +1375 blockdaemon_lido 0xb26f9666... Titan Relay
14180866 0 3066 1691 +1375 whale_0x8ebd 0x8db2a99d... Flashbots
14182630 1 3080 1706 +1374 kiln 0x88a53ec4... BloXroute Regulated
14185334 1 3080 1706 +1374 p2porg 0x88857150... Ultra Sound
14182300 5 3139 1766 +1373 coinbase 0xb67eaa5e... Ultra Sound
14180598 1 3079 1706 +1373 whale_0x8ebd 0x856b0004... Ultra Sound
14184521 5 3138 1766 +1372 p2porg 0xb26f9666... BloXroute Max Profit
14181696 3 3108 1736 +1372 whale_0xfd67 0x85fb0503... Ultra Sound
14182579 1 3078 1706 +1372 coinbase 0x856b0004... Ultra Sound
14187341 1 3076 1706 +1370 p2porg 0xb26f9666... BloXroute Regulated
14184709 4 3120 1751 +1369 gateway.fmas_lido 0x856b0004... BloXroute Max Profit
14185767 1 3075 1706 +1369 coinbase 0x853b0078... Ultra Sound
14181216 0 3060 1691 +1369 coinbase 0xb26f9666... Titan Relay
14181907 0 3060 1691 +1369 p2porg 0xb26f9666... BloXroute Regulated
14182172 5 3134 1766 +1368 coinbase 0xb26f9666... Titan Relay
14181389 1 3074 1706 +1368 coinbase 0x856b0004... Ultra Sound
14185675 1 3073 1706 +1367 0x853b0078... Ultra Sound
14181937 6 3147 1781 +1366 whale_0x8914 0xb67eaa5e... Titan Relay
14186626 6 3147 1781 +1366 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14186552 0 3057 1691 +1366 p2porg 0x853b0078... Ultra Sound
14182006 7 3160 1796 +1364 coinbase 0xb26f9666... Titan Relay
14180530 0 3055 1691 +1364 blockdaemon 0x856b0004... Ultra Sound
14183936 0 3051 1691 +1360 coinbase 0xb26f9666... Aestus
14185813 0 3051 1691 +1360 coinbase 0x856b0004... Ultra Sound
14182844 1 3065 1706 +1359 0x856b0004... Ultra Sound
14184131 7 3154 1796 +1358 p2porg 0xb26f9666... Titan Relay
14186420 5 3124 1766 +1358 coinbase 0xb67eaa5e... BloXroute Regulated
14181104 5 3124 1766 +1358 coinbase 0x8527d16c... Ultra Sound
14184449 3 3094 1736 +1358 p2porg 0x853b0078... Ultra Sound
14186529 1 3064 1706 +1358 coinbase 0xb67eaa5e... BloXroute Max Profit
14184090 0 3049 1691 +1358 kiln 0xb26f9666... Titan Relay
14181590 5 3123 1766 +1357 p2porg 0x853b0078... Titan Relay
14185962 1 3063 1706 +1357 p2porg 0x853b0078... Ultra Sound
14185951 6 3137 1781 +1356 solo_stakers 0xb67eaa5e... BloXroute Regulated
14183997 4 3107 1751 +1356 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14182631 1 3062 1706 +1356 kiln 0x88a53ec4... BloXroute Max Profit
14180508 0 3047 1691 +1356 coinbase 0x856b0004... Ultra Sound
14185603 0 3046 1691 +1355 whale_0xedc6 0x9129eeb4... Agnostic Gnosis
14187378 0 3045 1691 +1354 p2porg 0x82c466b9... Flashbots
14183184 1 3059 1706 +1353 0x8db2a99d... Ultra Sound
14183672 0 3044 1691 +1353 whale_0x8ebd 0x856b0004... Ultra Sound
14182103 0 3043 1691 +1352 0x856b0004... BloXroute Max Profit
14185354 2 3072 1721 +1351 p2porg 0x853b0078... Titan Relay
14185029 1 3057 1706 +1351 p2porg 0x853b0078... BloXroute Max Profit
14180812 0 3042 1691 +1351 p2porg 0x853b0078... Agnostic Gnosis
14180656 0 3042 1691 +1351 p2porg 0x805e28e6... Flashbots
14184610 5 3116 1766 +1350 coinbase 0x850b00e0... BloXroute Max Profit
14186337 2 3071 1721 +1350 coinbase 0x853b0078... Ultra Sound
14182549 1 3056 1706 +1350 kiln 0xb67eaa5e... BloXroute Regulated
14184540 1 3055 1706 +1349 0x856b0004... Ultra Sound
14185665 1 3055 1706 +1349 p2porg 0xb67eaa5e... Aestus
14186295 1 3055 1706 +1349 p2porg 0x8db2a99d... Flashbots
14186783 5 3113 1766 +1347 p2porg 0x8527d16c... Ultra Sound
14182163 0 3038 1691 +1347 p2porg 0x85fb0503... Aestus
14181212 8 3157 1811 +1346 blockdaemon 0x856b0004... Ultra Sound
14186007 2 3067 1721 +1346 0xb26f9666... BloXroute Regulated
14181010 6 3123 1781 +1342 p2porg 0x853b0078... Ultra Sound
14181908 2 3062 1721 +1341 figment 0x8db2a99d... Ultra Sound
14184929 0 3032 1691 +1341 gateway.fmas_lido 0x851b00b1... BloXroute Max Profit
14182929 11 3196 1856 +1340 p2porg 0xb26f9666... Titan Relay
14184594 8 3151 1811 +1340 p2porg 0x823e0146... BloXroute Max Profit
14186685 3 3076 1736 +1340 kiln 0x853b0078... BloXroute Max Profit
14180659 0 3031 1691 +1340 0xb26f9666... Titan Relay
14183166 3 3075 1736 +1339 p2porg 0xb26f9666... BloXroute Regulated
14185918 3 3074 1736 +1338 whale_0x8ebd 0x853b0078... Ultra Sound
14184659 0 3029 1691 +1338 p2porg 0x851b00b1... BloXroute Max Profit
14181723 0 3028 1691 +1337 p2porg 0x8527d16c... Ultra Sound
14187498 1 3042 1706 +1336 coinbase 0xb67eaa5e... Ultra Sound
14187541 0 3026 1691 +1335 whale_0x8ebd 0xb67eaa5e... Ultra Sound
14183927 0 3025 1691 +1334 kiln 0x88a53ec4... BloXroute Regulated
14184919 11 3189 1856 +1333 p2porg 0xb26f9666... Titan Relay
14181249 6 3114 1781 +1333 whale_0x8ebd 0xb26f9666... Titan Relay
14185606 6 3114 1781 +1333 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14182615 1 3039 1706 +1333 p2porg 0x853b0078... BloXroute Max Profit
14183164 0 3024 1691 +1333 p2porg 0x83d6a6ab... Flashbots
14180776 11 3188 1856 +1332 whale_0x8ebd 0x8a850621... BloXroute Max Profit
14184162 3 3068 1736 +1332 p2porg 0x853b0078... BloXroute Max Profit
14183752 0 3023 1691 +1332 coinbase 0x926b7905... BloXroute Max Profit
14181272 0 3023 1691 +1332 coinbase 0xb26f9666... Titan Relay
14181163 4 3081 1751 +1330 coinbase 0x856b0004... Ultra Sound
14181825 2 3051 1721 +1330 0x853b0078... Ultra Sound
14181644 6 3110 1781 +1329 p2porg 0xb26f9666... Titan Relay
14182809 1 3035 1706 +1329 whale_0x8ebd 0x8527d16c... Ultra Sound
14181295 0 3020 1691 +1329 coinbase 0x856b0004... Agnostic Gnosis
14186079 6 3109 1781 +1328 whale_0x8ebd 0x853b0078... Ultra Sound
14184081 6 3108 1781 +1327 coinbase 0xb26f9666... Titan Relay
14182968 0 3018 1691 +1327 kiln 0x823e0146... Flashbots
14183621 0 3018 1691 +1327 whale_0x8ebd 0x853b0078... Ultra Sound
14180955 3 3062 1736 +1326 whale_0x8ebd 0x88857150... Ultra Sound
14180429 0 3017 1691 +1326 coinbase 0x856b0004... Ultra Sound
14183123 5 3090 1766 +1324 p2porg 0xb26f9666... BloXroute Max Profit
14181959 2 3044 1721 +1323 0xb26f9666... BloXroute Regulated
14186752 1 3028 1706 +1322 everstake 0x8db2a99d... Flashbots
14181243 3 3057 1736 +1321 kiln 0xb26f9666... BloXroute Regulated
14181211 5 3086 1766 +1320 coinbase 0xb26f9666... Titan Relay
14186046 3 3056 1736 +1320 kiln 0xb26f9666... BloXroute Regulated
14183434 2 3040 1721 +1319 0x85fb0503... Aestus
14184095 0 3010 1691 +1319 coinbase 0xb26f9666... Titan Relay
14183967 5 3082 1766 +1316 coinbase 0x856b0004... Ultra Sound
14180576 5 3082 1766 +1316 whale_0x8ebd Local Local
14182892 0 3007 1691 +1316 coinbase 0x850b00e0... BloXroute Max Profit
14182018 0 3007 1691 +1316 everstake 0x83cae7e5... Titan Relay
14186122 1 3021 1706 +1315 coinbase 0x856b0004... Ultra Sound
14184956 0 3005 1691 +1314 whale_0x8ebd Local Local
14180612 0 3005 1691 +1314 coinbase 0xb26f9666... Titan Relay
14185604 8 3124 1811 +1313 p2porg 0x853b0078... Ultra Sound
14180745 3 3048 1736 +1312 whale_0x8ebd 0x8527d16c... Ultra Sound
14186617 1 3018 1706 +1312 kiln 0x8db2a99d... BloXroute Max Profit
14186045 0 3003 1691 +1312 whale_0x8ebd 0x853b0078... Ultra Sound
14181016 0 3003 1691 +1312 whale_0x8ebd 0x853b0078... Ultra Sound
14180420 0 3003 1691 +1312 coinbase 0xb26f9666... Aestus
14187422 8 3122 1811 +1311 kiln 0x853b0078... Ultra Sound
14181526 2 3032 1721 +1311 whale_0x8ebd 0x856b0004... Ultra Sound
14185057 0 3002 1691 +1311 whale_0x8ebd 0x9129eeb4... Agnostic Gnosis
14183079 1 3016 1706 +1310 coinbase 0x85fb0503... Aestus
14182816 1 3016 1706 +1310 coinbase 0x8db2a99d... Ultra Sound
14185700 6 3090 1781 +1309 coinbase 0x853b0078... Ultra Sound
14185383 2 3030 1721 +1309 whale_0x8ebd 0x823e0146... Flashbots
14185626 1 3015 1706 +1309 kiln 0xb67eaa5e... BloXroute Max Profit
14186333 10 3149 1841 +1308 p2porg 0x853b0078... Ultra Sound
14183771 4 3058 1751 +1307 whale_0x8ebd 0x853b0078... Titan Relay
14181124 5 3072 1766 +1306 p2porg 0xb67eaa5e... Aestus
14183148 6 3086 1781 +1305 coinbase 0x856b0004... BloXroute Max Profit
14186276 1 3011 1706 +1305 whale_0x8ebd Local Local
14184115 1 3011 1706 +1305 kiln 0xb67eaa5e... BloXroute Max Profit
14185974 1 3010 1706 +1304 kiln 0xb67eaa5e... BloXroute Regulated
14187276 12 3173 1871 +1302 kiln 0x850b00e0... BloXroute Max Profit
14187459 1 3008 1706 +1302 stader 0x853b0078... BloXroute Max Profit
14187214 1 3008 1706 +1302 coinbase 0x8db2a99d... Flashbots
14187393 1 3008 1706 +1302 kraken 0xb26f9666... EthGas
14187301 0 2993 1691 +1302 kiln 0x8527d16c... Ultra Sound
14183779 1 3006 1706 +1300 everstake 0x853b0078... Ultra Sound
14184029 0 2990 1691 +1299 whale_0x8ebd 0x850b00e0... Flashbots
14185915 5 3064 1766 +1298 coinbase 0x8527d16c... Ultra Sound
14181423 4 3049 1751 +1298 whale_0x8ebd 0xb26f9666... Titan Relay
14180743 1 3003 1706 +1297 kiln 0xb26f9666... Titan Relay
14183677 0 2987 1691 +1296 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14185190 0 2987 1691 +1296 coinbase 0x88857150... Ultra Sound
14186235 6 3076 1781 +1295 whale_0x8ebd 0xb26f9666... Titan Relay
14185830 1 3001 1706 +1295 whale_0x8ebd 0x856b0004... Ultra Sound
14183268 6 3075 1781 +1294 coinbase 0x856b0004... Ultra Sound
14180849 2 3015 1721 +1294 kiln 0x853b0078... Ultra Sound
14182394 1 2999 1706 +1293 kiln 0xb67eaa5e... BloXroute Max Profit
14180904 5 3058 1766 +1292 0xb26f9666... BloXroute Max Profit
14180538 5 3058 1766 +1292 whale_0x8ebd 0x856b0004... Ultra Sound
14184502 3 3028 1736 +1292 p2porg 0xb26f9666... BloXroute Max Profit
14185278 1 2998 1706 +1292 coinbase 0x856b0004... BloXroute Max Profit
Total anomalies: 375

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