Fri, Apr 3, 2026

Propagation anomalies - 2026-04-03

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-03' AND slot_start_date_time < '2026-04-03'::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-03' AND slot_start_date_time < '2026-04-03'::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-03' AND slot_start_date_time < '2026-04-03'::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-03' AND slot_start_date_time < '2026-04-03'::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-03' AND slot_start_date_time < '2026-04-03'::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-03' AND slot_start_date_time < '2026-04-03'::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-03' AND slot_start_date_time < '2026-04-03'::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-03' AND slot_start_date_time < '2026-04-03'::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,182
MEV blocks: 6,601 (91.9%)
Local blocks: 581 (8.1%)

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 = 1670.0 + 19.19 × blob_count (R² = 0.012)
Residual σ = 593.8ms
Anomalies (>2σ slow): 476 (6.6%)
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
14032417 6 8283 1785 +6498 solo_stakers Local Local
14029664 0 5215 1670 +3545 blockdaemon_lido Local Local
14032416 0 4822 1670 +3152 rocklogicgmbh_lido Local Local
14034976 3 4684 1728 +2956 upbit Local Local
14030817 0 4153 1670 +2483 whale_0x3212 Local Local
14036296 0 4025 1670 +2355 whale_0x8ebd Local Local
14033595 2 3683 1708 +1975 whale_0x8ebd 0x856b0004... Ultra Sound
14033753 6 3759 1785 +1974 whale_0x8ebd 0x856b0004... Agnostic Gnosis
14032309 0 3592 1670 +1922 solo_stakers 0xac23f8cc... Ultra Sound
14032785 6 3691 1785 +1906 whale_0x8ebd 0x856b0004... Agnostic Gnosis
14029984 0 3535 1670 +1865 stakefish 0x85fb0503... Ultra Sound
14029216 5 3618 1766 +1852 solo_stakers Local Local
14029366 0 3497 1670 +1827 whale_0x8ebd 0xb5a65d00... Ultra Sound
14034347 3 3550 1728 +1822 nethermind_lido 0x88857150... Ultra Sound
14032483 1 3507 1689 +1818 ether.fi 0x8527d16c... Ultra Sound
14030818 9 3656 1843 +1813 piertwo Local Local
14032841 0 3465 1670 +1795 blockdaemon_lido 0x855b00e6... Ultra Sound
14031662 0 3454 1670 +1784 blockdaemon_lido 0x823e0146... Ultra Sound
14032404 0 3432 1670 +1762 blockdaemon 0x88857150... Ultra Sound
14032594 5 3523 1766 +1757 ether.fi Local Local
14036301 0 3427 1670 +1757 blockdaemon_lido 0x8527d16c... Ultra Sound
14034368 6 3539 1785 +1754 blockdaemon_lido 0xb67eaa5e... Titan Relay
14032995 1 3439 1689 +1750 nethermind_lido 0x8527d16c... Ultra Sound
14034367 0 3412 1670 +1742 nethermind_lido 0x856b0004... Agnostic Gnosis
14035263 2 3443 1708 +1735 nethermind_lido 0x9129eeb4... Ultra Sound
14034244 6 3515 1785 +1730 nethermind_lido 0x8527d16c... Ultra Sound
14029712 1 3419 1689 +1730 ether.fi 0x853b0078... Ultra Sound
14035080 0 3398 1670 +1728 blockdaemon 0x8a850621... Titan Relay
14035465 0 3393 1670 +1723 nethermind_lido 0x8527d16c... Ultra Sound
14031201 3 3449 1728 +1721 blockdaemon 0x88857150... Ultra Sound
14031498 5 3483 1766 +1717 ether.fi 0x8527d16c... Ultra Sound
14034949 6 3492 1785 +1707 nethermind_lido 0x856b0004... Agnostic Gnosis
14029967 4 3452 1747 +1705 ether.fi 0x8db2a99d... Flashbots
14035326 0 3369 1670 +1699 ether.fi 0xb26f9666... Titan Relay
14029478 0 3369 1670 +1699 blockdaemon 0x88857150... Ultra Sound
14033559 0 3368 1670 +1698 blockdaemon_lido 0xb67eaa5e... Titan Relay
14034283 6 3481 1785 +1696 ether.fi 0x8527d16c... Ultra Sound
14032964 1 3378 1689 +1689 blockdaemon 0x8527d16c... Ultra Sound
14035505 5 3444 1766 +1678 nethermind_lido 0x8db2a99d... Aestus
14033243 1 3367 1689 +1678 solo_stakers 0x855b00e6... Ultra Sound
14029529 5 3442 1766 +1676 nethermind_lido 0x853b0078... Agnostic Gnosis
14033950 0 3341 1670 +1671 blockdaemon 0xb26f9666... Titan Relay
14034922 0 3336 1670 +1666 whale_0x8ebd 0xb4ce6162... Ultra Sound
14035269 9 3495 1843 +1652 nethermind_lido 0x8527d16c... Ultra Sound
14032613 0 3321 1670 +1651 coinbase 0x88a53ec4... Aestus
14034472 5 3408 1766 +1642 ether.fi 0x850b00e0... Flashbots
14033381 0 3309 1670 +1639 blockdaemon_lido 0xb67eaa5e... Titan Relay
14034977 0 3304 1670 +1634 figment Local Local
14036294 6 3418 1785 +1633 blockdaemon 0x850b00e0... Ultra Sound
14029297 5 3396 1766 +1630 nethermind_lido 0x853b0078... Aestus
14031146 0 3296 1670 +1626 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14032329 1 3314 1689 +1625 blockdaemon 0x88a53ec4... BloXroute Regulated
14035188 6 3409 1785 +1624 blockdaemon 0x8a850621... Titan Relay
14031273 8 3445 1824 +1621 nethermind_lido 0x856b0004... Agnostic Gnosis
14033572 0 3290 1670 +1620 blockdaemon 0x88a53ec4... BloXroute Regulated
14033492 1 3307 1689 +1618 blockdaemon 0xb26f9666... Titan Relay
14032796 1 3307 1689 +1618 ether.fi 0x8db2a99d... BloXroute Max Profit
14033888 1 3304 1689 +1615 p2porg 0xb26f9666... BloXroute Regulated
14034144 1 3300 1689 +1611 stakingfacilities_lido 0x8db2a99d... Flashbots
14030867 2 3318 1708 +1610 blockdaemon 0x855b00e6... BloXroute Max Profit
14033724 0 3278 1670 +1608 whale_0xdc8d 0xb67eaa5e... BloXroute Regulated
14033107 2 3315 1708 +1607 blockdaemon 0xb26f9666... Titan Relay
14032303 5 3371 1766 +1605 whale_0xdc8d 0x850b00e0... BloXroute Regulated
14035517 0 3275 1670 +1605 0xb26f9666... Titan Relay
14032016 1 3294 1689 +1605 blockdaemon 0xb67eaa5e... BloXroute Regulated
14035073 0 3274 1670 +1604 p2porg 0x8527d16c... Ultra Sound
14029926 11 3485 1881 +1604 ether.fi 0x855b00e6... BloXroute Max Profit
14029444 6 3389 1785 +1604 nethermind_lido 0xb5a65d00... Aestus
14032843 6 3386 1785 +1601 blockdaemon 0x82c466b9... Ultra Sound
14029384 1 3290 1689 +1601 0x9129eeb4... Ultra Sound
14029365 5 3364 1766 +1598 revolut 0xa965c911... Ultra Sound
14031859 0 3267 1670 +1597 blockdaemon_lido 0xb67eaa5e... Titan Relay
14030181 6 3381 1785 +1596 ether.fi 0xb67eaa5e... Ultra Sound
14034199 6 3377 1785 +1592 blockdaemon 0x853b0078... Ultra Sound
14029816 1 3278 1689 +1589 blockdaemon 0xac23f8cc... BloXroute Max Profit
14034816 10 3447 1862 +1585 bitstamp 0x88857150... Ultra Sound
14031012 0 3254 1670 +1584 whale_0xdc8d 0xba003e46... BloXroute Regulated
14031410 0 3253 1670 +1583 blockdaemon_lido 0xa965c911... Ultra Sound
14033548 0 3247 1670 +1577 blockdaemon_lido 0x8527d16c... Ultra Sound
14034590 3 3304 1728 +1576 0xb26f9666... Titan Relay
14030705 0 3246 1670 +1576 blockdaemon 0x823e0146... BloXroute Max Profit
14033824 1 3264 1689 +1575 p2porg 0xb26f9666... Titan Relay
14031503 5 3336 1766 +1570 whale_0xdc8d 0xb67eaa5e... BloXroute Max Profit
14032517 11 3451 1881 +1570 nethermind_lido 0x856b0004... Aestus
14031330 12 3467 1900 +1567 p2porg 0x8db2a99d... Ultra Sound
14032399 5 3330 1766 +1564 blockdaemon 0x855b00e6... BloXroute Max Profit
14032364 0 3234 1670 +1564 csm_operator124_lido Local Local
14033423 5 3328 1766 +1562 whale_0xdc8d 0x853b0078... Ultra Sound
14029561 1 3250 1689 +1561 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14032165 10 3421 1862 +1559 blockdaemon 0xb4ce6162... Ultra Sound
14029848 6 3344 1785 +1559 blockdaemon 0xb67eaa5e... BloXroute Regulated
14036067 3 3284 1728 +1556 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14033148 0 3223 1670 +1553 blockdaemon_lido 0x82c466b9... Ultra Sound
14032272 0 3222 1670 +1552 csm_operator124_lido Local Local
14032247 1 3241 1689 +1552 blockdaemon_lido 0xb67eaa5e... Titan Relay
14032352 5 3316 1766 +1550 whale_0x8ebd 0x856b0004... Aestus
14034524 0 3219 1670 +1549 revolut 0x853b0078... Ultra Sound
14035867 0 3214 1670 +1544 whale_0xdc8d 0x88510a78... Ultra Sound
14033236 2 3251 1708 +1543 figment 0x8527d16c... Ultra Sound
14034434 3 3267 1728 +1539 gateway.fmas_lido 0x855b00e6... BloXroute Max Profit
14031352 1 3223 1689 +1534 p2porg 0x850b00e0... Flashbots
14033812 18 3541 2015 +1526 revolut 0xb67eaa5e... BloXroute Regulated
14030630 5 3291 1766 +1525 blockdaemon 0x8527d16c... Ultra Sound
14031712 0 3190 1670 +1520 p2porg 0x850b00e0... BloXroute Regulated
14030250 0 3188 1670 +1518 blockdaemon_lido 0x851b00b1... BloXroute Max Profit
14032636 6 3303 1785 +1518 blockdaemon_lido 0x8527d16c... Ultra Sound
14034585 9 3356 1843 +1513 p2porg 0x850b00e0... Ultra Sound
14029679 6 3297 1785 +1512 figment 0xb67eaa5e... BloXroute Max Profit
14031449 10 3372 1862 +1510 p2porg 0x8527d16c... Ultra Sound
14033549 1 3199 1689 +1510 whale_0x8ebd 0x8527d16c... Ultra Sound
14031318 0 3172 1670 +1502 blockdaemon 0xb67eaa5e... BloXroute Regulated
14036139 6 3286 1785 +1501 whale_0x8ebd 0xb4ce6162... Ultra Sound
14032470 0 3169 1670 +1499 revolut 0x8527d16c... Ultra Sound
14030636 7 3303 1804 +1499 p2porg 0x850b00e0... BloXroute Regulated
14035966 3 3226 1728 +1498 p2porg 0x8527d16c... Ultra Sound
14029222 4 3245 1747 +1498 stakingfacilities_lido 0x853b0078... Aestus
14030590 5 3261 1766 +1495 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14033466 3 3222 1728 +1494 blockdaemon_lido 0x8527d16c... Ultra Sound
14031088 4 3237 1747 +1490 whale_0x8ebd 0xb4ce6162... Ultra Sound
14035037 0 3157 1670 +1487 coinbase 0x8527d16c... Ultra Sound
14030582 0 3156 1670 +1486 p2porg 0xb26f9666... Titan Relay
14032859 6 3271 1785 +1486 blockdaemon_lido 0x8527d16c... Ultra Sound
14032576 6 3270 1785 +1485 ether.fi 0x88a53ec4... BloXroute Max Profit
14031651 1 3172 1689 +1483 blockdaemon 0x8527d16c... Ultra Sound
14034488 1 3167 1689 +1478 p2porg 0x855b00e6... BloXroute Max Profit
14032856 1 3163 1689 +1474 p2porg 0x850b00e0... BloXroute Regulated
14033330 1 3159 1689 +1470 blockdaemon 0x8527d16c... Ultra Sound
14029992 7 3273 1804 +1469 p2porg 0x850b00e0... BloXroute Regulated
14031991 0 3137 1670 +1467 p2porg 0x850b00e0... BloXroute Regulated
14031528 8 3286 1824 +1462 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
14030528 0 3131 1670 +1461 p2porg 0x823e0146... BloXroute Regulated
14030851 8 3284 1824 +1460 p2porg 0xb67eaa5e... BloXroute Regulated
14030624 1 3149 1689 +1460 p2porg 0x853b0078... Aestus
14032291 0 3128 1670 +1458 whale_0x8ebd 0xb26f9666... Titan Relay
14031733 5 3221 1766 +1455 kiln 0x855b00e6... Flashbots
14030381 0 3124 1670 +1454 0x850b00e0... BloXroute Max Profit
14032851 6 3237 1785 +1452 blockdaemon_lido 0x88a53ec4... BloXroute Regulated
14032541 6 3235 1785 +1450 p2porg 0x850b00e0... BloXroute Regulated
14031262 2 3158 1708 +1450 p2porg 0x850b00e0... Flashbots
14031685 5 3214 1766 +1448 p2porg 0x850b00e0... BloXroute Max Profit
14033742 0 3117 1670 +1447 kiln 0xb26f9666... Titan Relay
14031046 1 3136 1689 +1447 figment 0x855b00e6... BloXroute Max Profit
14033220 0 3114 1670 +1444 0x850b00e0... BloXroute Regulated
14029255 0 3114 1670 +1444 whale_0x8ebd 0x85fb0503... Aestus
14034802 0 3114 1670 +1444 p2porg 0xb26f9666... Titan Relay
14031668 6 3227 1785 +1442 p2porg 0x855b00e6... BloXroute Max Profit
14035934 0 3109 1670 +1439 gateway.fmas_lido 0x8527d16c... Ultra Sound
14030899 0 3109 1670 +1439 p2porg 0xb26f9666... Titan Relay
14035424 0 3109 1670 +1439 whale_0x8ebd 0x8527d16c... Ultra Sound
14035278 1 3128 1689 +1439 gateway.fmas_lido 0x8527d16c... Ultra Sound
14034349 5 3204 1766 +1438 whale_0xedc6 0x853b0078... Aestus
14034360 4 3184 1747 +1437 p2porg 0x855b00e6... BloXroute Max Profit
14035291 2 3145 1708 +1437 whale_0x8ebd 0xb26f9666... Titan Relay
14034811 0 3104 1670 +1434 whale_0x8ebd 0x8a850621... Titan Relay
14034703 1 3123 1689 +1434 p2porg 0x88a53ec4... BloXroute Regulated
14033040 0 3102 1670 +1432 stakingfacilities_lido 0x805e28e6... BloXroute Regulated
14032744 0 3101 1670 +1431 p2porg 0xb26f9666... Titan Relay
14033290 0 3098 1670 +1428 kiln 0xac23f8cc... Flashbots
14033329 0 3097 1670 +1427 coinbase 0xb67eaa5e... BloXroute Max Profit
14033945 1 3116 1689 +1427 p2porg 0xb26f9666... Titan Relay
14032875 5 3190 1766 +1424 stakingfacilities_lido 0xb26f9666... Titan Relay
14031749 3 3151 1728 +1423 everstake 0x8527d16c... Ultra Sound
14035882 4 3169 1747 +1422 p2porg 0xb26f9666... Titan Relay
14031641 6 3207 1785 +1422 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14031544 0 3091 1670 +1421 p2porg 0x823e0146... Aestus
14034818 10 3282 1862 +1420 p2porg 0x850b00e0... BloXroute Regulated
14030825 0 3086 1670 +1416 kiln 0x87d7fb5c... Flashbots
14034348 4 3157 1747 +1410 p2porg 0x88a53ec4... BloXroute Regulated
14032400 5 3176 1766 +1410 0x850b00e0... Flashbots
14033695 1 3098 1689 +1409 p2porg 0x850b00e0... BloXroute Regulated
14034209 0 3077 1670 +1407 gateway.fmas_lido 0x8527d16c... Ultra Sound
14035360 1 3096 1689 +1407 whale_0x8ebd 0x8db2a99d... Ultra Sound
14029217 0 3073 1670 +1403 coinbase 0x88a53ec4... BloXroute Max Profit
14034550 1 3090 1689 +1401 coinbase 0x8db2a99d... Ultra Sound
14036318 7 3205 1804 +1401 p2porg 0x850b00e0... BloXroute Max Profit
14030312 1 3089 1689 +1400 whale_0xc541 0x85fb0503... Ultra Sound
14032998 3 3125 1728 +1397 coinbase 0xb26f9666... Titan Relay
14031118 4 3144 1747 +1397 figment 0x853b0078... Aestus
14030967 2 3104 1708 +1396 kiln 0x88a53ec4... BloXroute Regulated
14030239 8 3218 1824 +1394 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14033598 0 3063 1670 +1393 p2porg 0xb26f9666... Aestus
14032896 0 3063 1670 +1393 coinbase 0x8527d16c... Ultra Sound
14035469 5 3157 1766 +1391 blockdaemon_lido 0x8527d16c... Ultra Sound
14030337 1 3077 1689 +1388 whale_0x23be 0x85fb0503... Aestus
14030527 0 3056 1670 +1386 0xb26f9666... BloXroute Max Profit
14033059 1 3074 1689 +1385 whale_0x8ebd 0x8527d16c... Ultra Sound
14030417 0 3054 1670 +1384 p2porg 0x850b00e0... BloXroute Max Profit
14030798 1 3073 1689 +1384 whale_0x8ebd 0x88857150... Ultra Sound
14036054 5 3148 1766 +1382 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14034765 5 3147 1766 +1381 coinbase 0x8527d16c... Ultra Sound
14031375 6 3166 1785 +1381 blockdaemon_lido 0x8527d16c... Ultra Sound
14036336 4 3127 1747 +1380 bitstamp 0x8527d16c... Ultra Sound
14035735 0 3049 1670 +1379 0x856b0004... Agnostic Gnosis
14034670 1 3068 1689 +1379 kiln 0x853b0078... Agnostic Gnosis
14035335 1 3067 1689 +1378 figment 0x8527d16c... Ultra Sound
14031520 2 3085 1708 +1377 0xb67eaa5e... BloXroute Max Profit
14031283 5 3141 1766 +1375 kiln 0x8db2a99d... BloXroute Max Profit
14029424 5 3140 1766 +1374 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
14030144 0 3044 1670 +1374 ether.fi 0x851b00b1... BloXroute Max Profit
14032738 1 3063 1689 +1374 p2porg 0xac23f8cc... Flashbots
14036268 5 3139 1766 +1373 figment 0x8527d16c... Ultra Sound
14031270 1 3061 1689 +1372 p2porg 0x856b0004... Ultra Sound
14032192 2 3078 1708 +1370 coinbase 0xb67eaa5e... BloXroute Max Profit
14031145 6 3154 1785 +1369 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14030343 2 3077 1708 +1369 p2porg 0x850b00e0... BloXroute Max Profit
14031014 0 3036 1670 +1366 coinbase 0x823e0146... Ultra Sound
14030249 0 3035 1670 +1365 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
14034911 6 3150 1785 +1365 blockdaemon_lido 0xb26f9666... Titan Relay
14034514 0 3034 1670 +1364 whale_0xedc6 0x823e0146... Flashbots
14035179 1 3052 1689 +1363 whale_0x8ebd 0x856b0004... Agnostic Gnosis
14029370 0 3032 1670 +1362 p2porg 0xb26f9666... BloXroute Max Profit
14032688 13 3281 1919 +1362 p2porg 0x850b00e0... BloXroute Regulated
14031742 6 3146 1785 +1361 coinbase 0xb26f9666... Titan Relay
14029757 5 3126 1766 +1360 kiln 0xb67eaa5e... BloXroute Max Profit
14031929 6 3145 1785 +1360 whale_0x8ebd 0xb4ce6162... Ultra Sound
14031025 4 3104 1747 +1357 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14034447 1 3046 1689 +1357 coinbase 0x8db2a99d... Ultra Sound
14031891 2 3063 1708 +1355 coinbase 0x8527d16c... Ultra Sound
14031923 4 3100 1747 +1353 kiln 0xb26f9666... Aestus
14035658 5 3119 1766 +1353 0x850b00e0... BloXroute Max Profit
14032061 2 3059 1708 +1351 kiln 0x855b00e6... BloXroute Max Profit
14032961 5 3115 1766 +1349 figment 0xb26f9666... Titan Relay
14034501 5 3115 1766 +1349 everstake 0x850b00e0... BloXroute Max Profit
14034245 1 3038 1689 +1349 coinbase 0x853b0078... Agnostic Gnosis
14035337 3 3076 1728 +1348 p2porg 0x856b0004... Agnostic Gnosis
14034674 3 3076 1728 +1348 p2porg 0xb26f9666... BloXroute Regulated
14034239 3 3075 1728 +1347 coinbase 0x856b0004... Aestus
14030943 2 3054 1708 +1346 0x856b0004... Aestus
14029274 0 3015 1670 +1345 kiln 0xb67eaa5e... BloXroute Regulated
14029207 6 3130 1785 +1345 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14032695 11 3225 1881 +1344 blockdaemon_lido 0x88857150... Ultra Sound
14031351 6 3129 1785 +1344 p2porg 0xb26f9666... Titan Relay
14034059 5 3108 1766 +1342 p2porg 0x853b0078... Titan Relay
14033072 0 3012 1670 +1342 everstake 0x8db2a99d... Flashbots
14030766 6 3127 1785 +1342 whale_0xd07d 0xb67eaa5e... BloXroute Max Profit
14030997 2 3050 1708 +1342 p2porg 0x856b0004... Agnostic Gnosis
14032469 9 3184 1843 +1341 whale_0x8ebd 0x8527d16c... Ultra Sound
14030686 0 3011 1670 +1341 p2porg 0xb26f9666... BloXroute Max Profit
14032936 0 3011 1670 +1341 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14032490 8 3164 1824 +1340 p2porg 0xac23f8cc... BloXroute Max Profit
14029828 6 3125 1785 +1340 p2porg 0xb26f9666... Titan Relay
14035938 5 3105 1766 +1339 p2porg 0xb26f9666... BloXroute Max Profit
14033659 0 3008 1670 +1338 whale_0x8ebd 0x83bee517... Flashbots
14030270 3 3064 1728 +1336 p2porg 0x85fb0503... Aestus
14032814 0 3006 1670 +1336 kiln 0xb67eaa5e... BloXroute Regulated
14035029 2 3044 1708 +1336 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14035957 5 3101 1766 +1335 figment 0xb26f9666... Titan Relay
14032926 8 3157 1824 +1333 whale_0x8ebd 0x853b0078... Agnostic Gnosis
14033368 5 3096 1766 +1330 kiln 0x88a53ec4... BloXroute Max Profit
14033609 5 3096 1766 +1330 p2porg 0x823e0146... Ultra Sound
14035616 5 3095 1766 +1329 blockdaemon 0x8527d16c... Ultra Sound
14029662 3 3056 1728 +1328 kiln 0x88a53ec4... BloXroute Regulated
14029385 3 3055 1728 +1327 0x856b0004... Agnostic Gnosis
14031104 0 2997 1670 +1327 0x8db2a99d... Ultra Sound
14029476 4 3073 1747 +1326 0xb5a65d00... Ultra Sound
14030914 0 2995 1670 +1325 coinbase 0x856b0004... Agnostic Gnosis
14031237 4 3070 1747 +1323 p2porg 0xb26f9666... Titan Relay
14032136 1 3011 1689 +1322 kiln 0xb67eaa5e... BloXroute Max Profit
14031775 6 3106 1785 +1321 p2porg 0x853b0078... Aestus
14032054 1 3008 1689 +1319 kiln 0xb67eaa5e... BloXroute Max Profit
14035546 5 3084 1766 +1318 kiln 0xb67eaa5e... BloXroute Max Profit
14031316 0 2988 1670 +1318 p2porg 0x805e28e6... Flashbots
14033227 5 3083 1766 +1317 coinbase 0x853b0078... Aestus
14034292 5 3081 1766 +1315 whale_0x8ebd 0xb26f9666... Titan Relay
14031032 5 3081 1766 +1315 p2porg 0x823e0146... Aestus
14035247 1 3004 1689 +1315 coinbase 0x8527d16c... Ultra Sound
14032091 12 3215 1900 +1315 p2porg 0x8527d16c... Ultra Sound
14035203 9 3157 1843 +1314 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14033119 5 3080 1766 +1314 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14035744 0 2984 1670 +1314 solo_stakers 0xb26f9666... Aestus
14036335 1 3002 1689 +1313 coinbase 0x8527d16c... Ultra Sound
14032379 0 2982 1670 +1312 whale_0x8ebd 0x856b0004... Agnostic Gnosis
14031102 0 2978 1670 +1308 kiln 0x8db2a99d... Aestus
14031511 0 2977 1670 +1307 kiln 0x8db2a99d... Ultra Sound
14035252 0 2977 1670 +1307 kiln 0x88a53ec4... BloXroute Max Profit
14033272 2 3015 1708 +1307 coinbase 0xb26f9666... BloXroute Regulated
14031829 3 3033 1728 +1305 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14033045 5 3070 1766 +1304 coinbase 0xb67eaa5e... BloXroute Max Profit
14032799 5 3066 1766 +1300 coinbase 0x8527d16c... Ultra Sound
14034835 0 2970 1670 +1300 kiln 0xb26f9666... Titan Relay
14034747 7 3104 1804 +1300 p2porg 0x853b0078... Aestus
14031464 5 3065 1766 +1299 p2porg 0xb26f9666... BloXroute Max Profit
14032849 4 3045 1747 +1298 coinbase 0xb26f9666... Titan Relay
14031770 5 3064 1766 +1298 whale_0x8ebd 0x856b0004... Ultra Sound
14029243 5 3063 1766 +1297 kiln 0x85fb0503... Aestus
14032864 0 2966 1670 +1296 everstake 0x88a53ec4... BloXroute Max Profit
14034503 11 3177 1881 +1296 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14035723 3 3020 1728 +1292 stader 0x8db2a99d... Flashbots
14032088 1 2981 1689 +1292 coinbase 0x8527d16c... Ultra Sound
14033963 1 2981 1689 +1292 whale_0x8ebd 0x856b0004... Aestus
14035039 5 3057 1766 +1291 whale_0x8ebd 0xb26f9666... Titan Relay
14029398 0 2960 1670 +1290 everstake 0x8527d16c... Ultra Sound
14031774 10 3151 1862 +1289 p2porg 0x88857150... Ultra Sound
14033184 0 2959 1670 +1289 everstake 0xb67eaa5e... BloXroute Max Profit
14034041 2 2997 1708 +1289 coinbase 0x856b0004... Aestus
14034693 4 3035 1747 +1288 p2porg 0xb26f9666... BloXroute Max Profit
14029495 5 3054 1766 +1288 kiln 0xb67eaa5e... BloXroute Max Profit
14034534 0 2958 1670 +1288 stader 0xb26f9666... Aestus
14029287 0 2955 1670 +1285 whale_0x8ebd 0x85fb0503... BloXroute Max Profit
14032830 0 2955 1670 +1285 kiln 0xb67eaa5e... BloXroute Max Profit
14034736 0 2954 1670 +1284 coinbase 0x8527d16c... Ultra Sound
14030534 0 2953 1670 +1283 0xac23f8cc... Flashbots
14034925 6 3067 1785 +1282 coinbase 0xb26f9666... BloXroute Max Profit
14032471 1 2971 1689 +1282 kiln 0x8527d16c... Ultra Sound
14035460 3 3009 1728 +1281 coinbase 0x8527d16c... Ultra Sound
14031853 5 3047 1766 +1281 whale_0x8ebd Local Local
14029616 5 3046 1766 +1280 kiln 0x8527d16c... Ultra Sound
14032132 0 2950 1670 +1280 everstake 0x850b00e0... BloXroute Max Profit
14030231 0 2950 1670 +1280 everstake 0xa10f2964... BloXroute Max Profit
14035146 10 3141 1862 +1279 p2porg 0x850b00e0... BloXroute Regulated
14032513 1 2966 1689 +1277 coinbase 0xb26f9666... BloXroute Regulated
14029873 1 2966 1689 +1277 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14032159 7 3081 1804 +1277 coinbase 0x856b0004... Aestus
14030772 0 2946 1670 +1276 kiln 0xb26f9666... BloXroute Regulated
14031096 5 3041 1766 +1275 coinbase 0x8527d16c... Ultra Sound
14034608 0 2945 1670 +1275 everstake 0x855b00e6... BloXroute Max Profit
14032746 0 2945 1670 +1275 kiln 0xb26f9666... BloXroute Max Profit
14035648 1 2964 1689 +1275 everstake 0x88a53ec4... BloXroute Max Profit
14032516 1 2964 1689 +1275 kiln 0x850b00e0... Flashbots
14030178 0 2943 1670 +1273 coinbase 0xb26f9666... BloXroute Max Profit
14032074 0 2942 1670 +1272 kiln 0x9129eeb4... Agnostic Gnosis
14035052 1 2960 1689 +1271 0x856b0004... Agnostic Gnosis
14035772 0 2939 1670 +1269 everstake 0x855b00e6... BloXroute Max Profit
14035363 0 2939 1670 +1269 everstake 0xb26f9666... BloXroute Max Profit
14031251 0 2939 1670 +1269 whale_0x8ebd 0x853b0078... Agnostic Gnosis
14035486 3 2996 1728 +1268 0x856b0004... Ultra Sound
14034694 5 3034 1766 +1268 kiln Local Local
14030869 5 3034 1766 +1268 coinbase 0xb26f9666... BloXroute Max Profit
14034372 0 2938 1670 +1268 stader 0xb26f9666... BloXroute Max Profit
14030717 6 3053 1785 +1268 solo_stakers 0xb26f9666... Titan Relay
14036076 0 2937 1670 +1267 everstake 0x88857150... Ultra Sound
14033495 7 3071 1804 +1267 coinbase 0x855b00e6... BloXroute Max Profit
14033831 0 2936 1670 +1266 everstake 0x853b0078... Agnostic Gnosis
14030796 7 3070 1804 +1266 p2porg 0xb26f9666... Aestus
14033612 8 3089 1824 +1265 p2porg 0x856b0004... Agnostic Gnosis
14032113 7 3068 1804 +1264 stader 0xb26f9666... BloXroute Max Profit
14029600 6 3048 1785 +1263 everstake 0xac23f8cc... BloXroute Max Profit
14034796 5 3027 1766 +1261 coinbase 0x853b0078... Aestus
14032221 4 3007 1747 +1260 blockdaemon 0x853b0078... Titan Relay
14031972 10 3122 1862 +1260 whale_0xedc6 0x8527d16c... Ultra Sound
14035764 5 3026 1766 +1260 coinbase 0xb26f9666... BloXroute Max Profit
14033366 0 2930 1670 +1260 everstake 0x88a53ec4... BloXroute Regulated
14034416 1 2949 1689 +1260 coinbase 0xb26f9666... BloXroute Regulated
14029509 1 2948 1689 +1259 whale_0x8ebd 0x85fb0503... Aestus
14031517 1 2948 1689 +1259 whale_0x8ebd 0xb4ce6162... Ultra Sound
14033408 5 3022 1766 +1256 everstake 0x855b00e6... BloXroute Max Profit
14035138 0 2926 1670 +1256 everstake 0xb26f9666... Aestus
14032591 0 2926 1670 +1256 everstake 0x851b00b1... BloXroute Max Profit
14036293 1 2944 1689 +1255 everstake 0x853b0078... Aestus
14030295 13 3174 1919 +1255 p2porg 0xb26f9666... Titan Relay
14033403 6 3039 1785 +1254 everstake 0x853b0078... Agnostic Gnosis
14034338 1 2943 1689 +1254 kiln 0xb26f9666... BloXroute Max Profit
14033010 1 2943 1689 +1254 coinbase 0x853b0078... Agnostic Gnosis
14033714 6 3038 1785 +1253 kiln 0x8db2a99d... Flashbots
14029840 5 3017 1766 +1251 everstake 0xb67eaa5e... BloXroute Max Profit
14034793 1 2940 1689 +1251 blockdaemon 0x8527d16c... Ultra Sound
14033295 1 2940 1689 +1251 kiln 0xb26f9666... BloXroute Regulated
14033615 1 2940 1689 +1251 kiln 0xb26f9666... BloXroute Max Profit
14034455 1 2940 1689 +1251 coinbase 0xb26f9666... BloXroute Regulated
14034320 1 2939 1689 +1250 everstake 0xb26f9666... Titan Relay
14034701 6 3034 1785 +1249 coinbase 0xb26f9666... BloXroute Regulated
14031657 6 3034 1785 +1249 kiln 0x823e0146... Aestus
14029742 5 3014 1766 +1248 kiln 0x85fb0503... Aestus
14032197 2 2956 1708 +1248 everstake 0x8db2a99d... Aestus
14029670 3 2975 1728 +1247 kiln 0x856b0004... Agnostic Gnosis
14029378 6 3032 1785 +1247 coinbase 0x853b0078... Aestus
14032697 2 2954 1708 +1246 kiln 0x9129eeb4... Ultra Sound
14030348 10 3106 1862 +1244 p2porg 0x88857150... Ultra Sound
14034707 0 2914 1670 +1244 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14029682 6 3029 1785 +1244 whale_0x8ebd 0x853b0078... Aestus
14030108 1 2933 1689 +1244 kiln 0x823e0146... Ultra Sound
14031603 1 2932 1689 +1243 solo_stakers 0x853b0078... Aestus
14032523 9 3085 1843 +1242 coinbase 0xb26f9666... BloXroute Regulated
14032208 5 3007 1766 +1241 everstake 0xac23f8cc... Ultra Sound
14031466 1 2930 1689 +1241 kiln 0xb26f9666... BloXroute Max Profit
14031406 3 2968 1728 +1240 everstake 0x823e0146... Flashbots
14032527 6 3025 1785 +1240 kiln 0xb26f9666... BloXroute Max Profit
14035671 1 2928 1689 +1239 whale_0x8ebd 0x823e0146... Flashbots
14030830 5 3004 1766 +1238 coinbase 0x88857150... Ultra Sound
14033257 5 3004 1766 +1238 kiln 0x823e0146... Aestus
14031013 6 3022 1785 +1237 kiln 0xb26f9666... BloXroute Regulated
14031447 1 2926 1689 +1237 everstake 0x88857150... Ultra Sound
14031255 2 2945 1708 +1237 kiln 0x856b0004... Agnostic Gnosis
14035061 3 2964 1728 +1236 whale_0x8ebd 0x853b0078... Aestus
14029325 0 2906 1670 +1236 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14033299 6 3021 1785 +1236 kiln 0x856b0004... Aestus
14032536 13 3155 1919 +1236 whale_0xedc6 0x853b0078... Agnostic Gnosis
14031658 0 2905 1670 +1235 0x856b0004... Aestus
14032524 0 2905 1670 +1235 everstake 0x88a53ec4... BloXroute Regulated
14033025 0 2905 1670 +1235 everstake 0xb26f9666... Titan Relay
14030307 6 3020 1785 +1235 everstake 0x8db2a99d... BloXroute Max Profit
14036141 1 2924 1689 +1235 everstake 0xb67eaa5e... BloXroute Regulated
14032710 6 3019 1785 +1234 kiln 0x8527d16c... Ultra Sound
14030736 6 3019 1785 +1234 kiln 0x823e0146... Ultra Sound
14033937 4 2980 1747 +1233 kiln 0x8db2a99d... BloXroute Max Profit
14035184 0 2903 1670 +1233 stader 0xb26f9666... BloXroute Regulated
14033155 0 2902 1670 +1232 kiln 0xb26f9666... BloXroute Regulated
14035872 5 2996 1766 +1230 stakingfacilities_lido 0x8db2a99d... Aestus
14030816 1 2919 1689 +1230 everstake 0x8527d16c... Ultra Sound
14034299 4 2976 1747 +1229 whale_0x8ebd 0x8527d16c... Ultra Sound
14036146 5 2995 1766 +1229 coinbase 0x856b0004... Aestus
14032657 1 2918 1689 +1229 0xb26f9666... BloXroute Max Profit
14030118 0 2898 1670 +1228 everstake 0xb26f9666... Titan Relay
14035954 1 2917 1689 +1228 everstake 0x88857150... Ultra Sound
14032238 1 2917 1689 +1228 kiln 0xb26f9666... BloXroute Max Profit
14034697 5 2991 1766 +1225 coinbase 0x856b0004... Agnostic Gnosis
14034724 2 2933 1708 +1225 kiln 0x8527d16c... Ultra Sound
14031910 9 3067 1843 +1224 kiln 0xb26f9666... BloXroute Max Profit
14030866 0 2894 1670 +1224 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14033440 0 2894 1670 +1224 0x8db2a99d... BloXroute Max Profit
14032894 1 2913 1689 +1224 kiln 0x853b0078... Aestus
14031158 5 2989 1766 +1223 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14033048 5 2988 1766 +1222 coinbase 0xb26f9666... BloXroute Max Profit
14030453 6 3007 1785 +1222 coinbase 0xb26f9666... BloXroute Max Profit
14033959 1 2911 1689 +1222 solo_stakers 0x8db2a99d... Ultra Sound
14032822 0 2891 1670 +1221 everstake 0xb26f9666... Titan Relay
14035154 0 2891 1670 +1221 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14032166 1 2910 1689 +1221 kiln 0x856b0004... Agnostic Gnosis
14033784 5 2986 1766 +1220 bitstamp 0x855b00e6... BloXroute Max Profit
14032340 0 2889 1670 +1219 kiln 0x856b0004... Agnostic Gnosis
14035130 1 2908 1689 +1219 everstake 0xb26f9666... Aestus
14032868 1 2908 1689 +1219 everstake 0xb26f9666... Titan Relay
14033791 0 2888 1670 +1218 everstake 0x8db2a99d... Ultra Sound
14033981 1 2907 1689 +1218 everstake 0x8db2a99d... Flashbots
14029825 5 2981 1766 +1215 everstake 0x8527d16c... Ultra Sound
14029628 7 3019 1804 +1215 kiln 0xb67eaa5e... Aestus
14033913 8 3038 1824 +1214 kiln 0x9129eeb4... Agnostic Gnosis
14031573 0 2883 1670 +1213 kiln 0x805e28e6... BloXroute Max Profit
14034175 1 2902 1689 +1213 kiln 0x853b0078... Agnostic Gnosis
14035740 2 2919 1708 +1211 coinbase 0xb26f9666... BloXroute Max Profit
14032436 8 3034 1824 +1210 kiln 0x8527d16c... Ultra Sound
14029914 0 2880 1670 +1210 kiln 0x853b0078... Agnostic Gnosis
14034200 1 2899 1689 +1210 everstake 0xb26f9666... Aestus
14029213 0 2878 1670 +1208 kiln Local Local
14036055 2 2915 1708 +1207 bitstamp 0x855b00e6... BloXroute Max Profit
14030827 1 2895 1689 +1206 0x855b00e6... BloXroute Max Profit
14029713 2 2914 1708 +1206 everstake 0x853b0078... Agnostic Gnosis
14031764 5 2971 1766 +1205 coinbase 0x8db2a99d... Ultra Sound
14035636 1 2894 1689 +1205 everstake 0x853b0078... Agnostic Gnosis
14036102 1 2892 1689 +1203 0xb67eaa5e... Aestus
14035101 5 2968 1766 +1202 kiln 0x856b0004... Agnostic Gnosis
14030889 1 2891 1689 +1202 everstake 0x853b0078... Agnostic Gnosis
14033187 7 3006 1804 +1202 stader 0x8527d16c... Ultra Sound
14029906 3 2929 1728 +1201 everstake 0x850b00e0... BloXroute Max Profit
14035014 0 2871 1670 +1201 everstake 0xb26f9666... Titan Relay
14034033 7 3005 1804 +1201 solo_stakers 0x9129eeb4... Ultra Sound
14033534 0 2870 1670 +1200 kiln 0xb26f9666... BloXroute Regulated
14033446 5 2965 1766 +1199 everstake 0xb67eaa5e... BloXroute Max Profit
14030304 0 2869 1670 +1199 blockdaemon 0x855b00e6... BloXroute Max Profit
14033149 5 2964 1766 +1198 kiln 0x856b0004... Agnostic Gnosis
14029291 1 2886 1689 +1197 everstake 0xb5a65d00... Ultra Sound
14033473 1 2886 1689 +1197 everstake 0xb26f9666... Titan Relay
14032580 10 3058 1862 +1196 kiln 0xb26f9666... BloXroute Max Profit
14031326 5 2962 1766 +1196 0xb67eaa5e... BloXroute Max Profit
14034828 0 2866 1670 +1196 whale_0x8ebd 0x8527d16c... Ultra Sound
14029965 11 3077 1881 +1196 coinbase 0x9129eeb4... Ultra Sound
14029237 1 2885 1689 +1196 everstake 0x85fb0503... Aestus
14032220 1 2885 1689 +1196 solo_stakers 0xb26f9666... BloXroute Max Profit
14033949 2 2904 1708 +1196 0x88857150... Ultra Sound
14033370 2 2904 1708 +1196 solo_stakers 0xb26f9666... Aestus
14033803 0 2865 1670 +1195 solo_stakers 0xb26f9666... BloXroute Max Profit
14033607 0 2865 1670 +1195 everstake 0x88a53ec4... BloXroute Regulated
14035434 6 2980 1785 +1195 kiln 0x850b00e0... BloXroute Max Profit
14035805 1 2884 1689 +1195 solo_stakers 0xb26f9666... BloXroute Max Profit
14033244 1 2884 1689 +1195 everstake 0x8527d16c... Ultra Sound
14032861 1 2883 1689 +1194 everstake 0x8527d16c... Ultra Sound
14031297 7 2997 1804 +1193 everstake 0xb67eaa5e... BloXroute Max Profit
14031448 2 2900 1708 +1192 everstake 0x88857150... Ultra Sound
14035655 4 2938 1747 +1191 everstake 0x8db2a99d... Aestus
14030157 1 2880 1689 +1191 kiln 0xb26f9666... BloXroute Max Profit
14030243 5 2955 1766 +1189 everstake 0x850b00e0... Ultra Sound
14032211 5 2955 1766 +1189 kiln 0xb26f9666... BloXroute Regulated
14031552 0 2859 1670 +1189 ether.fi 0xb58080ea... BloXroute Max Profit
14032429 5 2954 1766 +1188 everstake 0xb26f9666... Aestus
14034448 0 2858 1670 +1188 kiln 0xb26f9666... BloXroute Max Profit
14030804 0 2858 1670 +1188 everstake 0x8527d16c... Ultra Sound
Total anomalies: 476

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