Fri, Mar 27, 2026

Propagation anomalies - 2026-03-27

Detection of blocks that propagated slower than expected, attempting to find correlations with blob count.

Show code
display_sql("block_production_timeline", target_date)
View query
WITH
-- Base slots using proposer duty as the source of truth
slots AS (
    SELECT DISTINCT
        slot,
        slot_start_date_time,
        proposer_validator_index
    FROM canonical_beacon_proposer_duty
    WHERE meta_network_name = 'mainnet'
      AND slot_start_date_time >= '2026-03-27' AND slot_start_date_time < '2026-03-27'::date + INTERVAL 1 DAY
),

-- Proposer entity mapping
proposer_entity AS (
    SELECT
        index,
        entity
    FROM ethseer_validator_entity
    WHERE meta_network_name = 'mainnet'
),

-- Blob count per slot
blob_count AS (
    SELECT
        slot,
        uniq(blob_index) AS blob_count
    FROM canonical_beacon_blob_sidecar
    WHERE meta_network_name = 'mainnet'
      AND slot_start_date_time >= '2026-03-27' AND slot_start_date_time < '2026-03-27'::date + INTERVAL 1 DAY
    GROUP BY slot
),

-- Canonical block hash (to verify MEV payload was actually used)
canonical_block AS (
    SELECT DISTINCT
        slot,
        execution_payload_block_hash
    FROM canonical_beacon_block
    WHERE meta_network_name = 'mainnet'
      AND slot_start_date_time >= '2026-03-27' AND slot_start_date_time < '2026-03-27'::date + INTERVAL 1 DAY
),

-- MEV bid timing using timestamp_ms
mev_bids AS (
    SELECT
        slot,
        slot_start_date_time,
        min(timestamp_ms) AS first_bid_timestamp_ms,
        max(timestamp_ms) AS last_bid_timestamp_ms
    FROM mev_relay_bid_trace
    WHERE meta_network_name = 'mainnet'
      AND slot_start_date_time >= '2026-03-27' AND slot_start_date_time < '2026-03-27'::date + INTERVAL 1 DAY
    GROUP BY slot, slot_start_date_time
),

-- MEV payload delivery - join canonical block with delivered payloads
-- Note: Use is_mev flag because ClickHouse LEFT JOIN returns 0 (not NULL) for non-matching rows
-- Get value from proposer_payload_delivered (not bid_trace, which may not have the winning block)
mev_payload AS (
    SELECT
        cb.slot,
        cb.execution_payload_block_hash AS winning_block_hash,
        1 AS is_mev,
        max(pd.value) AS winning_bid_value,
        groupArray(DISTINCT pd.relay_name) AS relay_names,
        any(pd.builder_pubkey) AS winning_builder
    FROM canonical_block cb
    GLOBAL INNER JOIN mev_relay_proposer_payload_delivered pd
        ON cb.slot = pd.slot AND cb.execution_payload_block_hash = pd.block_hash
    WHERE pd.meta_network_name = 'mainnet'
      AND slot_start_date_time >= '2026-03-27' AND slot_start_date_time < '2026-03-27'::date + INTERVAL 1 DAY
    GROUP BY cb.slot, cb.execution_payload_block_hash
),

-- Winning bid timing from bid_trace (may not exist for all MEV blocks)
winning_bid AS (
    SELECT
        bt.slot,
        bt.slot_start_date_time,
        argMin(bt.timestamp_ms, bt.event_date_time) AS winning_bid_timestamp_ms
    FROM mev_relay_bid_trace bt
    GLOBAL INNER JOIN mev_payload mp ON bt.slot = mp.slot AND bt.block_hash = mp.winning_block_hash
    WHERE bt.meta_network_name = 'mainnet'
      AND slot_start_date_time >= '2026-03-27' AND slot_start_date_time < '2026-03-27'::date + INTERVAL 1 DAY
    GROUP BY bt.slot, bt.slot_start_date_time
),

-- Block gossip timing with spread
block_gossip AS (
    SELECT
        slot,
        min(event_date_time) AS block_first_seen,
        max(event_date_time) AS block_last_seen
    FROM libp2p_gossipsub_beacon_block
    WHERE meta_network_name = 'mainnet'
      AND slot_start_date_time >= '2026-03-27' AND slot_start_date_time < '2026-03-27'::date + INTERVAL 1 DAY
    GROUP BY slot
),

