Tue, May 5, 2026

Propagation anomalies - 2026-05-05

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-05-05' AND slot_start_date_time < '2026-05-05'::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-05-05' AND slot_start_date_time < '2026-05-05'::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-05-05' AND slot_start_date_time < '2026-05-05'::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-05-05' AND slot_start_date_time < '2026-05-05'::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-05-05' AND slot_start_date_time < '2026-05-05'::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-05-05' AND slot_start_date_time < '2026-05-05'::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-05-05' AND slot_start_date_time < '2026-05-05'::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-05-05' AND slot_start_date_time < '2026-05-05'::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,187
MEV blocks: 6,722 (93.5%)
Local blocks: 465 (6.5%)

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 = 1677.9 + 19.33 × blob_count (R² = 0.013)
Residual σ = 611.2ms
Anomalies (>2σ slow): 529 (7.4%)
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
14261330 0 9926 1678 +8248 abyss_finance Local Local
14262490 7 8225 1813 +6412 solo_stakers Local Local
14262560 0 7502 1678 +5824 rocketpool Local Local
14264736 0 6578 1678 +4900 upbit Local Local
14263936 0 5246 1678 +3568 upbit Local Local
14259744 0 5197 1678 +3519 upbit Local Local
14265129 1 4275 1697 +2578 abyss_finance Local Local
14264099 0 4228 1678 +2550 revolut Local Local
14264455 0 4196 1678 +2518 whale_0x8ebd Local Local
14263967 7 3843 1813 +2030 whale_0x8ebd Local Local
14260680 6 3768 1794 +1974 whale_0x8ebd 0x857b0038... BloXroute Max Profit
14263075 0 3567 1678 +1889 blockdaemon 0xb4ce6162... Ultra Sound
14264064 5 3653 1775 +1878 blockdaemon 0x88a53ec4... BloXroute Regulated
14266022 0 3515 1678 +1837 everstake 0x857b0038... BloXroute Max Profit
14264983 1 3501 1697 +1804 blockdaemon 0x8a850621... Titan Relay
14261923 7 3599 1813 +1786 ether.fi 0x88857150... Ultra Sound
14263393 0 3445 1678 +1767 blockdaemon 0xb4ce6162... Ultra Sound
14262536 5 3541 1775 +1766 kiln 0x857b0038... BloXroute Max Profit
14265350 0 3430 1678 +1752 blockdaemon 0xb4ce6162... Ultra Sound
14260938 9 3596 1852 +1744 whale_0xdc8d 0x8527d16c... Ultra Sound
14264572 0 3413 1678 +1735 blockdaemon 0xb4ce6162... Ultra Sound
14262821 1 3428 1697 +1731 blockdaemon 0xb4ce6162... Ultra Sound
14264805 2 3437 1717 +1720 blockdaemon 0x8a850621... Titan Relay
14261625 8 3548 1833 +1715 luno 0x88a53ec4... BloXroute Regulated
14261914 3 3440 1736 +1704 blockdaemon 0x8a850621... Titan Relay
14263910 8 3535 1833 +1702 coinbase 0x857b0038... BloXroute Max Profit
14260456 0 3380 1678 +1702 blockdaemon 0x88a53ec4... BloXroute Regulated
14263593 1 3394 1697 +1697 blockdaemon 0x88a53ec4... BloXroute Max Profit
14265423 0 3369 1678 +1691 luno 0x851b00b1... BloXroute Max Profit
14264956 1 3388 1697 +1691 blockdaemon 0x8a850621... Titan Relay
14264758 1 3378 1697 +1681 blockdaemon 0x88857150... Ultra Sound
14266669 3 3416 1736 +1680 blockdaemon 0x88857150... Ultra Sound
14264042 0 3350 1678 +1672 blockdaemon 0x8527d16c... Ultra Sound
14266273 0 3345 1678 +1667 blockdaemon_lido 0xb67eaa5e... Ultra Sound
14264355 9 3510 1852 +1658 blockdaemon 0x8a850621... Titan Relay
14263044 0 3336 1678 +1658 luno 0xb26f9666... Titan Relay
14259631 2 3373 1717 +1656 blockdaemon_lido 0x8db2a99d... BloXroute Max Profit
14266370 5 3423 1775 +1648 blockdaemon 0xb67eaa5e... BloXroute Max Profit
14264735 5 3423 1775 +1648 ether.fi 0x88a53ec4... BloXroute Max Profit
14264426 5 3416 1775 +1641 blockdaemon_lido 0x8527d16c... Ultra Sound
14261997 1 3337 1697 +1640 p2porg 0x857b0038... BloXroute Regulated
14261907 2 3347 1717 +1630 0xb67eaa5e... BloXroute Regulated
14265396 0 3307 1678 +1629 luno 0x8527d16c... Ultra Sound
14260939 0 3307 1678 +1629 blockdaemon_lido 0x88857150... Ultra Sound
14265207 0 3302 1678 +1624 whale_0x8914 0x851b00b1... Ultra Sound
14259771 1 3318 1697 +1621 blockdaemon 0x8a850621... Titan Relay
14261226 5 3395 1775 +1620 blockdaemon 0xb67eaa5e... BloXroute Regulated
14260661 3 3353 1736 +1617 solo_stakers 0xb7c5e609... BloXroute Max Profit
14262776 8 3448 1833 +1615 0x8527d16c... Ultra Sound
14261530 1 3310 1697 +1613 blockdaemon_lido 0x823e0146... Titan Relay
14262356 8 3444 1833 +1611 whale_0xdc8d 0xb67eaa5e... BloXroute Max Profit
14260250 7 3422 1813 +1609 nethermind_lido 0x823e0146... BloXroute Max Profit
14261388 5 3383 1775 +1608 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14261413 0 3286 1678 +1608 revolut 0x88a53ec4... BloXroute Max Profit
14260136 13 3534 1929 +1605 blockdaemon 0x88a53ec4... BloXroute Max Profit
14266105 6 3396 1794 +1602 whale_0xdc8d 0x88a53ec4... BloXroute Regulated
14266313 0 3280 1678 +1602 luno 0xb67eaa5e... BloXroute Regulated
14262067 4 3355 1755 +1600 revolut 0xb67eaa5e... BloXroute Max Profit
14264943 5 3374 1775 +1599 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14262789 2 3315 1717 +1598 ether.fi 0xb26f9666... BloXroute Max Profit
14260988 0 3276 1678 +1598 blockdaemon 0xb67eaa5e... BloXroute Regulated
14260223 0 3276 1678 +1598 p2porg 0x850b00e0... Ultra Sound
14265298 0 3272 1678 +1594 luno 0x8db2a99d... BloXroute Regulated
14260972 6 3387 1794 +1593 revolut 0x88a53ec4... BloXroute Regulated
14263691 4 3346 1755 +1591 blockdaemon_lido 0xb26f9666... Titan Relay
14262946 0 3263 1678 +1585 blockdaemon 0x88857150... Ultra Sound
14260137 0 3263 1678 +1585 blockdaemon_lido 0x851b00b1... Ultra Sound
14264019 0 3262 1678 +1584 0x8527d16c... Ultra Sound
14262435 4 3339 1755 +1584 luno 0xb26f9666... Titan Relay
14265686 1 3280 1697 +1583 blockdaemon_lido 0x88857150... Ultra Sound
14261528 2 3299 1717 +1582 p2porg 0x88a53ec4... BloXroute Regulated
14265105 7 3395 1813 +1582 coinbase 0x857b0038... BloXroute Max Profit
14265496 2 3298 1717 +1581 blockdaemon 0x8a850621... Titan Relay
14260462 0 3259 1678 +1581 whale_0xdc8d 0xb67eaa5e... BloXroute Regulated
14262566 0 3256 1678 +1578 whale_0xdc8d 0x8527d16c... Ultra Sound
14261816 4 3333 1755 +1578 figment 0x88857150... Ultra Sound
14265403 5 3350 1775 +1575 blockdaemon_lido 0x88857150... Ultra Sound
14261127 2 3292 1717 +1575 blockdaemon_lido 0x8527d16c... Ultra Sound
14265080 0 3250 1678 +1572 blockdaemon 0x823e0146... BloXroute Max Profit
14261510 5 3343 1775 +1568 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
14260192 8 3396 1833 +1563 0xb67eaa5e... BloXroute Max Profit
14261249 3 3298 1736 +1562 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14260687 6 3351 1794 +1557 whale_0x8914 0xa965c911... Ultra Sound
14262329 5 3329 1775 +1554 whale_0xdc8d 0x8db2a99d... BloXroute Max Profit
14259981 2 3270 1717 +1553 solo_stakers 0xb4ce6162... Ultra Sound
14266248 4 3308 1755 +1553 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
14263765 0 3230 1678 +1552 luno 0x8527d16c... Ultra Sound
14264457 2 3267 1717 +1550 whale_0xdc8d 0x853b0078... BloXroute Max Profit
14266751 8 3381 1833 +1548 revolut 0x856b0004... BloXroute Max Profit
14261493 2 3264 1717 +1547 blockdaemon 0x9129eeb4... Ultra Sound
14266443 11 3436 1891 +1545 nethermind_lido 0x8527d16c... Ultra Sound
14266470 2 3256 1717 +1539 blockdaemon_lido 0x88857150... Ultra Sound
14264878 0 3214 1678 +1536 whale_0x8ebd Local Local
14264516 8 3367 1833 +1534 whale_0xdc8d 0xb26f9666... Titan Relay
14262919 0 3212 1678 +1534 whale_0xf273 0x851b00b1... Ultra Sound
14264373 2 3250 1717 +1533 blockdaemon_lido 0xb67eaa5e... Titan Relay
14261214 0 3211 1678 +1533 p2porg 0xa965c911... Ultra Sound
14265004 6 3323 1794 +1529 p2porg 0x850b00e0... Ultra Sound
14259911 5 3301 1775 +1526 blockdaemon_lido 0xb26f9666... Titan Relay
14262982 15 3494 1968 +1526 coinbase 0xb67eaa5e... BloXroute Max Profit
14264973 1 3223 1697 +1526 blockdaemon 0xb26f9666... Titan Relay
14262969 7 3338 1813 +1525 whale_0xdc8d 0x856b0004... BloXroute Max Profit
14262366 0 3202 1678 +1524 luno 0x805e28e6... BloXroute Max Profit
14263152 0 3202 1678 +1524 p2porg 0x850b00e0... BloXroute Regulated
14261570 8 3356 1833 +1523 revolut 0x850b00e0... BloXroute Max Profit
14261106 0 3201 1678 +1523 revolut 0x8db2a99d... BloXroute Max Profit
14266148 0 3201 1678 +1523 blockdaemon 0xb26f9666... Titan Relay
14262082 5 3297 1775 +1522 luno 0x8527d16c... Ultra Sound
14260644 5 3296 1775 +1521 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14261137 0 3196 1678 +1518 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14264318 0 3195 1678 +1517 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
14264143 0 3195 1678 +1517 whale_0x8914 0x851b00b1... Ultra Sound
14265735 9 3367 1852 +1515 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
14262136 0 3191 1678 +1513 whale_0xfd67 0x99cba505... BloXroute Max Profit
14263116 1 3210 1697 +1513 revolut 0x8527d16c... Ultra Sound
14263001 1 3210 1697 +1513 revolut 0xb26f9666... Titan Relay
14261136 0 3186 1678 +1508 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14260498 2 3222 1717 +1505 whale_0x6ddb 0x88a53ec4... BloXroute Max Profit
14261128 6 3299 1794 +1505 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14264824 1 3202 1697 +1505 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14264075 6 3297 1794 +1503 coinbase 0x857b0038... BloXroute Regulated
14263741 5 3277 1775 +1502 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14264719 0 3180 1678 +1502 revolut 0xb26f9666... Titan Relay
14263507 15 3467 1968 +1499 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14265693 1 3192 1697 +1495 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14260293 5 3269 1775 +1494 blockdaemon_lido 0x8527d16c... Ultra Sound
14259888 4 3249 1755 +1494 whale_0x75ff 0x88857150... Ultra Sound
14263641 3 3229 1736 +1493 gateway.fmas_lido 0xb26f9666... Ultra Sound
14265674 6 3286 1794 +1492 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14259939 5 3261 1775 +1486 blockdaemon 0x88a53ec4... BloXroute Max Profit
14261148 2 3202 1717 +1485 whale_0x8914 0xb67eaa5e... BloXroute Max Profit
14265379 4 3240 1755 +1485 coinbase 0xb26f9666... BloXroute Max Profit
14259908 3 3220 1736 +1484 whale_0xfd67 0x88a53ec4... BloXroute Max Profit
14266214 0 3162 1678 +1484 gateway.fmas_lido 0x851b00b1... BloXroute Max Profit
14266012 1 3178 1697 +1481 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14266472 14 3429 1949 +1480 gateway.fmas_lido 0x857b0038... BloXroute Regulated
14262040 5 3255 1775 +1480 gateway.fmas_lido 0x823e0146... BloXroute Max Profit
14262559 5 3255 1775 +1480 p2porg 0x850b00e0... BloXroute Regulated
14261018 11 3370 1891 +1479 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14259739 2 3196 1717 +1479 whale_0x4b5e 0x8527d16c... Ultra Sound
14265320 0 3157 1678 +1479 whale_0x8914 0xa965c911... Ultra Sound
14264834 6 3271 1794 +1477 p2porg 0x88857150... Ultra Sound
14262593 9 3328 1852 +1476 blockdaemon 0x8527d16c... Ultra Sound
14260816 5 3249 1775 +1474 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
14260947 1 3171 1697 +1474 gateway.fmas_lido 0xb4ce6162... Ultra Sound
14259830 1 3170 1697 +1473 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
14262682 5 3243 1775 +1468 coinbase 0xb67eaa5e... BloXroute Regulated
14264975 5 3243 1775 +1468 whale_0xfd67 0x88857150... Ultra Sound
14259658 2 3185 1717 +1468 p2porg 0x850b00e0... BloXroute Regulated
14264281 16 3455 1987 +1468 blockdaemon 0xb67eaa5e... BloXroute Max Profit
14265823 5 3242 1775 +1467 coinbase 0x853b0078... BloXroute Regulated
14262071 12 3377 1910 +1467 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
14261023 0 3143 1678 +1465 everstake 0x856b0004... BloXroute Max Profit
14262403 8 3296 1833 +1463 blockdaemon_lido 0xb26f9666... Titan Relay
14265017 4 3218 1755 +1463 blockdaemon_lido 0xb26f9666... Titan Relay
14262626 8 3294 1833 +1461 whale_0xfd67 0x850b00e0... Ultra Sound
14265116 5 3233 1775 +1458 whale_0x8ebd Local Local
14260989 3 3194 1736 +1458 stakefish Local Local
14261246 5 3232 1775 +1457 0x88a53ec4... BloXroute Regulated
14263826 2 3173 1717 +1456 gateway.fmas_lido 0xb26f9666... Ultra Sound
14263604 0 3134 1678 +1456 kiln 0xb67eaa5e... BloXroute Regulated
14265685 0 3134 1678 +1456 whale_0xfd67 0x851b00b1... Ultra Sound
14265561 6 3249 1794 +1455 whale_0x8914 0x8527d16c... Ultra Sound
14259928 19 3500 2045 +1455 stakefish Local Local
14262183 4 3209 1755 +1454 whale_0xfd67 0x850b00e0... Ultra Sound
14266534 1 3151 1697 +1454 gateway.fmas_lido 0x88857150... Ultra Sound
14265865 2 3169 1717 +1452 whale_0xfd67 0x823e0146... Titan Relay
14263425 0 3128 1678 +1450 gateway.fmas_lido 0x8527d16c... Ultra Sound
14266655 10 3321 1871 +1450 0xb26f9666... Titan Relay
14262231 1 3147 1697 +1450 gateway.fmas_lido 0x8527d16c... Ultra Sound
14260038 11 3340 1891 +1449 blockdaemon_lido 0x88857150... Ultra Sound
14263926 5 3224 1775 +1449 gateway.fmas_lido 0x88857150... Ultra Sound
14259602 2 3166 1717 +1449 stakefish Local Local
14261262 2 3164 1717 +1447 whale_0x8ebd 0xb26f9666... Titan Relay
14259748 3 3183 1736 +1447 gateway.fmas_lido 0x8527d16c... Ultra Sound
14266561 0 3124 1678 +1446 gateway.fmas_lido 0x8527d16c... Ultra Sound
14265292 1 3143 1697 +1446 solo_stakers 0xb4ce6162... Ultra Sound
14264411 0 3123 1678 +1445 gateway.fmas_lido 0x8527d16c... Ultra Sound
14265828 10 3316 1871 +1445 0x856b0004... Ultra Sound
14264009 10 3314 1871 +1443 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
14264214 0 3120 1678 +1442 figment 0x851b00b1... BloXroute Max Profit
14264830 2 3158 1717 +1441 kiln 0xb67eaa5e... BloXroute Regulated
14260331 0 3119 1678 +1441 gateway.fmas_lido 0x88857150... Ultra Sound
14263482 4 3196 1755 +1441 coinbase 0x88a53ec4... BloXroute Max Profit
14262425 1 3136 1697 +1439 gateway.fmas_lido 0x856b0004... BloXroute Max Profit
14263720 1 3133 1697 +1436 whale_0x8ebd 0x8db2a99d... Titan Relay
14261165 5 3210 1775 +1435 whale_0xfd67 0xb67eaa5e... Ultra Sound
14266485 1 3130 1697 +1433 kiln 0xb67eaa5e... BloXroute Regulated
14264100 0 3110 1678 +1432 whale_0x8914 0x94e8a339... BloXroute Max Profit
14264667 1 3128 1697 +1431 whale_0x8ebd 0xb26f9666... Titan Relay
14264627 2 3147 1717 +1430 whale_0x8914 0x850b00e0... Ultra Sound
14261014 2 3146 1717 +1429 kiln 0x88a53ec4... BloXroute Regulated
14260245 5 3202 1775 +1427 p2porg 0x850b00e0... BloXroute Regulated
14261476 6 3221 1794 +1427 coinbase 0xb67eaa5e... BloXroute Max Profit
14264638 0 3104 1678 +1426 0x83bee517... Flashbots
14266364 5 3200 1775 +1425 blockdaemon 0xb26f9666... BloXroute Max Profit
14264771 12 3334 1910 +1424 solo_stakers 0x853b0078... BloXroute Regulated
14262357 0 3102 1678 +1424 gateway.fmas_lido 0xb67eaa5e... Ultra Sound
14262726 1 3121 1697 +1424 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14261903 0 3098 1678 +1420 whale_0x8914 0xba003e46... Ultra Sound
14262419 6 3213 1794 +1419 whale_0x8914 0xb7c5e609... Titan Relay
14262753 11 3309 1891 +1418 whale_0x8ebd Local Local
14261814 6 3212 1794 +1418 kiln Local Local
14264656 0 3096 1678 +1418 gateway.fmas_lido 0x8db2a99d... Ultra Sound
14265390 5 3192 1775 +1417 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14265420 5 3192 1775 +1417 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
14263023 14 3365 1949 +1416 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14265464 2 3133 1717 +1416 kiln 0xb26f9666... BloXroute Regulated
14265870 0 3094 1678 +1416 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14262664 0 3093 1678 +1415 kiln 0x8527d16c... Ultra Sound
14266266 4 3170 1755 +1415 whale_0xfd67 0x823e0146... BloXroute Max Profit
14261335 5 3189 1775 +1414 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14263266 0 3092 1678 +1414 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14264220 5 3188 1775 +1413 p2porg 0x850b00e0... BloXroute Regulated
14261562 5 3188 1775 +1413 coinbase 0x88a53ec4... BloXroute Max Profit
14261894 0 3091 1678 +1413 p2porg 0x850b00e0... BloXroute Regulated
14265000 0 3091 1678 +1413 p2porg 0x853b0078... BloXroute Max Profit
14259785 4 3168 1755 +1413 whale_0x8914 0x823e0146... Flashbots
14263257 1 3109 1697 +1412 coinbase 0x88a53ec4... BloXroute Max Profit
14262765 11 3301 1891 +1410 whale_0xfd67 0x850b00e0... Ultra Sound
14264216 5 3185 1775 +1410 coinbase 0x88a53ec4... BloXroute Regulated
14261046 1 3107 1697 +1410 kiln 0xb67eaa5e... BloXroute Max Profit
14265413 1 3106 1697 +1409 figment 0xb26f9666... Titan Relay
14261626 0 3086 1678 +1408 p2porg 0x8db2a99d... BloXroute Max Profit
14264718 2 3123 1717 +1406 coinbase 0xb67eaa5e... BloXroute Max Profit
14266052 0 3084 1678 +1406 p2porg 0x853b0078... BloXroute Max Profit
14263325 1 3103 1697 +1406 solo_stakers 0xb26f9666... BloXroute Regulated
14264040 8 3238 1833 +1405 coinbase 0xb67eaa5e... BloXroute Max Profit
14264733 2 3122 1717 +1405 whale_0xfd67 0x88a53ec4... BloXroute Regulated
14260458 7 3217 1813 +1404 whale_0xfd67 0x85fb0503... Ultra Sound
14264006 6 3195 1794 +1401 solo_stakers 0x857b0038... Ultra Sound
14263301 3 3137 1736 +1401 coinbase 0x88a53ec4... BloXroute Regulated
14264655 7 3213 1813 +1400 whale_0x8914 0x850b00e0... Ultra Sound
14265247 1 3094 1697 +1397 coinbase 0xb26f9666... BloXroute Regulated
14262771 1 3094 1697 +1397 kiln 0xb67eaa5e... BloXroute Max Profit
14263106 11 3287 1891 +1396 blockdaemon_lido 0x88857150... Ultra Sound
14262414 2 3112 1717 +1395 figment 0x853b0078... BloXroute Max Profit
14262970 0 3073 1678 +1395 whale_0x8914 0xb67eaa5e... BloXroute Max Profit
14266672 7 3208 1813 +1395 coinbase 0x8527d16c... Ultra Sound
14261808 1 3092 1697 +1395 coinbase 0xb67eaa5e... BloXroute Regulated
14266544 0 3072 1678 +1394 whale_0x8ebd 0x88857150... Ultra Sound
14263836 5 3166 1775 +1391 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14263909 0 3069 1678 +1391 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14263873 6 3184 1794 +1390 whale_0x8914 0xb67eaa5e... Titan Relay
14260012 11 3279 1891 +1388 blockdaemon 0x8527d16c... Ultra Sound
14266284 5 3163 1775 +1388 p2porg 0x850b00e0... BloXroute Regulated
14261934 0 3066 1678 +1388 p2porg 0xb26f9666... Aestus
14266033 0 3066 1678 +1388 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14265576 0 3066 1678 +1388 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14264651 0 3065 1678 +1387 p2porg 0xb26f9666... Titan Relay
14262963 5 3160 1775 +1385 whale_0x8ebd 0xb26f9666... Titan Relay
14261406 0 3063 1678 +1385 whale_0xfd67 0x88a53ec4... BloXroute Max Profit
14260543 6 3178 1794 +1384 whale_0xba40 0xb67eaa5e... BloXroute Max Profit
14260244 7 3197 1813 +1384 whale_0xfd67 0x88a53ec4... BloXroute Regulated
14259688 1 3079 1697 +1382 coinbase 0xb7c5e609... BloXroute Max Profit
14259627 13 3310 1929 +1381 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14261255 3 3116 1736 +1380 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14266212 1 3077 1697 +1380 coinbase 0xb26f9666... BloXroute Regulated
14265548 7 3192 1813 +1379 p2porg 0x8db2a99d... BloXroute Max Profit
14262751 1 3076 1697 +1379 blockdaemon_lido 0xb26f9666... Titan Relay
14262500 8 3210 1833 +1377 whale_0x8914 0x850b00e0... Ultra Sound
14260985 5 3152 1775 +1377 coinbase 0x856b0004... BloXroute Max Profit
14263621 12 3287 1910 +1377 kiln 0x88a53ec4... BloXroute Regulated
14263777 3 3113 1736 +1377 kiln Local Local
14266574 0 3054 1678 +1376 everstake 0xb67eaa5e... BloXroute Regulated
14260929 11 3266 1891 +1375 coinbase 0x850b00e0... BloXroute Max Profit
14261546 5 3149 1775 +1374 whale_0x8ebd 0x88857150... Ultra Sound
14264450 5 3149 1775 +1374 coinbase 0xb26f9666... Titan Relay
14261118 5 3149 1775 +1374 coinbase 0x88a53ec4... BloXroute Max Profit
14259758 2 3090 1717 +1373 whale_0x8ee5 0xb67eaa5e... BloXroute Max Profit
14260141 5 3147 1775 +1372 whale_0xedc6 0x85fb0503... Aestus
14261219 6 3166 1794 +1372 gateway.fmas_lido 0xb7c5e609... BloXroute Max Profit
14262451 0 3050 1678 +1372 p2porg 0xb26f9666... Titan Relay
14262747 1 3068 1697 +1371 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14260757 0 3048 1678 +1370 whale_0x8ebd 0xb4ce6162... Ultra Sound
14262031 6 3163 1794 +1369 kiln 0x8db2a99d... BloXroute Max Profit
14266606 0 3047 1678 +1369 whale_0x8914 0xb67eaa5e... BloXroute Regulated
14263750 0 3047 1678 +1369 coinbase Local Local
14263090 1 3066 1697 +1369 whale_0x8ebd 0x853b0078... BloXroute Max Profit
14265197 5 3143 1775 +1368 whale_0x3878 0x823e0146... Flashbots
14262838 0 3046 1678 +1368 whale_0x8ebd 0xa965c911... Ultra Sound
14266185 1 3065 1697 +1368 figment 0x853b0078... BloXroute Max Profit
14261020 6 3161 1794 +1367 kiln 0xb26f9666... BloXroute Regulated
14264189 0 3044 1678 +1366 p2porg 0xb26f9666... BloXroute Max Profit
14260424 0 3044 1678 +1366 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14263796 2 3081 1717 +1364 p2porg 0xb67eaa5e... Ultra Sound
14263004 0 3042 1678 +1364 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14264820 1 3060 1697 +1363 coinbase 0xb67eaa5e... BloXroute Max Profit
14260189 0 3040 1678 +1362 kiln 0x8db2a99d... BloXroute Max Profit
14263095 6 3154 1794 +1360 p2porg 0xb26f9666... Titan Relay
14260133 0 3038 1678 +1360 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14261974 0 3038 1678 +1360 kiln 0xb67eaa5e... BloXroute Max Profit
14264833 0 3038 1678 +1360 bitstamp 0x850b00e0... BloXroute Max Profit
14261189 6 3152 1794 +1358 p2porg 0xb26f9666... BloXroute Max Profit
14266633 1 3055 1697 +1358 kiln Local Local
14264104 5 3132 1775 +1357 p2porg 0x850b00e0... BloXroute Regulated
14266712 4 3112 1755 +1357 kiln 0x88a53ec4... BloXroute Regulated
14266776 6 3150 1794 +1356 kiln 0x88a53ec4... BloXroute Max Profit
14259746 10 3227 1871 +1356 blockdaemon 0x8527d16c... Ultra Sound
14262298 0 3033 1678 +1355 whale_0x8ebd Local Local
14260592 6 3148 1794 +1354 coinbase 0x88a53ec4... BloXroute Regulated
14265804 4 3108 1755 +1353 stakefish Local Local
14261425 0 3030 1678 +1352 kiln 0x851b00b1... BloXroute Max Profit
14263794 5 3126 1775 +1351 coinbase 0xb26f9666... BloXroute Regulated
14263026 0 3029 1678 +1351 p2porg 0x823e0146... Titan Relay
14260722 0 3029 1678 +1351 everstake 0xb26f9666... Aestus
14264512 6 3144 1794 +1350 nethermind_lido 0x8db2a99d... BloXroute Max Profit
14264201 0 3028 1678 +1350 p2porg 0xb26f9666... BloXroute Max Profit
14264183 10 3219 1871 +1348 whale_0x8914 0xa965c911... Ultra Sound
14264381 7 3161 1813 +1348 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14264924 1 3045 1697 +1348 p2porg 0x9129eeb4... Agnostic Gnosis
14263363 0 3025 1678 +1347 whale_0x8ebd 0x8527d16c... Ultra Sound
14262101 1 3043 1697 +1346 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14266476 1 3043 1697 +1346 coinbase 0xb26f9666... Titan Relay
14266261 0 3022 1678 +1344 kiln 0xb67eaa5e... BloXroute Regulated
14266004 4 3099 1755 +1344 whale_0x8ebd 0x8527d16c... Ultra Sound
14262798 5 3118 1775 +1343 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14265830 7 3156 1813 +1343 coinbase 0xb67eaa5e... BloXroute Regulated
14261987 5 3117 1775 +1342 kiln 0xb67eaa5e... BloXroute Regulated
14262577 2 3059 1717 +1342 coinbase 0xb7c5e609... BloXroute Regulated
14260393 5 3116 1775 +1341 p2porg 0xb26f9666... Titan Relay
14260048 0 3019 1678 +1341 kiln 0x85fb0503... Aestus
14260455 1 3038 1697 +1341 kiln 0xb26f9666... BloXroute Max Profit
14261653 5 3115 1775 +1340 p2porg 0xb67eaa5e... Aestus
14265083 5 3114 1775 +1339 p2porg 0xb26f9666... Titan Relay
14259730 6 3133 1794 +1339 kiln 0xb67eaa5e... BloXroute Max Profit
14261964 0 3015 1678 +1337 0xb26f9666... BloXroute Max Profit
14261218 3 3072 1736 +1336 kiln 0xb67eaa5e... BloXroute Max Profit
14264668 0 3014 1678 +1336 p2porg 0xb26f9666... BloXroute Max Profit
14264979 1 3032 1697 +1335 whale_0xedc6 0xb26f9666... BloXroute Max Profit
14263460 9 3186 1852 +1334 coinbase 0x88a53ec4... BloXroute Regulated
14260361 0 3012 1678 +1334 coinbase 0x88a53ec4... BloXroute Regulated
14260527 7 3147 1813 +1334 p2porg 0xa965c911... Ultra Sound
14262039 1 3031 1697 +1334 whale_0x8ebd 0xb5a65d00... Ultra Sound
14262640 5 3107 1775 +1332 p2porg 0xb26f9666... BloXroute Regulated
14265415 5 3107 1775 +1332 whale_0x8ebd 0x856b0004... Agnostic Gnosis
14260457 5 3107 1775 +1332 whale_0x8ebd 0xb26f9666... Titan Relay
14262718 6 3126 1794 +1332 p2porg 0xb67eaa5e... BloXroute Max Profit
14265354 3 3068 1736 +1332 figment 0x88857150... Ultra Sound
14264083 7 3145 1813 +1332 coinbase 0xb26f9666... BloXroute Max Profit
14266535 1 3029 1697 +1332 kiln 0xb26f9666... BloXroute Max Profit
14260501 1 3029 1697 +1332 coinbase 0x85fb0503... Aestus
14262383 0 3008 1678 +1330 coinbase 0x8db2a99d... BloXroute Max Profit
14265600 5 3104 1775 +1329 coinbase 0xb26f9666... Titan Relay
14266024 5 3103 1775 +1328 coinbase 0x8527d16c... Ultra Sound
14264289 0 3006 1678 +1328 coinbase 0x8db2a99d... BloXroute Max Profit
14264912 5 3102 1775 +1327 coinbase 0x8527d16c... Ultra Sound
14264807 0 3005 1678 +1327 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14261878 0 3004 1678 +1326 coinbase 0xb67eaa5e... Ultra Sound
14264926 0 3002 1678 +1324 coinbase 0x8527d16c... Ultra Sound
14264496 0 3002 1678 +1324 p2porg 0xb26f9666... BloXroute Max Profit
14264336 6 3117 1794 +1323 coinbase 0xb26f9666... BloXroute Regulated
14259960 4 3078 1755 +1323 p2porg 0x85fb0503... Aestus
14259874 2 3039 1717 +1322 kiln 0xb26f9666... BloXroute Max Profit
14262135 0 3000 1678 +1322 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14265157 7 3135 1813 +1322 coinbase 0xb26f9666... Titan Relay
14266103 2 3038 1717 +1321 kiln 0xb26f9666... BloXroute Max Profit
14266236 6 3114 1794 +1320 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14266611 7 3133 1813 +1320 whale_0x8ebd 0x9129eeb4... Agnostic Gnosis
14263607 1 3017 1697 +1320 kiln 0xb26f9666... Titan Relay
14263055 5 3094 1775 +1319 coinbase 0x8db2a99d... BloXroute Max Profit
14264841 6 3112 1794 +1318 p2porg 0x9129eeb4... Ultra Sound
14265915 0 2996 1678 +1318 coinbase 0x8527d16c... Ultra Sound
14263625 0 2995 1678 +1317 coinbase 0xb26f9666... BloXroute Max Profit
14263112 8 3149 1833 +1316 p2porg 0x8db2a99d... BloXroute Max Profit
14261114 8 3148 1833 +1315 p2porg 0xb26f9666... BloXroute Max Profit
14261505 6 3109 1794 +1315 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14260088 7 3128 1813 +1315 p2porg 0x853b0078... BloXroute Max Profit
14262023 1 3011 1697 +1314 whale_0x93db 0xb26f9666... BloXroute Regulated
14266036 0 2991 1678 +1313 p2porg 0xb26f9666... BloXroute Max Profit
14262914 6 3106 1794 +1312 coinbase 0x856b0004... BloXroute Max Profit
14262623 0 2990 1678 +1312 whale_0x8ebd 0x8527d16c... Ultra Sound
14266246 1 3009 1697 +1312 coinbase 0xb67eaa5e... Ultra Sound
14262513 0 2987 1678 +1309 everstake 0xb67eaa5e... BloXroute Regulated
14265559 7 3122 1813 +1309 kiln 0xb67eaa5e... BloXroute Max Profit
14260086 8 3141 1833 +1308 p2porg 0xb26f9666... Titan Relay
14259760 15 3276 1968 +1308 revolut 0x853b0078... BloXroute Max Profit
14263576 13 3235 1929 +1306 whale_0x8914 0x88a53ec4... BloXroute Max Profit
14259781 5 3080 1775 +1305 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14260825 6 3099 1794 +1305 p2porg 0x85fb0503... Aestus
14263932 0 2983 1678 +1305 kiln 0x8db2a99d... BloXroute Max Profit
14265336 1 3002 1697 +1305 stader 0xb26f9666... Titan Relay
14266697 5 3079 1775 +1304 p2porg 0x8db2a99d... BloXroute Max Profit
14266546 6 3098 1794 +1304 p2porg 0xb26f9666... Titan Relay
14261300 13 3233 1929 +1304 whale_0x3878 0x88a53ec4... BloXroute Max Profit
14263259 5 3078 1775 +1303 whale_0xedc6 0xb26f9666... BloXroute Regulated
14260904 0 2981 1678 +1303 whale_0x8ebd 0xb5a9acce... Flashbots
14259790 10 3174 1871 +1303 kiln 0xb67eaa5e... BloXroute Max Profit
14266327 1 2999 1697 +1302 coinbase 0x8527d16c... Ultra Sound
14263700 3 3037 1736 +1301 kiln 0xb26f9666... BloXroute Max Profit
14266377 0 2978 1678 +1300 0x851b00b1... BloXroute Max Profit
14265736 1 2997 1697 +1300 kiln 0x853b0078... BloXroute Max Profit
14263265 2 3016 1717 +1299 everstake 0xb26f9666... Titan Relay
14260819 0 2977 1678 +1299 everstake 0x8527d16c... Ultra Sound
14260902 0 2977 1678 +1299 whale_0x8ebd 0x88857150... Ultra Sound
14262978 1 2996 1697 +1299 kiln 0xb67eaa5e... BloXroute Regulated
14264108 5 3073 1775 +1298 whale_0xedc6 0xb67eaa5e... Aestus
14263387 0 2976 1678 +1298 whale_0x8ee5 0x88510a78... Flashbots
14259659 2 3014 1717 +1297 coinbase 0x85fb0503... Aestus
14260349 7 3110 1813 +1297 whale_0xedc6 0x85fb0503... Aestus
14265008 0 2974 1678 +1296 whale_0x8ebd 0x88857150... Ultra Sound
14263635 2 3012 1717 +1295 whale_0xd07d 0xb4ce6162... Ultra Sound
14265217 6 3089 1794 +1295 coinbase 0x856b0004... BloXroute Max Profit
14260994 0 2973 1678 +1295 ether.fi 0xb67eaa5e... BloXroute Regulated
14266215 5 3069 1775 +1294 p2porg 0xb26f9666... Aestus
14264230 1 2991 1697 +1294 coinbase 0x8db2a99d... Ultra Sound
14260784 0 2970 1678 +1292 kiln 0xb67eaa5e... BloXroute Max Profit
14265133 5 3066 1775 +1291 p2porg 0x856b0004... BloXroute Max Profit
14264517 0 2969 1678 +1291 kiln 0x823e0146... Ultra Sound
14265901 0 2969 1678 +1291 kiln 0xb26f9666... Aestus
14259982 0 2969 1678 +1291 kiln 0x853b0078... BloXroute Max Profit
14264053 1 2988 1697 +1291 kiln 0x856b0004... BloXroute Max Profit
14259660 11 3181 1891 +1290 coinbase 0x8db2a99d... Titan Relay
14263468 0 2968 1678 +1290 kiln 0x8527d16c... Ultra Sound
14266035 7 3103 1813 +1290 coinbase 0x8527d16c... Ultra Sound
14259868 0 2967 1678 +1289 kiln 0x8527d16c... Ultra Sound
14263147 0 2967 1678 +1289 coinbase 0x99cba505... BloXroute Max Profit
14265884 1 2986 1697 +1289 kiln Local Local
14266599 8 3121 1833 +1288 p2porg 0xb26f9666... BloXroute Max Profit
14260842 5 3062 1775 +1287 coinbase 0xb26f9666... BloXroute Regulated
14260526 6 3081 1794 +1287 everstake 0xb67eaa5e... BloXroute Max Profit
14262692 1 2984 1697 +1287 kiln 0x856b0004... BloXroute Max Profit
14262545 10 3156 1871 +1285 whale_0x8ebd 0x8527d16c... Ultra Sound
14261367 0 2961 1678 +1283 coinbase 0x99cba505... Flashbots
14265214 1 2978 1697 +1281 kiln 0x823e0146... Ultra Sound
14264493 6 3074 1794 +1280 coinbase 0xb26f9666... Titan Relay
14266255 0 2958 1678 +1280 kiln 0xb26f9666... Aestus
14261488 4 3035 1755 +1280 whale_0x8ebd 0x8527d16c... Ultra Sound
14259850 1 2977 1697 +1280 kiln 0x8527d16c... Ultra Sound
14260209 1 2977 1697 +1280 everstake 0x8527d16c... Ultra Sound
14264974 6 3073 1794 +1279 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14262004 3 3015 1736 +1279 kiln 0x856b0004... BloXroute Max Profit
14265167 5 3053 1775 +1278 whale_0x8ebd 0xb26f9666... Titan Relay
14262814 0 2956 1678 +1278 kiln 0xa965c911... Ultra Sound
14260894 1 2974 1697 +1277 kiln 0xb26f9666... BloXroute Max Profit
14261093 5 3051 1775 +1276 coinbase 0x8527d16c... Ultra Sound
14263330 13 3204 1929 +1275 whale_0x8ebd 0x8527d16c... Ultra Sound
14261541 2 2991 1717 +1274 kiln 0xa965c911... Ultra Sound
14261108 0 2952 1678 +1274 everstake 0xb67eaa5e... BloXroute Regulated
14261431 8 3106 1833 +1273 figment 0x8527d16c... Ultra Sound
14259740 12 3183 1910 +1273 coinbase 0x88a53ec4... BloXroute Regulated
14262157 0 2951 1678 +1273 coinbase 0xb26f9666... BloXroute Regulated
14262321 0 2950 1678 +1272 everstake 0x8db2a99d... BloXroute Max Profit
14259922 0 2950 1678 +1272 coinbase 0x85fb0503... Aestus
14263140 0 2950 1678 +1272 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14264013 13 3201 1929 +1272 blockdaemon 0x856b0004... BloXroute Max Profit
14264900 3 3007 1736 +1271 coinbase 0x8527d16c... Ultra Sound
14261560 1 2968 1697 +1271 kiln 0x8527d16c... Ultra Sound
14263584 6 3064 1794 +1270 whale_0x8ebd 0xb26f9666... Titan Relay
14261458 5 3044 1775 +1269 kiln 0xb5a65d00... Ultra Sound
14265623 0 2947 1678 +1269 kiln 0x88857150... Ultra Sound
14266155 6 3062 1794 +1268 whale_0x8ebd 0xb26f9666... Titan Relay
14262030 1 2965 1697 +1268 kiln 0x88510a78... Flashbots
14263245 9 3119 1852 +1267 coinbase 0x8db2a99d... BloXroute Max Profit
14263399 0 2945 1678 +1267 everstake 0x88a53ec4... BloXroute Max Profit
14261259 9 3118 1852 +1266 coinbase 0x88857150... Ultra Sound
14265140 3 3002 1736 +1266 kiln 0xb26f9666... BloXroute Max Profit
14265271 4 3021 1755 +1266 kiln 0x853b0078... BloXroute Max Profit
14265837 1 2962 1697 +1265 everstake 0xb26f9666... Titan Relay
14262818 6 3058 1794 +1264 kiln 0x8527d16c... Ultra Sound
14264423 0 2941 1678 +1263 everstake 0x853b0078... BloXroute Max Profit
14264125 0 2940 1678 +1262 kiln 0xb26f9666... BloXroute Regulated
14265684 11 3151 1891 +1260 coinbase 0xb67eaa5e... BloXroute Regulated
14266774 8 3093 1833 +1260 kiln 0xb26f9666... BloXroute Regulated
14266263 2 2977 1717 +1260 kiln 0xa03781b9... Ultra Sound
14263860 0 2938 1678 +1260 kiln 0x850b00e0... BloXroute Max Profit
14262150 1 2957 1697 +1260 nethermind_lido 0x8db2a99d... BloXroute Max Profit
14265867 11 3150 1891 +1259 whale_0x8ebd 0x88857150... Ultra Sound
14260490 1 2956 1697 +1259 kiln 0x85fb0503... Aestus
14263497 0 2936 1678 +1258 kiln 0x9129eeb4... Ultra Sound
14265808 1 2955 1697 +1258 kiln 0xb26f9666... BloXroute Max Profit
14264258 5 3030 1775 +1255 whale_0x8ebd 0x853b0078... BloXroute Max Profit
14266653 1 2952 1697 +1255 gateway.fmas_lido 0xac09aa45... Agnostic Gnosis
14261333 0 2932 1678 +1254 bitstamp 0x851b00b1... BloXroute Max Profit
14263218 0 2932 1678 +1254 everstake 0xb7c5e609... BloXroute Max Profit
14261033 1 2950 1697 +1253 kiln 0x8db2a99d... BloXroute Max Profit
14263875 0 2930 1678 +1252 everstake 0xb26f9666... Titan Relay
14262252 1 2949 1697 +1252 everstake 0x8527d16c... Ultra Sound
14263137 0 2929 1678 +1251 everstake 0x8527d16c... Ultra Sound
14264986 1 2948 1697 +1251 nethermind_lido 0xb26f9666... Aestus
14259932 0 2928 1678 +1250 solo_stakers 0x8db2a99d... BloXroute Max Profit
14263183 0 2928 1678 +1250 nethermind_lido 0x8db2a99d... BloXroute Max Profit
14261593 1 2947 1697 +1250 kiln 0x853b0078... BloXroute Max Profit
14262064 2 2966 1717 +1249 0x856b0004... BloXroute Max Profit
14261349 1 2946 1697 +1249 everstake 0x88a53ec4... BloXroute Max Profit
14260318 0 2926 1678 +1248 whale_0x8ebd 0xb4ce6162... Ultra Sound
14259905 0 2926 1678 +1248 everstake 0x85fb0503... Agnostic Gnosis
14265244 5 3022 1775 +1247 solo_stakers 0x8527d16c... Ultra Sound
14264999 5 3022 1775 +1247 kiln 0xb26f9666... BloXroute Max Profit
14263204 0 2925 1678 +1247 kiln 0xb26f9666... BloXroute Regulated
14264744 0 2925 1678 +1247 everstake 0x88a53ec4... BloXroute Max Profit
14261256 5 3020 1775 +1245 coinbase 0xb26f9666... Titan Relay
14261484 0 2922 1678 +1244 nethermind_lido 0xb26f9666... Aestus
14266487 10 3115 1871 +1244 coinbase 0x8527d16c... Ultra Sound
14260649 0 2921 1678 +1243 everstake 0xb67eaa5e... BloXroute Max Profit
14263734 1 2939 1697 +1242 everstake 0x856b0004... BloXroute Max Profit
14261943 1 2939 1697 +1242 kiln 0x9129eeb4... Agnostic Gnosis
14264119 3 2977 1736 +1241 0x8527d16c... Ultra Sound
14262390 4 2996 1755 +1241 coinbase 0xb26f9666... Ultra Sound
14266533 13 3169 1929 +1240 kiln 0xb26f9666... BloXroute Max Profit
14263739 5 3014 1775 +1239 everstake 0x88a53ec4... BloXroute Regulated
14264861 0 2916 1678 +1238 kiln 0x853b0078... BloXroute Max Profit
14261797 0 2913 1678 +1235 everstake 0x88857150... Ultra Sound
14265013 0 2913 1678 +1235 everstake 0xb26f9666... Titan Relay
14265980 0 2911 1678 +1233 kiln 0x805e28e6... BloXroute Max Profit
14263516 1 2930 1697 +1233 everstake 0x88a53ec4... BloXroute Regulated
14260876 0 2910 1678 +1232 kiln 0x8527d16c... Ultra Sound
14262973 0 2910 1678 +1232 everstake 0x856b0004... BloXroute Max Profit
14263525 0 2910 1678 +1232 everstake 0x823e0146... Flashbots
14262256 0 2910 1678 +1232 solo_stakers 0xb26f9666... BloXroute Max Profit
14260524 5 3006 1775 +1231 everstake 0x9129eeb4... Ultra Sound
14263861 1 2928 1697 +1231 nethermind_lido 0xb26f9666... Aestus
14263328 1 2928 1697 +1231 everstake 0xb26f9666... Titan Relay
14260815 11 3121 1891 +1230 kiln 0x856b0004... Ultra Sound
14261179 8 3063 1833 +1230 kiln 0x8527d16c... Ultra Sound
14261341 5 3005 1775 +1230 coinbase 0x853b0078... BloXroute Max Profit
14262857 0 2908 1678 +1230 kiln 0xac09aa45... Flashbots
14261822 0 2907 1678 +1229 bitstamp 0xb67eaa5e... BloXroute Regulated
14264864 5 3003 1775 +1228 everstake 0xb26f9666... Titan Relay
14262142 6 3022 1794 +1228 coinbase 0x88857150... Ultra Sound
14260715 0 2905 1678 +1227 nethermind_lido 0x8db2a99d... BloXroute Max Profit
14259845 13 3155 1929 +1226 whale_0x8ebd 0xb26f9666... Titan Relay
14260966 6 3019 1794 +1225 kiln 0xb26f9666... BloXroute Regulated
14259916 0 2903 1678 +1225 kiln 0x8527d16c... Ultra Sound
14260937 0 2903 1678 +1225 kiln 0x96f44633... Flashbots
14260647 10 3096 1871 +1225 kiln 0x8db2a99d... BloXroute Max Profit
14266481 3 2960 1736 +1224 everstake Local Local
14260271 0 2902 1678 +1224 everstake 0x85fb0503... Aestus
14264759 11 3114 1891 +1223 coinbase 0x853b0078... BloXroute Max Profit
Total anomalies: 529

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