Sat, Apr 4, 2026

Propagation anomalies - 2026-04-04

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-04' AND slot_start_date_time < '2026-04-04'::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-04' AND slot_start_date_time < '2026-04-04'::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-04' AND slot_start_date_time < '2026-04-04'::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-04' AND slot_start_date_time < '2026-04-04'::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-04' AND slot_start_date_time < '2026-04-04'::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-04' AND slot_start_date_time < '2026-04-04'::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-04' AND slot_start_date_time < '2026-04-04'::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-04' AND slot_start_date_time < '2026-04-04'::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,190
MEV blocks: 6,566 (91.3%)
Local blocks: 624 (8.7%)

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 = 1687.0 + 16.12 × blob_count (R² = 0.007)
Residual σ = 607.5ms
Anomalies (>2σ slow): 430 (6.0%)
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
14040352 0 11147 1687 +9460 solo_stakers Local Local
14039204 0 4511 1687 +2824 lido Local Local
14038384 0 4171 1687 +2484 solo_stakers Local Local
14039744 0 3845 1687 +2158 upbit Local Local
14042930 0 3797 1687 +2110 solo_stakers Local Local
14040381 0 3764 1687 +2077 whale_0x8ebd Local Local
14040064 1 3713 1703 +2010 ether.fi 0x855b00e6... BloXroute Max Profit
14041352 0 3629 1687 +1942 whale_0x8ebd 0x8db2a99d... Aestus
14041184 0 3601 1687 +1914 stakefish 0x850b00e0... BloXroute Max Profit
14040702 5 3627 1768 +1859 ether.fi 0xb26f9666... Titan Relay
14036630 0 3493 1687 +1806 parafi_lido 0x88857150... Ultra Sound
14038144 0 3478 1687 +1791 stakingfacilities_lido 0x8db2a99d... Flashbots
14039746 8 3597 1816 +1781 lido Local Local
14041983 1 3473 1703 +1770 blockdaemon_lido 0x8527d16c... Ultra Sound
14037331 1 3459 1703 +1756 whale_0x8ebd 0x856b0004... Agnostic Gnosis
14038390 5 3522 1768 +1754 blockdaemon_lido 0x88857150... Ultra Sound
14039739 5 3516 1768 +1748 nethermind_lido 0x88857150... Ultra Sound
14039996 0 3424 1687 +1737 ether.fi 0x853b0078... Agnostic Gnosis
14037387 2 3455 1719 +1736 blockdaemon_lido 0x8527d16c... Ultra Sound
14038238 1 3436 1703 +1733 nethermind_lido 0x8527d16c... Ultra Sound
14041130 6 3505 1784 +1721 blockdaemon_lido 0x823e0146... Ultra Sound
14037376 1 3424 1703 +1721 bitstamp 0x8527d16c... Ultra Sound
14038714 0 3404 1687 +1717 nethermind_lido 0x8527d16c... Ultra Sound
14039650 0 3396 1687 +1709 blockdaemon_lido 0x855b00e6... BloXroute Max Profit
14039159 1 3408 1703 +1705 nethermind_lido 0x823e0146... Aestus
14040506 0 3385 1687 +1698 blockdaemon 0x857b0038... Ultra Sound
14040353 7 3491 1800 +1691 everstake 0x860d4173... Aestus
14038388 0 3373 1687 +1686 nethermind_lido 0xb26f9666... Aestus
14040197 0 3369 1687 +1682 blockdaemon 0x88857150... Ultra Sound
14042528 0 3368 1687 +1681 gateway.fmas_lido 0x8527d16c... Ultra Sound
14039098 5 3448 1768 +1680 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14037814 0 3364 1687 +1677 nethermind_lido 0x856b0004... Agnostic Gnosis
14037565 0 3360 1687 +1673 ether.fi 0x8527d16c... Ultra Sound
14037912 1 3356 1703 +1653 blockdaemon 0xb4ce6162... Ultra Sound
14042936 2 3372 1719 +1653 blockdaemon 0x850b00e0... BloXroute Max Profit
14038495 1 3353 1703 +1650 ether.fi 0x853b0078... Ultra Sound
14036861 1 3348 1703 +1645 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14042230 0 3331 1687 +1644 nethermind_lido 0x99cba505... BloXroute Max Profit
14036561 0 3331 1687 +1644 whale_0xdc8d 0x8527d16c... Ultra Sound
14041459 1 3323 1703 +1620 blockdaemon_lido 0x8527d16c... Ultra Sound
14037496 5 3383 1768 +1615 blockdaemon 0x8527d16c... Ultra Sound
14041505 0 3302 1687 +1615 Local Local
14039946 0 3294 1687 +1607 whale_0x8ebd 0x8a850621... Titan Relay
14042872 1 3309 1703 +1606 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
14038821 8 3421 1816 +1605 blockdaemon 0x8527d16c... Ultra Sound
14038866 5 3372 1768 +1604 luno 0xac23f8cc... Ultra Sound
14037281 0 3290 1687 +1603 luno 0x88a53ec4... BloXroute Regulated
14042476 1 3306 1703 +1603 whale_0xdc8d 0x9129eeb4... Ultra Sound
14039889 6 3375 1784 +1591 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14038392 6 3371 1784 +1587 ether.fi 0xb26f9666... Titan Relay
14041265 8 3403 1816 +1587 blockdaemon 0xb67eaa5e... BloXroute Max Profit
14036450 2 3301 1719 +1582 blockdaemon_lido 0x88857150... Ultra Sound
14042473 0 3264 1687 +1577 blockdaemon 0x8a850621... Titan Relay
14036455 5 3336 1768 +1568 luno 0xb26f9666... Titan Relay
14043247 0 3255 1687 +1568 whale_0xdc8d 0x8db2a99d... BloXroute Regulated
14042809 3 3300 1735 +1565 blockdaemon 0x8527d16c... Ultra Sound
14039440 0 3247 1687 +1560 blockdaemon 0xb67eaa5e... BloXroute Regulated
14039126 0 3244 1687 +1557 coinbase 0x823e0146... Aestus
14037323 5 3321 1768 +1553 blockdaemon_lido 0xb26f9666... Titan Relay
14038713 6 3337 1784 +1553 blockdaemon 0x8527d16c... Ultra Sound
14041241 2 3272 1719 +1553 blockdaemon 0x8527d16c... Ultra Sound
14037878 0 3239 1687 +1552 blockdaemon_lido 0xb67eaa5e... Titan Relay
14041088 1 3254 1703 +1551 p2porg 0x850b00e0... BloXroute Max Profit
14040880 6 3334 1784 +1550 blockdaemon 0xb26f9666... Titan Relay
14036944 0 3232 1687 +1545 revolut 0x88a53ec4... BloXroute Regulated
14038520 0 3230 1687 +1543 blockdaemon_lido 0x8527d16c... Ultra Sound
14039670 6 3322 1784 +1538 luno 0x88857150... Ultra Sound
14037488 0 3219 1687 +1532 blockdaemon_lido 0x8527d16c... Ultra Sound
14040688 1 3234 1703 +1531 figment 0xb4ce6162... Ultra Sound
14037036 5 3294 1768 +1526 0xb26f9666... Titan Relay
14040558 0 3212 1687 +1525 gateway.fmas_lido 0xac23f8cc... BloXroute Max Profit
14040886 7 3324 1800 +1524 revolut 0x8527d16c... Ultra Sound
14041077 10 3369 1848 +1521 0x8527d16c... Ultra Sound
14040048 9 3351 1832 +1519 blockdaemon 0x8a850621... Titan Relay
14038154 5 3286 1768 +1518 p2porg 0x850b00e0... Ultra Sound
14039883 0 3201 1687 +1514 whale_0x8ebd 0x857b0038... Ultra Sound
14039822 5 3280 1768 +1512 revolut 0x856b0004... Ultra Sound
14037629 3 3245 1735 +1510 gateway.fmas_lido 0x855b00e6... BloXroute Max Profit
14038530 1 3212 1703 +1509 blockdaemon 0x853b0078... Ultra Sound
14042892 6 3292 1784 +1508 blockdaemon_lido 0xb4ce6162... Ultra Sound
14041821 1 3211 1703 +1508 revolut 0x88a53ec4... BloXroute Regulated
14043160 3 3242 1735 +1507 whale_0x8ebd 0x88857150... Ultra Sound
14041891 7 3305 1800 +1505 0x88857150... Ultra Sound
14041652 0 3189 1687 +1502 gateway.fmas_lido 0x8527d16c... Ultra Sound
14038810 3 3235 1735 +1500 revolut 0x823e0146... Ultra Sound
14039575 3 3234 1735 +1499 blockdaemon_lido 0xb26f9666... Titan Relay
14040491 10 3344 1848 +1496 blockdaemon_lido 0x855b00e6... BloXroute Max Profit
14038259 5 3262 1768 +1494 blockdaemon 0x88857150... Ultra Sound
14041711 5 3256 1768 +1488 revolut 0xb26f9666... Titan Relay
14041205 0 3174 1687 +1487 gateway.fmas_lido 0xb26f9666... Aestus
14043277 0 3172 1687 +1485 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
14039675 1 3187 1703 +1484 whale_0x8ebd 0x88857150... Ultra Sound
14041642 0 3169 1687 +1482 0x8db2a99d... Ultra Sound
14039516 6 3264 1784 +1480 blockdaemon_lido 0x8527d16c... Ultra Sound
14042500 1 3182 1703 +1479 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14041053 5 3241 1768 +1473 revolut 0xb26f9666... BloXroute Regulated
14043073 1 3173 1703 +1470 solo_stakers Local Local
14042454 16 3409 1945 +1464 0xb67eaa5e... BloXroute Regulated
14040430 1 3165 1703 +1462 coinbase 0x8db2a99d... Aestus
14037805 0 3148 1687 +1461 solo_stakers 0x851b00b1... BloXroute Max Profit
14042098 0 3146 1687 +1459 whale_0x8ebd 0xb4ce6162... Ultra Sound
14038500 0 3143 1687 +1456 whale_0x8ebd 0x8527d16c... Ultra Sound
14037716 0 3143 1687 +1456 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
14039947 1 3155 1703 +1452 p2porg 0xb67eaa5e... BloXroute Max Profit
14039536 6 3233 1784 +1449 p2porg 0x850b00e0... Flashbots
14039176 0 3136 1687 +1449 stakingfacilities_lido 0x8527d16c... Ultra Sound
14043097 1 3152 1703 +1449 p2porg 0x850b00e0... Flashbots
14039301 5 3216 1768 +1448 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
14036718 9 3280 1832 +1448 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14043310 2 3166 1719 +1447 coinbase 0x856b0004... Aestus
14043321 2 3165 1719 +1446 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14041256 6 3227 1784 +1443 whale_0x8ebd 0xb7c5e609... BloXroute Max Profit
14037109 7 3240 1800 +1440 p2porg 0x850b00e0... BloXroute Regulated
14037600 5 3205 1768 +1437 kiln 0xb67eaa5e... BloXroute Regulated
14038876 1 3140 1703 +1437 kiln 0xb67eaa5e... BloXroute Max Profit
14041882 4 3186 1752 +1434 0xb67eaa5e... BloXroute Max Profit
14036966 0 3121 1687 +1434 coinbase 0xb26f9666... Titan Relay
14041586 0 3120 1687 +1433 whale_0x8ebd 0x9129eeb4... Agnostic Gnosis
14042427 6 3214 1784 +1430 gateway.fmas_lido 0x8527d16c... Ultra Sound
14039856 5 3196 1768 +1428 kiln 0xb67eaa5e... BloXroute Max Profit
14037497 5 3195 1768 +1427 whale_0x8ebd 0x823e0146... Ultra Sound
14038468 14 3340 1913 +1427 blockdaemon 0xb26f9666... Titan Relay
14037800 1 3128 1703 +1425 p2porg 0x850b00e0... BloXroute Regulated
14038009 1 3127 1703 +1424 kiln 0x8db2a99d... Flashbots
14039475 6 3205 1784 +1421 whale_0x8ebd 0xac23f8cc... BloXroute Max Profit
14038079 1 3124 1703 +1421 p2porg 0x856b0004... Agnostic Gnosis
14039921 0 3106 1687 +1419 whale_0x8ebd 0xb26f9666... Titan Relay
14038174 7 3216 1800 +1416 p2porg 0xb73d7672... Flashbots
14036468 5 3183 1768 +1415 kiln 0xb26f9666... Titan Relay
14042241 1 3118 1703 +1415 whale_0x8ebd Local Local
14040838 1 3117 1703 +1414 p2porg 0x850b00e0... BloXroute Max Profit
14036666 1 3115 1703 +1412 whale_0x8ebd 0xb26f9666... Titan Relay
14040959 0 3097 1687 +1410 p2porg 0x8db2a99d... Ultra Sound
14040819 8 3225 1816 +1409 whale_0x8ebd 0x8527d16c... Ultra Sound
14038012 0 3089 1687 +1402 coinbase 0xb73d7672... Flashbots
14041547 1 3103 1703 +1400 p2porg 0xb26f9666... Titan Relay
14042078 0 3084 1687 +1397 coinbase 0xb7c5e609... BloXroute Max Profit
14037191 0 3084 1687 +1397 whale_0xc541 0x823e0146... Ultra Sound
14041773 6 3180 1784 +1396 whale_0x8ebd 0x88857150... Ultra Sound
14039212 0 3082 1687 +1395 whale_0x8ebd 0x8527d16c... Ultra Sound
14040763 1 3098 1703 +1395 everstake 0x8db2a99d... Aestus
14041434 3 3130 1735 +1395 whale_0x8ebd 0xb26f9666... Titan Relay
14043346 1 3097 1703 +1394 abyss_finance 0x856b0004... Aestus
14040885 0 3079 1687 +1392 p2porg 0x8527d16c... Ultra Sound
14038995 0 3077 1687 +1390 p2porg 0xb26f9666... Titan Relay
14043261 1 3093 1703 +1390 kiln 0x8db2a99d... BloXroute Max Profit
14039553 6 3173 1784 +1389 blockdaemon_lido 0xac23f8cc... Ultra Sound
14039021 0 3072 1687 +1385 p2porg 0x856b0004... Agnostic Gnosis
14042246 2 3103 1719 +1384 figment 0x8527d16c... Ultra Sound
14042569 2 3103 1719 +1384 p2porg 0xb67eaa5e... BloXroute Regulated
14040084 7 3183 1800 +1383 0x8db2a99d... Ultra Sound
14039216 0 3069 1687 +1382 p2porg 0x8db2a99d... Ultra Sound
14041532 5 3149 1768 +1381 coinbase 0x8527d16c... Ultra Sound
14036844 0 3068 1687 +1381 whale_0x8ebd 0x85fb0503... BloXroute Max Profit
14037940 5 3146 1768 +1378 p2porg 0x853b0078... BloXroute Regulated
14037357 1 3081 1703 +1378 p2porg 0x850b00e0... Flashbots
14041696 1 3081 1703 +1378 blockdaemon 0x8527d16c... Ultra Sound
14039478 5 3145 1768 +1377 whale_0x8ebd 0x823e0146... BloXroute Max Profit
14037914 0 3063 1687 +1376 kiln 0x823e0146... BloXroute Max Profit
14038160 0 3063 1687 +1376 p2porg 0x8db2a99d... BloXroute Max Profit
14041962 1 3076 1703 +1373 kiln 0x8db2a99d... BloXroute Max Profit
14042696 5 3140 1768 +1372 whale_0x8ebd 0x853b0078... BloXroute Max Profit
14043359 0 3058 1687 +1371 kiln 0x823e0146... Aestus
14039740 2 3090 1719 +1371 p2porg 0xb26f9666... Titan Relay
14037727 5 3138 1768 +1370 whale_0x8ebd 0x8527d16c... Ultra Sound
14039871 3 3105 1735 +1370 coinbase 0xac23f8cc... Flashbots
14036825 0 3056 1687 +1369 coinbase 0x85fb0503... Aestus
14042467 3 3103 1735 +1368 whale_0x8ebd 0x88857150... Ultra Sound
14037978 5 3135 1768 +1367 0x850b00e0... BloXroute Max Profit
14037855 10 3215 1848 +1367 0x8527d16c... Ultra Sound
14039549 1 3069 1703 +1366 0x853b0078... Aestus
14037468 10 3214 1848 +1366 p2porg 0x850b00e0... BloXroute Regulated
14037778 0 3050 1687 +1363 coinbase 0x8527d16c... Ultra Sound
14041519 0 3050 1687 +1363 kiln 0xb67eaa5e... BloXroute Regulated
14036812 3 3097 1735 +1362 coinbase 0x85fb0503... BloXroute Max Profit
14042172 0 3048 1687 +1361 kiln 0xb67eaa5e... BloXroute Max Profit
14039734 5 3128 1768 +1360 whale_0x8ebd 0xb26f9666... Titan Relay
14041495 0 3047 1687 +1360 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14039364 0 3047 1687 +1360 0xb67eaa5e... BloXroute Max Profit
14041355 10 3208 1848 +1360 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
14037799 0 3046 1687 +1359 coinbase 0x853b0078... Agnostic Gnosis
14043589 1 3062 1703 +1359 whale_0xc541 0x8527d16c... Ultra Sound
14040471 2 3078 1719 +1359 whale_0x8ebd 0x823e0146... Aestus
14039167 0 3045 1687 +1358 coinbase 0x853b0078... Agnostic Gnosis
14037536 0 3044 1687 +1357 gateway.fmas_lido 0x855b00e6... Flashbots
14043066 0 3044 1687 +1357 whale_0x8ebd 0x856b0004... Agnostic Gnosis
14038580 0 3043 1687 +1356 0xac23f8cc... Aestus
14038284 2 3074 1719 +1355 coinbase 0x8527d16c... Ultra Sound
14042864 1 3057 1703 +1354 gateway.fmas_lido 0x855b00e6... Flashbots
14037820 3 3088 1735 +1353 p2porg 0xb26f9666... Titan Relay
14040694 0 3039 1687 +1352 coinbase 0xac23f8cc... Ultra Sound
14037156 0 3039 1687 +1352 figment 0x88a53ec4... BloXroute Regulated
14041940 5 3117 1768 +1349 coinbase 0x823e0146... BloXroute Max Profit
14040120 6 3133 1784 +1349 whale_0x8ebd 0xb26f9666... Titan Relay
14041977 2 3068 1719 +1349 whale_0x8ebd 0xb26f9666... Titan Relay
14037312 0 3034 1687 +1347 kiln 0xb67eaa5e... BloXroute Max Profit
14041511 1 3048 1703 +1345 lido Local Local
14039954 6 3128 1784 +1344 0x8527d16c... Ultra Sound
14041304 6 3128 1784 +1344 p2porg 0x8527d16c... Ultra Sound
14040362 3 3079 1735 +1344 p2porg 0x8527d16c... Ultra Sound
14038056 0 3030 1687 +1343 p2porg 0x8db2a99d... Ultra Sound
14036419 9 3175 1832 +1343 coinbase 0xb67eaa5e... BloXroute Max Profit
14042209 5 3110 1768 +1342 whale_0x8ebd 0x8db2a99d... Flashbots
14038507 0 3029 1687 +1342 kiln 0xb67eaa5e... BloXroute Max Profit
14041598 0 3029 1687 +1342 kiln 0x8db2a99d... BloXroute Max Profit
14039119 0 3029 1687 +1342 p2porg 0x8527d16c... Ultra Sound
14042490 1 3045 1703 +1342 kiln 0xb67eaa5e... BloXroute Regulated
14037513 0 3028 1687 +1341 whale_0x8ebd 0xb4ce6162... Ultra Sound
14042674 4 3092 1752 +1340 whale_0x8ebd 0x8527d16c... Ultra Sound
14036864 0 3027 1687 +1340 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14039979 4 3091 1752 +1339 p2porg 0x856b0004... Agnostic Gnosis
14042458 1 3042 1703 +1339 coinbase 0xb67eaa5e... BloXroute Regulated
14037121 1 3042 1703 +1339 whale_0x8ebd 0x8db2a99d... Ultra Sound
14042268 0 3025 1687 +1338 p2porg 0xb5a65d00... Ultra Sound
14036751 4 3089 1752 +1337 coinbase 0x8db2a99d... Flashbots
14042923 0 3023 1687 +1336 p2porg 0xac23f8cc... Ultra Sound
14042164 0 3023 1687 +1336 whale_0x8ebd 0x88857150... Ultra Sound
14039174 8 3151 1816 +1335 p2porg 0x850b00e0... BloXroute Regulated
14042514 0 3022 1687 +1335 coinbase 0xb26f9666... Titan Relay
14041383 2 3054 1719 +1335 whale_0x8ebd 0x8527d16c... Ultra Sound
14038569 2 3054 1719 +1335 p2porg 0x856b0004... Agnostic Gnosis
14040105 2 3053 1719 +1334 coinbase 0x853b0078... Aestus
14036967 5 3101 1768 +1333 whale_0xedc6 0x85fb0503... BloXroute Max Profit
14039150 6 3117 1784 +1333 figment 0x9129eeb4... Ultra Sound
14038887 0 3020 1687 +1333 kiln 0xb26f9666... Titan Relay
14041647 1 3036 1703 +1333 stader 0xb5a65d00... Ultra Sound
14037075 1 3036 1703 +1333 0x85fb0503... BloXroute Max Profit
14041059 1 3036 1703 +1333 coinbase 0x8527d16c... Ultra Sound
14040938 1 3034 1703 +1331 p2porg 0xb26f9666... BloXroute Max Profit
14040498 0 3017 1687 +1330 coinbase 0xb67eaa5e... BloXroute Regulated
14040900 6 3113 1784 +1329 coinbase 0x8527d16c... Ultra Sound
14040235 0 3016 1687 +1329 0xb67eaa5e... BloXroute Max Profit
14039383 0 3015 1687 +1328 kiln 0x823e0146... BloXroute Max Profit
14037172 6 3111 1784 +1327 stader 0x850b00e0... BloXroute Max Profit
14036632 0 3014 1687 +1327 0x85fb0503... BloXroute Max Profit
14036989 1 3030 1703 +1327 coinbase 0x85fb0503... BloXroute Max Profit
14038745 3 3062 1735 +1327 whale_0x8ebd 0x8db2a99d... Flashbots
14041384 0 3012 1687 +1325 whale_0x8ebd 0x8527d16c... Ultra Sound
14043545 9 3156 1832 +1324 p2porg 0xb26f9666... Titan Relay
14038900 0 3010 1687 +1323 coinbase 0xb5a65d00... Aestus
14043511 0 3009 1687 +1322 everstake 0x9129eeb4... Agnostic Gnosis
14036771 3 3057 1735 +1322 p2porg 0xb26f9666... BloXroute Max Profit
14036938 5 3089 1768 +1321 coinbase 0xb26f9666... Titan Relay
14037612 6 3105 1784 +1321 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14040331 5 3088 1768 +1320 whale_0x23be 0xac23f8cc... Ultra Sound
14039916 0 3007 1687 +1320 whale_0x8ebd 0x8a850621... Titan Relay
14038925 0 3007 1687 +1320 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14039207 4 3071 1752 +1319 kiln 0x8db2a99d... BloXroute Max Profit
14039964 5 3086 1768 +1318 0x8527d16c... Ultra Sound
14042424 2 3036 1719 +1317 kiln 0x8527d16c... Ultra Sound
14039128 2 3036 1719 +1317 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14039089 1 3019 1703 +1316 whale_0x8ebd 0x823e0146... BloXroute Max Profit
14041067 0 3002 1687 +1315 p2porg 0xb4ce6162... Ultra Sound
14040650 0 3001 1687 +1314 coinbase 0xb26f9666... Titan Relay
14039222 0 3001 1687 +1314 coinbase 0xb67eaa5e... BloXroute Regulated
14038276 0 3000 1687 +1313 coinbase 0xb26f9666... Titan Relay
14043555 1 3016 1703 +1313 kiln 0xb26f9666... Titan Relay
14038635 0 2999 1687 +1312 whale_0x8ebd 0x88857150... Ultra Sound
14038060 1 3015 1703 +1312 0x855b00e6... Flashbots
14041054 1 3015 1703 +1312 kiln 0x8db2a99d... Flashbots
14041764 0 2998 1687 +1311 coinbase 0x8527d16c... Ultra Sound
14041951 1 3014 1703 +1311 kiln 0x856b0004... Agnostic Gnosis
14042415 6 3094 1784 +1310 p2porg 0x853b0078... Aestus
14042009 0 2997 1687 +1310 kiln 0x856b0004... Agnostic Gnosis
14042061 11 3174 1864 +1310 whale_0x8ebd 0xb5a65d00... Ultra Sound
14040226 1 3012 1703 +1309 whale_0x8ebd 0xa965c911... Ultra Sound
14036677 10 3157 1848 +1309 solo_stakers 0xac23f8cc... Ultra Sound
14041393 4 3060 1752 +1308 coinbase 0xb26f9666... Titan Relay
14040075 1 3011 1703 +1308 everstake 0xb67eaa5e... BloXroute Max Profit
14040325 5 3075 1768 +1307 kiln 0x856b0004... Aestus
14042032 0 2994 1687 +1307 whale_0x8ebd 0x853b0078... Agnostic Gnosis
14036472 1 3010 1703 +1307 whale_0x8ebd 0x85fb0503... BloXroute Max Profit
14041687 6 3090 1784 +1306 whale_0x8ebd 0x8527d16c... Ultra Sound
14043471 1 3009 1703 +1306 kiln 0xb67eaa5e... BloXroute Max Profit
14040441 2 3025 1719 +1306 whale_0x8ebd 0x823e0146... BloXroute Max Profit
14039279 6 3089 1784 +1305 whale_0x8ebd 0x853b0078... Agnostic Gnosis
14039011 4 3055 1752 +1303 kiln 0x88857150... Ultra Sound
14041417 13 3200 1897 +1303 whale_0x8ebd 0x856b0004... Aestus
14040299 5 3071 1768 +1303 kiln 0x856b0004... Aestus
14040754 1 3005 1703 +1302 coinbase 0x853b0078... Aestus
14039306 10 3150 1848 +1302 whale_0x8ebd 0xb26f9666... Titan Relay
14039223 10 3148 1848 +1300 p2porg 0xb26f9666... Titan Relay
14041013 7 3099 1800 +1299 kiln 0x8db2a99d... Ultra Sound
14039434 8 3115 1816 +1299 0x8db2a99d... Flashbots
14040494 0 2986 1687 +1299 kiln 0x853b0078... Aestus
14038035 5 3066 1768 +1298 0x88857150... Ultra Sound
14042167 0 2985 1687 +1298 kiln 0xb67eaa5e... BloXroute Max Profit
14043083 0 2984 1687 +1297 whale_0x8ebd 0x853b0078... Aestus
14041819 1 3000 1703 +1297 whale_0x8ebd 0x853b0078... Agnostic Gnosis
14038393 5 3063 1768 +1295 whale_0xedc6 0xb26f9666... BloXroute Max Profit
14040685 3 3030 1735 +1295 kiln 0x8527d16c... Ultra Sound
14040636 6 3076 1784 +1292 kiln 0xb26f9666... Titan Relay
14043095 0 2978 1687 +1291 whale_0x8ebd 0xb26f9666... Titan Relay
14040984 0 2977 1687 +1290 coinbase 0x823e0146... BloXroute Max Profit
14039514 0 2977 1687 +1290 everstake 0xb26f9666... Titan Relay
14040846 1 2993 1703 +1290 everstake 0x823e0146... Aestus
14041389 1 2992 1703 +1289 coinbase 0xb5a65d00... Ultra Sound
14043269 1 2992 1703 +1289 kiln 0xac23f8cc... Flashbots
14042304 5 3056 1768 +1288 whale_0x8ebd 0xb26f9666... Titan Relay
14039556 5 3056 1768 +1288 p2porg 0x8db2a99d... Flashbots
14042229 6 3072 1784 +1288 whale_0x8ebd 0x856b0004... Aestus
14042171 0 2975 1687 +1288 coinbase 0xb67eaa5e... BloXroute Max Profit
14039297 1 2991 1703 +1288 kiln 0x856b0004... Aestus
14038685 4 3039 1752 +1287 gateway.fmas_lido 0x855b00e6... BloXroute Max Profit
14040973 13 3183 1897 +1286 whale_0x8ebd 0x856b0004... Agnostic Gnosis
14039667 5 3054 1768 +1286 kiln 0xb67eaa5e... BloXroute Regulated
14039711 0 2973 1687 +1286 everstake 0xb4ce6162... Ultra Sound
14040059 0 2972 1687 +1285 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
14040797 0 2971 1687 +1284 kiln 0xb67eaa5e... BloXroute Regulated
14037678 0 2971 1687 +1284 kiln 0x8db2a99d... Flashbots
14039149 0 2970 1687 +1283 coinbase 0xb26f9666... BloXroute Regulated
14040162 0 2970 1687 +1283 solo_stakers 0x850b00e0... BloXroute Max Profit
14041606 0 2970 1687 +1283 kiln 0x855b00e6... BloXroute Max Profit
14039948 6 3066 1784 +1282 whale_0x8ebd 0xb26f9666... Titan Relay
14043299 1 2985 1703 +1282 everstake 0x8527d16c... Ultra Sound
14041401 2 3001 1719 +1282 everstake 0xb26f9666... Aestus
14041850 4 3033 1752 +1281 kiln 0x88857150... Ultra Sound
14042236 1 2984 1703 +1281 p2porg 0xb26f9666... BloXroute Max Profit
14040415 1 2984 1703 +1281 kiln 0xb26f9666... BloXroute Regulated
14042466 1 2983 1703 +1280 kiln 0x8527d16c... Ultra Sound
14038194 1 2983 1703 +1280 kiln 0xb26f9666... Aestus
14038822 5 3047 1768 +1279 coinbase 0x8527d16c... Ultra Sound
14040008 0 2965 1687 +1278 whale_0x8ebd 0x856b0004... Agnostic Gnosis
14037436 1 2981 1703 +1278 coinbase 0x853b0078... Agnostic Gnosis
14037804 5 3045 1768 +1277 kiln 0x8db2a99d... Flashbots
14041667 5 3044 1768 +1276 whale_0x8ebd 0x88857150... Ultra Sound
14041050 5 3044 1768 +1276 whale_0x8ebd Local Local
14037947 0 2963 1687 +1276 coinbase 0x88857150... Ultra Sound
14041644 1 2979 1703 +1276 kiln 0x856b0004... Ultra Sound
14040751 0 2962 1687 +1275 kiln 0x99dbe3e8... Agnostic Gnosis
14040916 0 2962 1687 +1275 kiln 0xac23f8cc... Flashbots
14041238 4 3024 1752 +1272 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14040976 1 2975 1703 +1272 kiln 0x8527d16c... Ultra Sound
14038426 7 3070 1800 +1270 coinbase 0x8db2a99d... Flashbots
14036436 1 2973 1703 +1270 coinbase 0x8527d16c... Ultra Sound
14039688 3 3005 1735 +1270 kiln 0xb67eaa5e... BloXroute Max Profit
14042463 2 2987 1719 +1268 kiln 0x8527d16c... Ultra Sound
14038099 1 2970 1703 +1267 whale_0x8ebd 0x856b0004... Aestus
14040493 2 2986 1719 +1267 whale_0x8ebd 0x856b0004... Aestus
14037713 1 2968 1703 +1265 everstake 0x8db2a99d... Ultra Sound
14040119 0 2951 1687 +1264 bitstamp 0xb4ce6162... Ultra Sound
14040956 1 2967 1703 +1264 everstake 0xb26f9666... Titan Relay
14038081 1 2967 1703 +1264 coinbase 0xb26f9666... BloXroute Max Profit
14038800 5 3031 1768 +1263 kiln 0x88857150... Ultra Sound
14038330 5 3031 1768 +1263 kiln 0x856b0004... Agnostic Gnosis
14039550 7 3063 1800 +1263 kiln 0x8527d16c... Ultra Sound
14039346 0 2950 1687 +1263 kiln 0x8527d16c... Ultra Sound
14038461 0 2950 1687 +1263 kiln 0x823e0146... Ultra Sound
14042861 0 2950 1687 +1263 kiln 0x853b0078... Agnostic Gnosis
14040276 6 3046 1784 +1262 coinbase 0xb26f9666... Titan Relay
14039619 1 2965 1703 +1262 kiln 0xb26f9666... Titan Relay
14042003 3 2997 1735 +1262 coinbase 0xb26f9666... BloXroute Regulated
14041204 9 3093 1832 +1261 coinbase 0x850b00e0... BloXroute Max Profit
14036873 5 3027 1768 +1259 kiln Local Local
14036438 0 2945 1687 +1258 coinbase 0xb26f9666... BloXroute Regulated
14036636 0 2944 1687 +1257 kiln 0xb26f9666... Titan Relay
14043158 0 2943 1687 +1256 kiln 0x856b0004... Agnostic Gnosis
14037785 4 3006 1752 +1254 kiln 0x8db2a99d... Ultra Sound
14039589 4 3006 1752 +1254 coinbase 0xb26f9666... Titan Relay
14038371 5 3022 1768 +1254 everstake 0xb67eaa5e... BloXroute Max Profit
14039988 0 2941 1687 +1254 kiln 0xb4ce6162... Ultra Sound
14042657 1 2957 1703 +1254 stakingfacilities_lido Local Local
14039654 5 3021 1768 +1253 coinbase 0x850b00e0... Flashbots
14038721 0 2939 1687 +1252 whale_0x8ebd 0xb67eaa5e... Ultra Sound
14039095 0 2939 1687 +1252 everstake 0x8527d16c... Ultra Sound
14036661 1 2955 1703 +1252 kiln 0x85fb0503... BloXroute Max Profit
14036926 1 2955 1703 +1252 everstake 0x88a53ec4... BloXroute Regulated
14043134 5 3018 1768 +1250 coinbase 0x8527d16c... Ultra Sound
14041347 4 3000 1752 +1248 everstake 0x8db2a99d... BloXroute Max Profit
14039621 8 3064 1816 +1248 kiln 0x8527d16c... Ultra Sound
14043084 1 2951 1703 +1248 kiln 0x88857150... Ultra Sound
14040883 3 2983 1735 +1248 everstake 0xb26f9666... Titan Relay
14042743 1 2950 1703 +1247 kiln 0xb26f9666... Aestus
14042421 1 2949 1703 +1246 whale_0x8ebd 0x853b0078... Aestus
14040766 5 3013 1768 +1245 coinbase 0x853b0078... Aestus
14038518 1 2948 1703 +1245 everstake 0x8527d16c... Ultra Sound
14040403 0 2930 1687 +1243 coinbase 0xb26f9666... BloXroute Max Profit
14038113 1 2946 1703 +1243 stader 0xb26f9666... Titan Relay
14038422 5 3010 1768 +1242 kiln 0x8527d16c... Ultra Sound
14041805 1 2945 1703 +1242 stader 0x853b0078... Agnostic Gnosis
14041720 14 3154 1913 +1241 p2porg 0xb26f9666... BloXroute Max Profit
14040255 7 3041 1800 +1241 coinbase 0xb26f9666... Titan Relay
14040300 0 2928 1687 +1241 everstake 0xb26f9666... Titan Relay
14042123 0 2927 1687 +1240 everstake 0x855b00e6... BloXroute Max Profit
14041942 3 2975 1735 +1240 kiln 0x8527d16c... Ultra Sound
14039037 0 2926 1687 +1239 everstake 0xb26f9666... Titan Relay
14037427 0 2926 1687 +1239 coinbase 0x850b00e0... BloXroute Max Profit
14036727 6 3022 1784 +1238 coinbase 0x853b0078... Agnostic Gnosis
14042076 6 3021 1784 +1237 everstake 0x88857150... Ultra Sound
14042493 2 2956 1719 +1237 everstake 0xb67eaa5e... BloXroute Regulated
14037667 4 2988 1752 +1236 kiln 0xb26f9666... Titan Relay
14036893 0 2923 1687 +1236 everstake 0x85fb0503... Aestus
14040581 0 2923 1687 +1236 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14038603 3 2971 1735 +1236 coinbase 0xb26f9666... BloXroute Max Profit
14043597 3 2971 1735 +1236 kiln 0x8527d16c... Ultra Sound
14042532 4 2987 1752 +1235 kiln 0x853b0078... Aestus
14041677 11 3099 1864 +1235 p2porg 0xb26f9666... BloXroute Max Profit
14041651 7 3034 1800 +1234 stakingfacilities_lido 0xb4ce6162... Ultra Sound
14042623 0 2921 1687 +1234 stader 0xb4ce6162... Ultra Sound
14040684 0 2920 1687 +1233 coinbase 0xb26f9666... BloXroute Regulated
14040011 1 2936 1703 +1233 coinbase 0xb26f9666... BloXroute Max Profit
14037528 1 2936 1703 +1233 everstake 0x850b00e0... BloXroute Max Profit
14042556 0 2919 1687 +1232 kiln 0x851b00b1... BloXroute Max Profit
14043281 0 2919 1687 +1232 everstake 0x823e0146... Ultra Sound
14037584 1 2935 1703 +1232 whale_0x8ebd 0x853b0078... BloXroute Max Profit
14038478 11 3096 1864 +1232 whale_0x8ebd 0x8527d16c... Ultra Sound
14038398 3 2967 1735 +1232 everstake 0x855b00e6... Flashbots
14037736 0 2918 1687 +1231 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14039189 1 2934 1703 +1231 solo_stakers 0xb26f9666... Aestus
14040062 1 2933 1703 +1230 kiln Local Local
14038172 1 2933 1703 +1230 kiln 0x856b0004... Agnostic Gnosis
14041294 0 2916 1687 +1229 everstake 0xb26f9666... Titan Relay
14039698 1 2932 1703 +1229 coinbase 0xb26f9666... BloXroute Regulated
14040291 6 3010 1784 +1226 kiln 0xb67eaa5e... BloXroute Max Profit
14040370 0 2912 1687 +1225 everstake 0xb26f9666... Titan Relay
14040851 3 2960 1735 +1225 whale_0x8ebd 0x856b0004... Aestus
14038838 5 2990 1768 +1222 coinbase 0x856b0004... Aestus
14043376 1 2925 1703 +1222 everstake 0xb26f9666... Titan Relay
14042879 0 2907 1687 +1220 stader 0xb26f9666... Titan Relay
14043016 0 2907 1687 +1220 kiln 0xb26f9666... BloXroute Regulated
14039302 1 2923 1703 +1220 kiln 0x853b0078... Aestus
14041601 10 3068 1848 +1220 coinbase 0x856b0004... Agnostic Gnosis
14043049 0 2906 1687 +1219 everstake 0x8527d16c... Ultra Sound
14042560 1 2922 1703 +1219 0x8a850621... Ultra Sound
14042103 2 2937 1719 +1218 coinbase 0xb26f9666... BloXroute Regulated
14042769 4 2968 1752 +1216 stader 0x853b0078... Aestus
14038717 0 2903 1687 +1216 everstake 0xac23f8cc... Aestus
14040578 1 2919 1703 +1216 everstake 0xb67eaa5e... BloXroute Max Profit
14039466 2 2935 1719 +1216 kiln 0x856b0004... Aestus
14037205 7 3015 1800 +1215 coinbase 0x8527d16c... Ultra Sound
Total anomalies: 430

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