-- Column arrival timing: first arrival per column, then min/max of those
column_gossip AS (
    SELECT
        slot,
        min(first_seen) AS first_column_first_seen,
        max(first_seen) AS last_column_first_seen
    FROM (
        SELECT
            slot,
            column_index,
            min(event_date_time) AS first_seen
        FROM libp2p_gossipsub_data_column_sidecar
        WHERE meta_network_name = 'mainnet'
          AND slot_start_date_time >= '2026-03-27' AND slot_start_date_time < '2026-03-27'::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,168
MEV blocks: 6,589 (91.9%)
Local blocks: 579 (8.1%)

Anomaly detection method

The method:

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

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

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

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

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

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

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

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

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

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

fig = go.Figure()

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

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

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

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

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

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

All propagation anomalies

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

Show code
# All anomalies table with selectable text and Lab links
if n_anomalies > 0:
    df_table = df_outliers.sort_values("residual_ms", ascending=False)[
        ["slot", "blob_count", "block_first_seen_ms", "expected_ms", "residual_ms", "proposer", "builder", "relay"]
    ].copy()
    df_table["block_first_seen_ms"] = df_table["block_first_seen_ms"].round(0).astype(int)
    df_table["expected_ms"] = df_table["expected_ms"].round(0).astype(int)
    df_table["residual_ms"] = df_table["residual_ms"].round(0).astype(int)
    
    # Build HTML table
    html = '''
    <style>
    .anomaly-table { border-collapse: collapse; width: 100%; font-family: monospace; font-size: 13px; }
    .anomaly-table th { background: #2c3e50; color: white; padding: 8px 12px; text-align: left; position: sticky; top: 0; }
    .anomaly-table td { padding: 6px 12px; border-bottom: 1px solid #eee; }
    .anomaly-table tr:hover { background: #f5f5f5; }
    .anomaly-table .num { text-align: right; }
    .anomaly-table .delta { background: #ffebee; color: #c62828; font-weight: bold; }
    .anomaly-table a { color: #1976d2; text-decoration: none; }
    .anomaly-table a:hover { text-decoration: underline; }
    .table-container { max-height: 600px; overflow-y: auto; }
    </style>
    <div class="table-container">
    <table class="anomaly-table">
    <thead>
    <tr><th>Slot</th><th class="num">Blobs</th><th class="num">Actual (ms)</th><th class="num">Expected (ms)</th><th class="num">Δ (ms)</th><th>Proposer</th><th>Builder</th><th>Relay</th></tr>
    </thead>
    <tbody>
    '''
    
    for _, row in df_table.iterrows():
        slot_link = f'<a href="https://lab.ethpandaops.io/ethereum/slots/{row["slot"]}" target="_blank">{row["slot"]}</a>'
        html += f'''<tr>
            <td>{slot_link}</td>
            <td class="num">{row["blob_count"]}</td>
            <td class="num">{row["block_first_seen_ms"]}</td>
            <td class="num">{row["expected_ms"]}</td>
            <td class="num delta">+{row["residual_ms"]}</td>
            <td>{row["proposer"]}</td>
            <td>{row["builder"]}</td>
            <td>{row["relay"]}</td>
        </tr>'''
    
    html += '</tbody></table></div>'
    display(HTML(html))
    print(f"\nTotal anomalies: {len(df_table):,}")
else:
    print("No anomalies detected.")
SlotBlobsActual (ms)Expected (ms)Δ (ms)ProposerBuilderRelay
13981732 0 6640 1707 +4933 coinbase Local Local
13980977 0 6342 1707 +4635 whale_0x3212 Local Local
13981486 0 6054 1707 +4347 whale_0x3212 Local Local
13985568 0 5748 1707 +4041 abyss_finance Local Local
13979776 0 4812 1707 +3105 upbit Local Local
13982720 0 4527 1707 +2820 upbit Local Local
13981152 5 4391 1773 +2618 upbit Local Local
13985344 6 4167 1787 +2380 stakefish Local Local
13980955 0 3780 1707 +2073 ether.fi 0x88a53ec4... BloXroute Regulated
13983026 3 3807 1747 +2060 solo_stakers 0x850b00e0... BloXroute Max Profit
13980448 11 3880 1854 +2026 blockdaemon_lido 0x855b00e6... Ultra Sound
13984589 9 3701 1827 +1874 p2porg 0x850b00e0... BloXroute Regulated
13979777 0 3566 1707 +1859 kiln Local Local
13979200 5 3614 1773 +1841 nethermind_lido 0xb26f9666... Aestus
13979173 3 3572 1747 +1825 dappnode Local Local
13985792 5 3590 1773 +1817 liquid_collective 0xb26f9666... Ultra Sound
13981753 2 3547 1733 +1814 xhash 0xb26f9666... Titan Relay
13982261 2 3547 1733 +1814 whale_0x8ebd 0xb4ce6162... Ultra Sound
13984542 1 3517 1720 +1797 ether.fi 0x856b0004... Agnostic Gnosis
13984200 0 3491 1707 +1784 solo_stakers 0x851b00b1... BloXroute Max Profit
13980391 6 3536 1787 +1749 nethermind_lido 0x8db2a99d... Ultra Sound
13979853 2 3469 1733 +1736 solo_stakers Local Local
13984007 1 3451 1720 +1731 coinbase 0xac23f8cc... Aestus
13981472 1 3449 1720 +1729 revolut 0x850b00e0... BloXroute Regulated
13983357 4 3473 1760 +1713 blockdaemon 0xb4ce6162... Ultra Sound
13978944 0 3419 1707 +1712 figment 0x8527d16c... Ultra Sound
13985142 1 3419 1720 +1699 nethermind_lido 0x823e0146... Aestus
13979207 0 3384 1707 +1677 ether.fi 0x853b0078... Agnostic Gnosis
13982733 1 3387 1720 +1667 nethermind_lido 0xb26f9666... Aestus
13985248 1 3386 1720 +1666 stakefish 0x88a53ec4... BloXroute Regulated
13985120 8 3475 1813 +1662 revolut 0xb67eaa5e... BloXroute Regulated
13984716 0 3365 1707 +1658 ether.fi 0x8db2a99d... Flashbots
13979343 1 3376 1720 +1656 blockdaemon 0xb67eaa5e... BloXroute Regulated
13981131 0 3362 1707 +1655 nethermind_lido 0x8527d16c... Ultra Sound
13984512 7 3452 1800 +1652 p2porg 0x855b00e6... BloXroute Max Profit
13984437 5 3420 1773 +1647 nethermind_lido 0x8527d16c... Ultra Sound
13981530 0 3347 1707 +1640 blockdaemon_lido 0xb26f9666... Titan Relay
13980276 6 3427 1787 +1640 blockdaemon 0x8527d16c... Ultra Sound
13983285 2 3367 1733 +1634 whale_0xdc8d 0xb26f9666... Titan Relay
13982249 3 3376 1747 +1629 blockdaemon 0x850b00e0... BloXroute Regulated
13980949 4 3382 1760 +1622 blockdaemon 0xb67eaa5e... BloXroute Max Profit
13985903 0 3326 1707 +1619 whale_0xdc8d 0x850b00e0... BloXroute Regulated
13979228 5 3392 1773 +1619 ether.fi 0x85fb0503... BloXroute Max Profit
13982488 1 3336 1720 +1616 whale_0xdc8d 0xb26f9666... Titan Relay
13981475 1 3331 1720 +1611 whale_0xdc8d 0xb26f9666... Titan Relay
13979157 0 3315 1707 +1608 blockdaemon 0xb67eaa5e... BloXroute Max Profit
13979514 0 3315 1707 +1608 blockdaemon_lido 0x88a53ec4... BloXroute Regulated
13980661 5 3372 1773 +1599 nethermind_lido 0xb26f9666... Aestus
13979525 11 3451 1854 +1597 nethermind_lido 0x8527d16c... Ultra Sound
13980654 5 3369 1773 +1596 luno 0x8527d16c... Ultra Sound
13980094 0 3302 1707 +1595 blockdaemon 0xb26f9666... Titan Relay
13984033 5 3365 1773 +1592 whale_0x8ebd 0x8527d16c... Ultra Sound
13982598 16 3511 1920 +1591 blockdaemon 0x855b00e6... BloXroute Max Profit
13985441 1 3309 1720 +1589 everstake 0xb67eaa5e... BloXroute Max Profit
13980778 4 3347 1760 +1587 whale_0xdc8d 0x85fb0503... BloXroute Max Profit
13980411 2 3317 1733 +1584 blockdaemon_lido 0x823e0146... Ultra Sound
13981907 0 3289 1707 +1582 blockdaemon 0xb26f9666... Titan Relay
13982729 6 3369 1787 +1582 blockdaemon 0x8527d16c... Ultra Sound
13984970 0 3288 1707 +1581 0xb26f9666... Titan Relay
13983081 5 3352 1773 +1579 blockdaemon 0xb67eaa5e... BloXroute Max Profit
13980013 0 3284 1707 +1577 blockdaemon 0x88a53ec4... BloXroute Regulated
13980975 2 3310 1733 +1577 nethermind_lido 0x85fb0503... BloXroute Max Profit
13983675 3 3323 1747 +1576 whale_0xdc8d 0x853b0078... Ultra Sound
13983106 1 3294 1720 +1574 blockdaemon 0xb26f9666... Titan Relay
13982394 0 3280 1707 +1573 0x88a53ec4... BloXroute Regulated
13983112 0 3280 1707 +1573 blockdaemon 0xba003e46... BloXroute Max Profit
13984821 1 3292 1720 +1572 blockdaemon_lido 0xb26f9666... Titan Relay
13980097 8 3384 1813 +1571 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
13983067 0 3274 1707 +1567 whale_0xdc8d 0xb26f9666... Titan Relay
13982550 7 3367 1800 +1567 stakefish_lido Local Local
13985138 1 3283 1720 +1563 blockdaemon 0x850b00e0... BloXroute Max Profit
13981434 2 3288 1733 +1555 blockdaemon 0xb26f9666... Titan Relay
13985886 5 3323 1773 +1550 blockdaemon 0x8a850621... Titan Relay
13985321 12 3416 1867 +1549 blockdaemon_lido 0x8527d16c... Ultra Sound
13982495 2 3282 1733 +1549 stakefish_lido Local Local
13982513 5 3319 1773 +1546 blockdaemon 0x88857150... Ultra Sound
13979579 11 3397 1854 +1543 blockdaemon 0xb67eaa5e... BloXroute Regulated
13980665 0 3249 1707 +1542 p2porg 0x8db2a99d... Ultra Sound
13979087 7 3342 1800 +1542 revolut 0x8527d16c... Ultra Sound
13979332 5 3311 1773 +1538 blockdaemon 0x8527d16c... Ultra Sound
13985031 6 3324 1787 +1537 whale_0xdc8d 0x8527d16c... Ultra Sound
13981680 4 3296 1760 +1536 whale_0xdc8d 0x823e0146... Ultra Sound
13984734 4 3293 1760 +1533 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
13979222 0 3238 1707 +1531 blockdaemon 0x88857150... Ultra Sound
13983667 1 3250 1720 +1530 gateway.fmas_lido 0x855b00e6... BloXroute Max Profit
13983772 2 3262 1733 +1529 whale_0xdc8d 0x8527d16c... Ultra Sound
13981809 7 3327 1800 +1527 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
13980450 0 3232 1707 +1525 blockdaemon_lido 0xb67eaa5e... Titan Relay
13979402 1 3245 1720 +1525 blockdaemon 0x8527d16c... Ultra Sound
13981494 6 3311 1787 +1524 blockdaemon 0x856b0004... BloXroute Max Profit
13983784 3 3270 1747 +1523 whale_0x8ebd 0x823e0146... Ultra Sound
13983021 6 3309 1787 +1522 whale_0x8ebd 0xac23f8cc... BloXroute Max Profit
13981321 0 3213 1707 +1506 everstake 0x88a53ec4... Aestus
13985355 4 3266 1760 +1506 0x8527d16c... Ultra Sound
13981041 12 3366 1867 +1499 whale_0xdc8d 0xb26f9666... Titan Relay
13981945 11 3352 1854 +1498 revolut 0xb67eaa5e... BloXroute Regulated
13979278 6 3285 1787 +1498 gateway.fmas_lido 0x88a53ec4... BloXroute Regulated
13985065 0 3204 1707 +1497 blockdaemon 0xb26f9666... Titan Relay
13982069 0 3201 1707 +1494 figment 0x88857150... Ultra Sound
13981779 5 3261 1773 +1488 p2porg 0x855b00e6... BloXroute Max Profit
13979091 5 3258 1773 +1485 coinbase 0x823e0146... Aestus
13979608 7 3284 1800 +1484 blockdaemon_lido 0x853b0078... BloXroute Max Profit
13983771 2 3217 1733 +1484 coinbase 0x8db2a99d... BloXroute Max Profit
13982616 7 3283 1800 +1483 blockdaemon 0xb26f9666... Titan Relay
13985723 6 3269 1787 +1482 blockdaemon_lido 0xb26f9666... Titan Relay
13985865 6 3268 1787 +1481 blockdaemon_lido 0x8527d16c... Ultra Sound
13983138 5 3253 1773 +1480 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
13981966 0 3184 1707 +1477 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
13979350 2 3209 1733 +1476 blockdaemon 0x855b00e6... BloXroute Max Profit
13978859 2 3209 1733 +1476 coinbase 0x856b0004... Aestus
13984276 9 3301 1827 +1474 figment 0x88a53ec4... BloXroute Regulated
13980265 10 3312 1840 +1472 p2porg 0x88a53ec4... BloXroute Regulated
13980617 1 3191 1720 +1471 whale_0x8ebd 0x857b0038... Ultra Sound
13983528 5 3244 1773 +1471 coinbase 0x8db2a99d... Aestus
13980357 11 3324 1854 +1470 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13985790 3 3217 1747 +1470 whale_0x8ebd 0x8527d16c... Ultra Sound
13984952 5 3243 1773 +1470 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13982663 9 3294 1827 +1467 gateway.fmas_lido 0x850b00e0... BloXroute Regulated
13984132 6 3253 1787 +1466 revolut 0xb26f9666... Titan Relay
13979963 6 3253 1787 +1466 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
13981711 6 3253 1787 +1466 blockdaemon_lido 0x8527d16c... Ultra Sound
13980066 0 3170 1707 +1463 blockdaemon_lido 0x851b00b1... BloXroute Max Profit
13981141 5 3236 1773 +1463 revolut 0xb26f9666... Titan Relay
13983448 10 3300 1840 +1460 blockdaemon_lido 0x855b00e6... BloXroute Max Profit
13980400 8 3273 1813 +1460 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
13982422 7 3258 1800 +1458 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13980844 6 3239 1787 +1452 0xb4ce6162... Ultra Sound
13979241 5 3225 1773 +1452 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
13985845 0 3157 1707 +1450 whale_0x8ebd 0xb26f9666... Titan Relay
13984381 1 3170 1720 +1450 blockdaemon_lido 0xb7c5e609... BloXroute Max Profit
13979541 0 3156 1707 +1449 gateway.fmas_lido 0x88a53ec4... BloXroute Regulated
13983248 1 3164 1720 +1444 blockdaemon 0xb67eaa5e... BloXroute Max Profit
13979101 3 3190 1747 +1443 blockdaemon 0x88a53ec4... BloXroute Max Profit
13985416 8 3253 1813 +1440 whale_0x8ebd 0x8db2a99d... Ultra Sound
13979294 0 3146 1707 +1439 gateway.fmas_lido 0x88857150... Ultra Sound
13979149 5 3211 1773 +1438 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13981999 0 3144 1707 +1437 p2porg 0xb26f9666... Titan Relay
13985151 0 3144 1707 +1437 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
13984543 5 3210 1773 +1437 gateway.fmas_lido 0x855b00e6... BloXroute Max Profit
13983015 7 3234 1800 +1434 revolut 0xb26f9666... Titan Relay
13985680 5 3207 1773 +1434 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
13979503 5 3207 1773 +1434 whale_0x8ebd 0xb4ce6162... Ultra Sound
13985011 6 3215 1787 +1428 p2porg 0xb67eaa5e... BloXroute Regulated
13982831 3 3173 1747 +1426 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13979319 1 3146 1720 +1426 bitstamp 0x8db2a99d... Ultra Sound
13984798 8 3238 1813 +1425 blockdaemon 0xb26f9666... Titan Relay
13982548 6 3211 1787 +1424 kiln 0x823e0146... Flashbots
13985834 3 3170 1747 +1423 kiln 0x823e0146... Flashbots
13980636 9 3250 1827 +1423 p2porg 0x855b00e6... BloXroute Max Profit
13981099 1 3143 1720 +1423 gateway.fmas_lido 0x88a53ec4... BloXroute Regulated
13980059 3 3169 1747 +1422 gateway.fmas_lido 0x8db2a99d... Aestus
13980399 0 3128 1707 +1421 blockdaemon 0xb67eaa5e... BloXroute Max Profit
13982465 5 3194 1773 +1421 blockdaemon_lido 0x853b0078... BloXroute Max Profit
13980620 5 3194 1773 +1421 gateway.fmas_lido 0x88857150... Ultra Sound
13984787 0 3125 1707 +1418 blockdaemon_lido 0x88a53ec4... BloXroute Regulated
13983591 3 3165 1747 +1418 0x850b00e0... BloXroute Max Profit
13982309 5 3189 1773 +1416 whale_0x8ebd 0x8527d16c... Ultra Sound
13979889 5 3189 1773 +1416 p2porg 0x88a53ec4... Aestus
13984293 0 3122 1707 +1415 gateway.fmas_lido 0x8527d16c... Ultra Sound
13983098 0 3121 1707 +1414 p2porg 0x853b0078... BloXroute Max Profit
13981293 10 3251 1840 +1411 blockdaemon_lido 0xb26f9666... Titan Relay
13985649 2 3144 1733 +1411 whale_0xedc6 0x856b0004... Agnostic Gnosis
13984287 8 3223 1813 +1410 coinbase 0x8db2a99d... Aestus
13980539 0 3116 1707 +1409 0x850b00e0... BloXroute Regulated
13982076 0 3116 1707 +1409 whale_0xedc6 0xb26f9666... BloXroute Max Profit
13984920 5 3181 1773 +1408 revolut 0xb26f9666... Titan Relay
13985188 5 3180 1773 +1407 0x855b00e6... BloXroute Max Profit
13984442 0 3112 1707 +1405 whale_0x8ebd 0x88857150... Ultra Sound
13982263 5 3176 1773 +1403 blockdaemon 0xb26f9666... Titan Relay
13985734 5 3175 1773 +1402 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
13985867 1 3117 1720 +1397 kiln 0x8db2a99d... Flashbots
13982471 0 3103 1707 +1396 p2porg 0xb26f9666... Titan Relay
13979061 0 3103 1707 +1396 blockdaemon 0xb26f9666... Titan Relay
13979600 0 3102 1707 +1395 p2porg 0x850b00e0... BloXroute Max Profit
13985592 5 3168 1773 +1395 everstake 0x8db2a99d... Flashbots
13982614 0 3101 1707 +1394 everstake 0xb211df49... Agnostic Gnosis
13982423 5 3166 1773 +1393 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13980469 0 3099 1707 +1392 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13985167 1 3111 1720 +1391 gateway.fmas_lido 0x82c466b9... Ultra Sound
13981931 10 3230 1840 +1390 whale_0x8ebd 0x823e0146... BloXroute Max Profit
13979266 5 3163 1773 +1390 whale_0x8ebd 0xb26f9666... Titan Relay
13980642 1 3109 1720 +1389 coinbase 0x8db2a99d... Aestus
13980236 1 3109 1720 +1389 p2porg 0x85fb0503... BloXroute Regulated
13984685 1 3108 1720 +1388 stader 0xb26f9666... Titan Relay
13980239 5 3161 1773 +1388 coinbase 0x8527d16c... Ultra Sound
13984809 0 3092 1707 +1385 blockdaemon_lido 0xb26f9666... Titan Relay
13984034 5 3158 1773 +1385 p2porg 0x88857150... Ultra Sound
13983390 1 3102 1720 +1382 blockdaemon_lido 0xb26f9666... Titan Relay
13980886 4 3142 1760 +1382 everstake 0x823e0146... Aestus
13984971 8 3195 1813 +1382 gateway.fmas_lido 0x88857150... Ultra Sound
13982231 6 3168 1787 +1381 kiln 0x88a53ec4... BloXroute Regulated
13979096 5 3154 1773 +1381 whale_0x8ebd 0x8527d16c... Ultra Sound
13985635 0 3087 1707 +1380 p2porg 0xb26f9666... Titan Relay
13985676 0 3087 1707 +1380 whale_0x8ebd 0xb26f9666... Titan Relay
13985906 6 3166 1787 +1379 p2porg 0x850b00e0... BloXroute Regulated
13985673 2 3112 1733 +1379 p2porg 0x88857150... Ultra Sound
13983619 5 3152 1773 +1379 kiln 0xb67eaa5e... BloXroute Regulated
13980893 5 3151 1773 +1378 p2porg 0xb67eaa5e... BloXroute Max Profit
13981739 0 3084 1707 +1377 p2porg 0xac23f8cc... BloXroute Regulated
13980387 1 3096 1720 +1376 whale_0x8ebd 0xb26f9666... Titan Relay
13980337 1 3096 1720 +1376 p2porg 0xb67eaa5e... BloXroute Max Profit
13981129 6 3162 1787 +1375 whale_0x8ebd 0x853b0078... Aestus
13982407 1 3094 1720 +1374 everstake 0x823e0146... Flashbots
13981016 6 3160 1787 +1373 0xb67eaa5e... BloXroute Regulated
13983053 0 3079 1707 +1372 whale_0x8ebd 0x82c466b9... Ultra Sound
13979141 0 3077 1707 +1370 kiln 0xb26f9666... Aestus
13980846 4 3130 1760 +1370 p2porg 0x823e0146... Ultra Sound
13979806 9 3194 1827 +1367 gateway.fmas_lido 0x88857150... Ultra Sound
13984229 1 3087 1720 +1367 gateway.fmas_lido 0x823e0146... Flashbots
13979118 0 3073 1707 +1366 coinbase 0xb67eaa5e... BloXroute Regulated
13982678 6 3152 1787 +1365 whale_0x8ebd 0x8527d16c... Ultra Sound
13984390 2 3097 1733 +1364 whale_0x8ebd 0xb7c5e609... BloXroute Max Profit
13980080 3 3110 1747 +1363 whale_0xedc6 0xb67eaa5e... Aestus
13983957 1 3083 1720 +1363 coinbase 0xb26f9666... Aestus
13982673 1 3082 1720 +1362 blockdaemon 0x88857150... Ultra Sound
13984198 13 3242 1880 +1362 whale_0x8ebd 0x8527d16c... Ultra Sound
13979421 6 3148 1787 +1361 gateway.fmas_lido 0x8527d16c... Ultra Sound
13979971 10 3200 1840 +1360 coinbase 0x88a53ec4... BloXroute Regulated
13984808 0 3065 1707 +1358 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13985434 0 3064 1707 +1357 kiln 0x88a53ec4... BloXroute Regulated
13978864 0 3064 1707 +1357 figment 0x8db2a99d... Ultra Sound
13984597 6 3142 1787 +1355 kiln 0x88a53ec4... BloXroute Max Profit
13982187 1 3075 1720 +1355 coinbase 0x856b0004... Agnostic Gnosis
13980163 8 3168 1813 +1355 p2porg 0x856b0004... Aestus
13984862 3 3101 1747 +1354 coinbase 0x8db2a99d... Flashbots
13981337 7 3154 1800 +1354 p2porg 0xb26f9666... Titan Relay
13981272 1 3073 1720 +1353 coinbase 0x88a53ec4... BloXroute Regulated
13983507 0 3059 1707 +1352 blockdaemon 0x8527d16c... Ultra Sound
13983862 1 3072 1720 +1352 coinbase 0x856b0004... Agnostic Gnosis
13984000 13 3231 1880 +1351 stakingfacilities_lido 0xb26f9666... Aestus
13979970 1 3070 1720 +1350 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13982676 0 3055 1707 +1348 abyss_finance 0x8527d16c... Ultra Sound
13983799 6 3135 1787 +1348 p2porg 0x853b0078... Ultra Sound
13982283 2 3081 1733 +1348 everstake 0xac23f8cc... Ultra Sound
13982191 2 3081 1733 +1348 coinbase 0x8527d16c... Ultra Sound
13981136 7 3147 1800 +1347 gateway.fmas_lido 0x8527d16c... Ultra Sound
13982401 1 3066 1720 +1346 whale_0x8ebd 0x857b0038... Ultra Sound
13985546 5 3118 1773 +1345 p2porg 0x850b00e0... BloXroute Regulated
13985623 0 3051 1707 +1344 coinbase 0xb26f9666... Titan Relay
13979077 5 3117 1773 +1344 0x856b0004... Aestus
13979683 0 3050 1707 +1343 p2porg 0x850b00e0... Flashbots
13979787 0 3049 1707 +1342 coinbase 0xac23f8cc... BloXroute Max Profit
13985853 4 3102 1760 +1342 everstake 0x856b0004... BloXroute Max Profit
13978988 0 3048 1707 +1341 p2porg 0x856b0004... Aestus
13982878 7 3141 1800 +1341 kiln 0xb67eaa5e... BloXroute Max Profit
13981313 0 3047 1707 +1340 whale_0x8ebd 0xac23f8cc... Ultra Sound
13985898 1 3060 1720 +1340 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13982250 2 3073 1733 +1340 everstake 0xb67eaa5e... BloXroute Max Profit
13980948 5 3113 1773 +1340 p2porg 0x8db2a99d... Ultra Sound
13983970 5 3113 1773 +1340 everstake 0x8a850621... Titan Relay
13985346 1 3058 1720 +1338 p2porg 0x823e0146... Flashbots
13984452 0 3044 1707 +1337 solo_stakers 0xb67eaa5e... BloXroute Regulated
13982535 6 3122 1787 +1335 0x853b0078... Agnostic Gnosis
13982749 0 3041 1707 +1334 p2porg 0xb26f9666... BloXroute Regulated
13985032 1 3054 1720 +1334 p2porg 0x88857150... Ultra Sound
13983723 3 3080 1747 +1333 kiln 0x823e0146... Flashbots
13979610 11 3186 1854 +1332 p2porg 0x823e0146... BloXroute Regulated
13984965 0 3039 1707 +1332 everstake 0x88857150... Ultra Sound
13981634 0 3039 1707 +1332 kiln 0xb26f9666... BloXroute Regulated
13983683 0 3038 1707 +1331 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13982813 0 3038 1707 +1331 whale_0x8ebd 0xb26f9666... Titan Relay
13985968 6 3118 1787 +1331 kiln 0x8527d16c... Ultra Sound
13984252 5 3104 1773 +1331 p2porg 0x8db2a99d... Aestus
13981586 0 3036 1707 +1329 whale_0x8ebd 0xb26f9666... BloXroute Regulated
13979456 0 3035 1707 +1328 stakingfacilities_lido 0x8db2a99d... Aestus
13979575 9 3155 1827 +1328 figment 0xac23f8cc... Ultra Sound
13983328 0 3033 1707 +1326 everstake 0x853b0078... Agnostic Gnosis
13983617 6 3113 1787 +1326 everstake 0xb4ce6162... Ultra Sound
13983927 1 3046 1720 +1326 figment 0x8527d16c... Ultra Sound
13979813 5 3096 1773 +1323 blockdaemon 0x853b0078... Ultra Sound
13980803 3 3068 1747 +1321 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13983358 1 3041 1720 +1321 whale_0x8ebd 0x8527d16c... Ultra Sound
13983802 5 3093 1773 +1320 0xb26f9666... BloXroute Max Profit
13981998 0 3026 1707 +1319 coinbase 0xb211df49... Agnostic Gnosis
13979123 1 3039 1720 +1319 whale_0x8ebd 0x85fb0503... BloXroute Max Profit
13979544 5 3092 1773 +1319 stakingfacilities_lido 0x8527d16c... Ultra Sound
13985336 1 3038 1720 +1318 everstake 0x8a850621... Titan Relay
13979845 4 3078 1760 +1318 whale_0x8ebd 0x91b123d8... Ultra Sound
13979098 6 3103 1787 +1316 kiln 0x853b0078... Aestus
13980304 6 3101 1787 +1314 whale_0x8ebd 0xb4ce6162... Ultra Sound
13983054 8 3127 1813 +1314 p2porg 0x8527d16c... Ultra Sound
13979314 0 3018 1707 +1311 p2porg 0x85fb0503... BloXroute Max Profit
13980994 3 3058 1747 +1311 p2porg 0xb26f9666... BloXroute Max Profit
13981538 4 3071 1760 +1311 kiln 0x853b0078... Agnostic Gnosis
13983204 16 3231 1920 +1311 coinbase 0x853b0078... Aestus
13982630 0 3017 1707 +1310 kiln 0x88a53ec4... BloXroute Max Profit
13982059 5 3083 1773 +1310 whale_0x8ebd 0x856b0004... Agnostic Gnosis
13978906 0 3016 1707 +1309 coinbase 0xb26f9666... Aestus
13982327 6 3096 1787 +1309 kiln 0x88a53ec4... BloXroute Regulated
13981970 0 3012 1707 +1305 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13983000 3 3052 1747 +1305 kiln 0x8db2a99d... Ultra Sound
13984153 7 3105 1800 +1305 kiln 0x88857150... Ultra Sound
13978885 1 3024 1720 +1304 coinbase 0xb26f9666... Titan Relay
13981167 2 3036 1733 +1303 coinbase 0x853b0078... Agnostic Gnosis
13982304 5 3075 1773 +1302 stakingfacilities_lido 0x88857150... Ultra Sound
13984851 7 3101 1800 +1301 whale_0x8ebd 0x823e0146... BloXroute Max Profit
13981906 0 3007 1707 +1300 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13979164 7 3100 1800 +1300 p2porg 0xb26f9666... BloXroute Regulated
13982645 8 3113 1813 +1300 kiln 0x853b0078... Aestus
13985602 10 3139 1840 +1299 p2porg 0x850b00e0... BloXroute Max Profit
13982655 11 3152 1854 +1298 0xb26f9666... Aestus
13985071 9 3125 1827 +1298 whale_0x8ebd 0xb26f9666... Titan Relay
13983008 5 3071 1773 +1298 whale_0x8ebd 0x8527d16c... Ultra Sound
13981505 6 3084 1787 +1297 whale_0x8ebd 0x8527d16c... Ultra Sound
13985988 16 3217 1920 +1297 gateway.fmas_lido 0x8527d16c... Ultra Sound
13984297 5 3070 1773 +1297 whale_0x8ebd 0x853b0078... Agnostic Gnosis
13981085 0 3002 1707 +1295 whale_0x8ebd 0x8527d16c... Ultra Sound
13985559 9 3122 1827 +1295 p2porg 0x8db2a99d... Flashbots
13978807 16 3215 1920 +1295 p2porg 0x853b0078... Aestus
13982766 0 3001 1707 +1294 kiln 0xb67eaa5e... BloXroute Regulated
13981144 3 3041 1747 +1294 coinbase 0xb26f9666... BloXroute Regulated
13985426 10 3134 1840 +1294 p2porg 0xb26f9666... BloXroute Regulated
13983761 2 3027 1733 +1294 whale_0x8ebd 0x853b0078... Agnostic Gnosis
13985611 7 3092 1800 +1292 p2porg 0xb26f9666... Aestus
13980721 0 2997 1707 +1290 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
13980832 0 2997 1707 +1290 everstake 0x88857150... Ultra Sound
13983716 0 2997 1707 +1290 kiln 0x8527d16c... Ultra Sound
13983326 0 2995 1707 +1288 coinbase 0xb26f9666... Titan Relay
13979218 5 3061 1773 +1288 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13979418 0 2994 1707 +1287 p2porg 0xba003e46... Flashbots
13981539 3 3034 1747 +1287 p2porg 0x8527d16c... Ultra Sound
13978961 1 3007 1720 +1287 coinbase 0x85fb0503... BloXroute Max Profit
13985005 5 3060 1773 +1287 kiln 0xb26f9666... BloXroute Regulated
13983461 5 3060 1773 +1287 whale_0x8ebd 0x8527d16c... Ultra Sound
13984712 3 3033 1747 +1286 kiln 0x856b0004... Titan Relay
13984777 1 3005 1720 +1285 whale_0x8ebd 0x853b0078... Agnostic Gnosis
13985470 8 3098 1813 +1285 p2porg 0x856b0004... Aestus
13983587 5 3057 1773 +1284 everstake 0xb67eaa5e... BloXroute Max Profit
13980460 0 2990 1707 +1283 0xb67eaa5e... BloXroute Regulated
13979299 0 2990 1707 +1283 p2porg 0x855b00e6... BloXroute Max Profit
13981146 7 3083 1800 +1283 coinbase 0xac23f8cc... Flashbots
13985440 7 3083 1800 +1283 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13982451 8 3096 1813 +1283 p2porg 0x853b0078... Aestus
13985478 0 2988 1707 +1281 p2porg 0xb67eaa5e... BloXroute Regulated
13979307 0 2988 1707 +1281 everstake 0x99cba505... BloXroute Max Profit
13985453 8 3094 1813 +1281 p2porg 0x8db2a99d... Aestus
13984956 0 2987 1707 +1280 kiln 0x8527d16c... Ultra Sound
13984991 3 3027 1747 +1280 coinbase 0x8db2a99d... Flashbots
13979246 4 3040 1760 +1280 kiln 0xb67eaa5e... BloXroute Regulated
13980673 10 3120 1840 +1280 p2porg 0xb26f9666... BloXroute Max Profit
13984278 0 2986 1707 +1279 kiln 0x853b0078... Aestus
13981226 0 2986 1707 +1279 kiln 0x8527d16c... Ultra Sound
13985104 1 2998 1720 +1278 coinbase 0xb26f9666... BloXroute Max Profit
13979523 1 2998 1720 +1278 whale_0x8ebd 0x85fb0503... BloXroute Max Profit
13979795 5 3051 1773 +1278 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13985260 7 3077 1800 +1277 coinbase 0x8db2a99d... Flashbots
13979857 5 3049 1773 +1276 coinbase 0x8527d16c... Ultra Sound
13984651 11 3129 1854 +1275 everstake 0xb67eaa5e... BloXroute Regulated
13978902 1 2992 1720 +1272 kiln 0x88a53ec4... BloXroute Regulated
13980228 0 2978 1707 +1271 bitstamp 0x88857150... Ultra Sound
13983243 6 3058 1787 +1271 coinbase 0x853b0078... Agnostic Gnosis
13981294 0 2977 1707 +1270 kiln Local Local
13985234 0 2977 1707 +1270 kiln 0xb26f9666... Aestus
13984302 5 3043 1773 +1270 coinbase 0x856b0004... Aestus
13984722 0 2976 1707 +1269 p2porg 0xb26f9666... BloXroute Max Profit
13981026 0 2975 1707 +1268 kiln 0xb26f9666... Aestus
13978903 0 2974 1707 +1267 kiln 0x823e0146... Ultra Sound
13983715 14 3159 1894 +1265 kiln 0x8527d16c... Ultra Sound
13979334 0 2972 1707 +1265 everstake 0xb67eaa5e... BloXroute Max Profit
13980085 6 3052 1787 +1265 coinbase 0xb26f9666... Titan Relay
13983451 5 3038 1773 +1265 everstake 0x855b00e6... BloXroute Max Profit
13983993 9 3090 1827 +1263 everstake 0x850b00e0... BloXroute Max Profit
13979879 9 3090 1827 +1263 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
13981072 0 2969 1707 +1262 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
13983612 8 3075 1813 +1262 kiln 0xb26f9666... BloXroute Max Profit
13978892 1 2981 1720 +1261 everstake 0xb26f9666... Aestus
13985625 0 2967 1707 +1260 kiln 0x823e0146... BloXroute Max Profit
13984880 0 2966 1707 +1259 kiln 0xa9bd259c... Ultra Sound
13984099 0 2966 1707 +1259 everstake 0xb26f9666... Titan Relay
13985296 1 2979 1720 +1259 whale_0x8ebd 0x853b0078... Agnostic Gnosis
13983063 2 2992 1733 +1259 coinbase 0xb26f9666... BloXroute Regulated
13981950 5 3032 1773 +1259 coinbase 0xb26f9666... BloXroute Regulated
13982485 0 2965 1707 +1258 kiln 0xb67eaa5e... BloXroute Regulated
13981596 11 3110 1854 +1256 kiln 0xb26f9666... BloXroute Regulated
13985918 10 3096 1840 +1256 p2porg 0x853b0078... Agnostic Gnosis
13983238 6 3042 1787 +1255 p2porg 0xb26f9666... BloXroute Max Profit
13980658 5 3028 1773 +1255 coinbase 0x856b0004... Ultra Sound
13981695 3 3001 1747 +1254 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13983060 1 2974 1720 +1254 kiln 0xb26f9666... Titan Relay
13979664 5 3027 1773 +1254 kiln 0x8527d16c... Ultra Sound
13978996 6 3040 1787 +1253 kiln 0xb26f9666... Aestus
13984723 7 3052 1800 +1252 kiln 0x853b0078... Agnostic Gnosis
13981498 5 3025 1773 +1252 kiln 0xb26f9666... BloXroute Regulated
13983163 2 2984 1733 +1251 whale_0x8ebd 0x8db2a99d... Flashbots
13983168 20 3224 1974 +1250 ether.fi 0x8527d16c... Ultra Sound
13982818 5 3023 1773 +1250 everstake 0x88a53ec4... BloXroute Regulated
13981062 15 3156 1907 +1249 whale_0x8ebd 0x823e0146... Ultra Sound
13983062 0 2954 1707 +1247 kiln 0x8527d16c... Ultra Sound
13983039 1 2967 1720 +1247 stader 0x850b00e0... BloXroute Max Profit
13980635 5 3020 1773 +1247 kiln 0xb26f9666... Titan Relay
13983778 1 2966 1720 +1246 kiln 0x853b0078... Agnostic Gnosis
13981990 21 3232 1987 +1245 whale_0x8ebd 0xb26f9666... BloXroute Regulated
13983031 5 3018 1773 +1245 coinbase 0x853b0078... Aestus
13982572 8 3057 1813 +1244 Local Local
13982193 6 3030 1787 +1243 nethermind_lido 0x855b00e6... BloXroute Max Profit
13981123 9 3068 1827 +1241 coinbase 0x853b0078... Aestus
13985509 6 3027 1787 +1240 whale_0x8ee5 0x853b0078... Aestus
13979442 7 3040 1800 +1240 coinbase 0xb26f9666... BloXroute Regulated
13985553 0 2946 1707 +1239 kiln 0x823e0146... BloXroute Max Profit
13982620 0 2946 1707 +1239 everstake 0xb26f9666... Titan Relay
13981495 0 2944 1707 +1237 coinbase 0x8527d16c... Ultra Sound
13979291 1 2953 1720 +1233 whale_0x288c 0x850b00e0... BloXroute Max Profit
13983189 7 3033 1800 +1233 whale_0x8ebd 0x856b0004... Agnostic Gnosis
13981833 10 3073 1840 +1233 coinbase 0xb26f9666... BloXroute Max Profit
13984398 0 2939 1707 +1232 whale_0x8ebd Local Local
13979340 0 2938 1707 +1231 everstake 0xb26f9666... Titan Relay
13978970 5 3004 1773 +1231 0xb26f9666... BloXroute Max Profit
13980864 0 2936 1707 +1229 gateway.fmas_lido 0xb4ce6162... Ultra Sound
13985555 6 3016 1787 +1229 whale_0x8ebd 0x853b0078... Aestus
13983628 13 3109 1880 +1229 whale_0x8ebd Local Local
13985437 2 2962 1733 +1229 everstake 0x850b00e0... BloXroute Max Profit
13978816 5 3001 1773 +1228 whale_0x8ebd 0x853b0078... Aestus
13982671 10 3066 1840 +1226 kraken 0x8527d16c... EthGas
13979552 3 2972 1747 +1225 kraken 0x8527d16c... Ultra Sound
13982474 2 2958 1733 +1225 coinbase 0x853b0078... Aestus
13982387 3 2971 1747 +1224 coinbase 0x850b00e0... BloXroute Max Profit
13981500 9 3051 1827 +1224 coinbase 0x853b0078... Aestus
13981029 5 2997 1773 +1224 kiln Local Local
13980808 0 2930 1707 +1223 whale_0x8ebd 0xb26f9666... BloXroute Regulated
13982344 0 2930 1707 +1223 0xb26f9666... BloXroute Max Profit
13981393 1 2943 1720 +1223 whale_0x8ebd Local Local
13982770 8 3034 1813 +1221 whale_0x8ebd Local Local
13982379 1 2940 1720 +1220 solo_stakers 0xb26f9666... BloXroute Max Profit
13981427 1 2940 1720 +1220 everstake 0xb26f9666... Titan Relay
13980952 11 3073 1854 +1219 everstake 0x8527d16c... Ultra Sound
13980613 0 2926 1707 +1219 everstake 0x8527d16c... Ultra Sound
13983434 5 2992 1773 +1219 stader 0x8527d16c... Ultra Sound
13979875 11 3072 1854 +1218 whale_0x8ebd 0x856b0004... Aestus
13983325 0 2925 1707 +1218 coinbase 0xb26f9666... BloXroute Regulated
13981254 1 2938 1720 +1218 solo_stakers 0x853b0078... Agnostic Gnosis
13983644 3 2964 1747 +1217 everstake 0x8db2a99d... BloXroute Max Profit
13982438 6 3004 1787 +1217 kiln 0x856b0004... Aestus
13979075 1 2937 1720 +1217 kiln 0xb26f9666... BloXroute Max Profit
13985464 1 2937 1720 +1217 kiln 0x853b0078... Aestus
13982430 5 2990 1773 +1217 everstake 0x850b00e0... BloXroute Max Profit
13980727 0 2923 1707 +1216 kiln 0x8527d16c... Ultra Sound
13981347 12 3083 1867 +1216 coinbase 0xb26f9666... BloXroute Regulated
13985941 0 2922 1707 +1215 coinbase 0x856b0004... BloXroute Max Profit
13979355 7 3015 1800 +1215 kiln 0x8527d16c... Ultra Sound
13985463 2 2948 1733 +1215 coinbase 0x853b0078... Aestus
13984414 5 2988 1773 +1215 whale_0x8ebd 0xb26f9666... BloXroute Regulated
13983983 0 2921 1707 +1214 whale_0x8ebd 0xb26f9666... BloXroute Regulated
13983533 0 2919 1707 +1212 kiln 0x8527d16c... Ultra Sound
13983462 0 2918 1707 +1211 everstake 0x853b0078... Agnostic Gnosis
13982042 18 3158 1947 +1211 whale_0x8ebd 0xb26f9666... BloXroute Regulated
13982494 10 3051 1840 +1211 whale_0x8ebd 0xb26f9666... Titan Relay
13981256 2 2943 1733 +1210 whale_0x8ebd 0xb26f9666... BloXroute Regulated
13983703 0 2916 1707 +1209 kiln 0xb26f9666... BloXroute Max Profit
13984344 0 2916 1707 +1209 coinbase 0x853b0078... Agnostic Gnosis
13983061 6 2996 1787 +1209 coinbase Local Local
13983069 6 2996 1787 +1209 everstake 0xb67eaa5e... BloXroute Regulated
13983939 5 2982 1773 +1209 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
13979939 6 2994 1787 +1207 solo_stakers 0x85fb0503... BloXroute Max Profit
13984347 7 3007 1800 +1207 kiln 0x8db2a99d... Aestus
13984440 12 3073 1867 +1206 coinbase 0x8527d16c... Ultra Sound
13985317 2 2939 1733 +1206 kiln 0x850b00e0... BloXroute Max Profit
13980284 3 2952 1747 +1205 0xb67eaa5e... Aestus
13978896 11 3058 1854 +1204 everstake 0xb67eaa5e... BloXroute Max Profit
13982994 0 2910 1707 +1203 kiln 0x805e28e6... BloXroute Max Profit
13979694 6 2990 1787 +1203 whale_0x8ebd 0xb26f9666... BloXroute Regulated
13984095 6 2989 1787 +1202 kiln 0xb26f9666... Titan Relay
13983847 1 2921 1720 +1201 solo_stakers 0x856b0004... BloXroute Max Profit
13979114 0 2907 1707 +1200 everstake 0x851b00b1... BloXroute Max Profit
13980918 0 2907 1707 +1200 everstake 0xb26f9666... Titan Relay
13980169 0 2907 1707 +1200 everstake 0xb26f9666... Titan Relay
13980147 1 2919 1720 +1199 solo_stakers 0xb6c47e9c... Aestus
13979316 0 2905 1707 +1198 kiln 0x850b00e0... BloXroute Max Profit
13981930 0 2904 1707 +1197 solo_stakers 0xb26f9666... BloXroute Max Profit
13985633 0 2904 1707 +1197 bitstamp 0x855b00e6... BloXroute Max Profit
13983319 3 2944 1747 +1197 kiln 0x856b0004... Agnostic Gnosis
13980672 1 2917 1720 +1197 senseinode_lido 0x850b00e0... Flashbots
13981490 1 2917 1720 +1197 everstake 0xb26f9666... Titan Relay
13981940 7 2997 1800 +1197 whale_0x8ebd 0xb26f9666... BloXroute Regulated
13981810 1 2916 1720 +1196 kiln 0xb26f9666... BloXroute Max Profit
13981583 1 2916 1720 +1196 everstake 0x8db2a99d... Aestus
13979336 3 2942 1747 +1195 everstake 0xb26f9666... Titan Relay
13983943 1 2915 1720 +1195 kiln 0xb26f9666... BloXroute Max Profit
Total anomalies: 477

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