Sat, Mar 14, 2026

Propagation anomalies - 2026-03-14

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-14' AND slot_start_date_time < '2026-03-14'::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-14' AND slot_start_date_time < '2026-03-14'::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-14' AND slot_start_date_time < '2026-03-14'::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-14' AND slot_start_date_time < '2026-03-14'::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-14' AND slot_start_date_time < '2026-03-14'::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-14' AND slot_start_date_time < '2026-03-14'::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-14' AND slot_start_date_time < '2026-03-14'::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-14' AND slot_start_date_time < '2026-03-14'::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,179
MEV blocks: 6,612 (92.1%)
Local blocks: 567 (7.9%)

Anomaly detection method

The method:

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

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

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

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

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

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

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

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

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

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

fig = go.Figure()

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

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

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

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

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

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

All propagation anomalies

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

Show code
# All anomalies table with selectable text and Lab links
if n_anomalies > 0:
    df_table = df_outliers.sort_values("residual_ms", ascending=False)[
        ["slot", "blob_count", "block_first_seen_ms", "expected_ms", "residual_ms", "proposer", "builder", "relay"]
    ].copy()
    df_table["block_first_seen_ms"] = df_table["block_first_seen_ms"].round(0).astype(int)
    df_table["expected_ms"] = df_table["expected_ms"].round(0).astype(int)
    df_table["residual_ms"] = df_table["residual_ms"].round(0).astype(int)
    
    # Build HTML table
    html = '''
    <style>
    .anomaly-table { border-collapse: collapse; width: 100%; font-family: monospace; font-size: 13px; }
    .anomaly-table th { background: #2c3e50; color: white; padding: 8px 12px; text-align: left; position: sticky; top: 0; }
    .anomaly-table td { padding: 6px 12px; border-bottom: 1px solid #eee; }
    .anomaly-table tr:hover { background: #f5f5f5; }
    .anomaly-table .num { text-align: right; }
    .anomaly-table .delta { background: #ffebee; color: #c62828; font-weight: bold; }
    .anomaly-table a { color: #1976d2; text-decoration: none; }
    .anomaly-table a:hover { text-decoration: underline; }
    .table-container { max-height: 600px; overflow-y: auto; }
    </style>
    <div class="table-container">
    <table class="anomaly-table">
    <thead>
    <tr><th>Slot</th><th class="num">Blobs</th><th class="num">Actual (ms)</th><th class="num">Expected (ms)</th><th class="num">Δ (ms)</th><th>Proposer</th><th>Builder</th><th>Relay</th></tr>
    </thead>
    <tbody>
    '''
    
    for _, row in df_table.iterrows():
        slot_link = f'<a href="https://lab.ethpandaops.io/ethereum/slots/{row["slot"]}" target="_blank">{row["slot"]}</a>'
        html += f'''<tr>
            <td>{slot_link}</td>
            <td class="num">{row["blob_count"]}</td>
            <td class="num">{row["block_first_seen_ms"]}</td>
            <td class="num">{row["expected_ms"]}</td>
            <td class="num delta">+{row["residual_ms"]}</td>
            <td>{row["proposer"]}</td>
            <td>{row["builder"]}</td>
            <td>{row["relay"]}</td>
        </tr>'''
    
    html += '</tbody></table></div>'
    display(HTML(html))
    print(f"\nTotal anomalies: {len(df_table):,}")
else:
    print("No anomalies detected.")
SlotBlobsActual (ms)Expected (ms)Δ (ms)ProposerBuilderRelay
13888864 0 5308 1678 +3630 abyss_finance Local Local
13888320 0 4909 1678 +3231 upbit Local Local
13890063 0 4095 1678 +2417 whale_0x2f38 Local Local
13886663 0 3952 1678 +2274 coinbase Local Local
13890272 0 3940 1678 +2262 coinbase Local Local
13887450 5 3865 1760 +2105 solo_stakers Local Local
13891264 0 3734 1678 +2056 luno 0xb26f9666... Titan Relay
13886944 4 3787 1743 +2044 rocketpool 0x850b00e0... Aestus
13887200 0 3669 1678 +1991 binance 0xb26f9666... Titan Relay
13887755 0 3646 1678 +1968 ether.fi Local Local
13890336 0 3616 1678 +1938 blockdaemon_lido 0x88857150... Ultra Sound
13886643 1 3610 1694 +1916 whale_0xeed8 Local Local
13889248 9 3715 1826 +1889 whale_0x9212 0xb67eaa5e... Titan Relay
13885760 5 3636 1760 +1876 blockdaemon 0x8a850621... Titan Relay
13889546 1 3532 1694 +1838 whale_0x8ebd 0x856b0004... Agnostic Gnosis
13886453 5 3597 1760 +1837 whale_0x8ebd 0x857b0038... Ultra Sound
13887597 9 3648 1826 +1822 whale_0x8ebd 0x857b0038... Ultra Sound
13890088 0 3499 1678 +1821 whale_0x8ebd 0x823e0146... Ultra Sound
13887439 0 3494 1678 +1816 coinbase 0x823e0146... Aestus
13890808 0 3481 1678 +1803 whale_0x8ebd 0x8db2a99d... Ultra Sound
13885353 9 3623 1826 +1797 ether.fi 0x853b0078... Aestus
13888556 0 3463 1678 +1785 whale_0x8ebd 0x8527d16c... Ultra Sound
13889108 5 3537 1760 +1777 blockdaemon 0x8a850621... Titan Relay
13885696 0 3451 1678 +1773 blockdaemon 0xb4ce6162... Ultra Sound
13890426 8 3574 1809 +1765 whale_0x8ebd 0x8db2a99d... Ultra Sound
13892217 7 3551 1793 +1758 blockdaemon 0xac23f8cc... Ultra Sound
13885595 0 3426 1678 +1748 coinbase 0x8db2a99d... Aestus
13888681 0 3423 1678 +1745 whale_0x8ebd 0x8527d16c... Ultra Sound
13886270 0 3420 1678 +1742 blockdaemon 0xac23f8cc... Ultra Sound
13891084 1 3418 1694 +1724 blockdaemon_lido 0x82c466b9... Ultra Sound
13888225 0 3397 1678 +1719 nethermind_lido 0xb26f9666... Titan Relay
13891165 1 3402 1694 +1708 whale_0x8ebd 0x8db2a99d... Ultra Sound
13887183 6 3478 1776 +1702 ether.fi 0xb67eaa5e... Titan Relay
13886829 0 3370 1678 +1692 whale_0x8ebd 0x8a850621... Titan Relay
13891719 0 3361 1678 +1683 ether.fi 0x88a53ec4... BloXroute Max Profit
13888442 5 3437 1760 +1677 stakefish Local Local
13889447 6 3452 1776 +1676 nethermind_lido 0xb26f9666... BloXroute Max Profit
13890454 1 3365 1694 +1671 blockdaemon 0x823e0146... BloXroute Max Profit
13890958 0 3339 1678 +1661 blockdaemon_lido 0x851b00b1... BloXroute Max Profit
13888341 1 3352 1694 +1658 luno 0xb7c5e609... BloXroute Regulated
13885560 5 3409 1760 +1649 whale_0x8ebd 0x8527d16c... Ultra Sound
13890876 0 3315 1678 +1637 blockdaemon_lido 0x82c466b9... Ultra Sound
13888597 0 3313 1678 +1635 blockdaemon_lido 0xac23f8cc... BloXroute Regulated
13890209 5 3393 1760 +1633 blockdaemon 0x88857150... Ultra Sound
13891062 5 3393 1760 +1633 blockdaemon_lido 0x88857150... Ultra Sound
13886566 2 3342 1710 +1632 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
13890634 0 3309 1678 +1631 whale_0x8ebd 0x8527d16c... Ultra Sound
13889463 7 3419 1793 +1626 blockdaemon 0x855b00e6... BloXroute Max Profit
13885593 3 3349 1727 +1622 whale_0x8ebd 0x853b0078... Aestus
13889334 3 3345 1727 +1618 whale_0xdc8d 0xb67eaa5e... BloXroute Regulated
13890100 8 3427 1809 +1618 blockdaemon 0x8a850621... Titan Relay
13887581 5 3377 1760 +1617 revolut 0x856b0004... Ultra Sound
13890218 0 3293 1678 +1615 blockdaemon_lido 0xb26f9666... Titan Relay
13888545 3 3342 1727 +1615 blockdaemon_lido 0x91b123d8... Ultra Sound
13888433 6 3391 1776 +1615 whale_0x8ebd 0xb7c5e609... BloXroute Max Profit
13885729 0 3290 1678 +1612 blockdaemon 0xb26f9666... Titan Relay
13892304 0 3286 1678 +1608 blockdaemon_lido 0x88857150... Ultra Sound
13888942 0 3284 1678 +1606 blockdaemon 0x8527d16c... Ultra Sound
13887630 1 3300 1694 +1606 luno 0xb26f9666... Titan Relay
13888846 1 3299 1694 +1605 blockdaemon 0xb26f9666... Titan Relay
13886837 0 3280 1678 +1602 blockdaemon_lido 0xb26f9666... Titan Relay
13891229 1 3295 1694 +1601 luno 0xb26f9666... Titan Relay
13886777 2 3308 1710 +1598 solo_stakers 0x855b00e6... Ultra Sound
13888962 17 3554 1957 +1597 whale_0x8ebd 0x8527d16c... Ultra Sound
13886244 0 3273 1678 +1595 luno 0xb67eaa5e... BloXroute Regulated
13887781 1 3288 1694 +1594 blockdaemon 0x850b00e0... BloXroute Max Profit
13892101 0 3270 1678 +1592 blockdaemon 0x8a850621... Titan Relay
13888719 3 3314 1727 +1587 whale_0xdc8d 0xb26f9666... Titan Relay
13886371 0 3262 1678 +1584 whale_0xdc8d 0xb26f9666... Titan Relay
13888317 7 3377 1793 +1584 luno 0x88a53ec4... BloXroute Regulated
13885929 5 3342 1760 +1582 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
13886392 3 3308 1727 +1581 luno 0xb26f9666... Titan Relay
13886949 2 3290 1710 +1580 blockdaemon 0x850b00e0... BloXroute Regulated
13886833 0 3257 1678 +1579 blockdaemon 0xb26f9666... Titan Relay
13886744 1 3270 1694 +1576 blockdaemon_lido 0x8527d16c... Ultra Sound
13888080 2 3285 1710 +1575 blockdaemon_lido 0xb4ce6162... Ultra Sound
13886550 2 3284 1710 +1574 blockdaemon 0x855b00e6... BloXroute Max Profit
13886280 0 3251 1678 +1573 blockdaemon 0x88857150... Ultra Sound
13891644 1 3266 1694 +1572 whale_0x8ebd 0x88857150... Ultra Sound
13885469 5 3331 1760 +1571 whale_0x8ebd 0x8527d16c... Ultra Sound
13889982 14 3476 1908 +1568 nethermind_lido 0xb26f9666... Titan Relay
13887997 0 3243 1678 +1565 0xb26f9666... Titan Relay
13889323 3 3291 1727 +1564 nethermind_lido 0x8527d16c... Ultra Sound
13890296 6 3335 1776 +1559 blockdaemon 0xac23f8cc... BloXroute Regulated
13886095 5 3318 1760 +1558 luno 0x88a53ec4... BloXroute Regulated
13887917 2 3268 1710 +1558 whale_0x8ebd 0xb4ce6162... Ultra Sound
13886341 5 3315 1760 +1555 blockdaemon 0x88a53ec4... BloXroute Regulated
13888366 5 3312 1760 +1552 blockdaemon_lido 0xb26f9666... Titan Relay
13886986 0 3229 1678 +1551 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
13889607 3 3277 1727 +1550 whale_0x8ebd 0x8a850621... Titan Relay
13888867 3 3277 1727 +1550 kiln 0xb67eaa5e... BloXroute Max Profit
13891744 0 3226 1678 +1548 0xb26f9666... Aestus
13890747 0 3226 1678 +1548 revolut 0xb26f9666... Titan Relay
13888745 0 3224 1678 +1546 blockdaemon_lido 0x8527d16c... Ultra Sound
13890738 0 3224 1678 +1546 blockdaemon 0x88857150... Ultra Sound
13890041 1 3236 1694 +1542 blockdaemon 0x8527d16c... Ultra Sound
13889377 15 3461 1924 +1537 whale_0xdc8d 0x850b00e0... BloXroute Regulated
13885275 2 3246 1710 +1536 blockdaemon_lido 0xb4ce6162... Ultra Sound
13890346 11 3394 1858 +1536 p2porg 0x88a53ec4... BloXroute Max Profit
13890855 5 3294 1760 +1534 blockdaemon 0x88857150... Ultra Sound
13890653 6 3310 1776 +1534 blockdaemon_lido 0xb26f9666... Titan Relay
13891509 2 3243 1710 +1533 blockdaemon 0x823e0146... BloXroute Max Profit
13890005 1 3225 1694 +1531 blockdaemon_lido 0x88857150... Ultra Sound
13891527 0 3208 1678 +1530 blockdaemon_lido 0x88857150... Ultra Sound
13889826 0 3208 1678 +1530 nethermind_lido 0x852b0070... BloXroute Max Profit
13892256 1 3224 1694 +1530 p2porg 0x8527d16c... Ultra Sound
13889274 3 3256 1727 +1529 revolut 0x855b00e6... Ultra Sound
13888734 0 3206 1678 +1528 blockdaemon_lido 0x8527d16c... Ultra Sound
13891859 1 3221 1694 +1527 blockdaemon 0xb67eaa5e... BloXroute Regulated
13885349 5 3286 1760 +1526 blockdaemon 0x8527d16c... Ultra Sound
13890417 11 3384 1858 +1526 revolut 0xac23f8cc... BloXroute Regulated
13890377 5 3285 1760 +1525 nethermind_lido 0x823e0146... BloXroute Max Profit
13886822 5 3281 1760 +1521 blockdaemon 0x8527d16c... Ultra Sound
13885651 0 3198 1678 +1520 gateway.fmas_lido 0x855b00e6... BloXroute Max Profit
13892155 4 3262 1743 +1519 blockdaemon_lido 0x855b00e6... BloXroute Max Profit
13885212 1 3209 1694 +1515 gateway.fmas_lido 0x8db2a99d... Ultra Sound
13890149 5 3274 1760 +1514 everstake 0xb26f9666... Titan Relay
13886045 7 3306 1793 +1513 luno 0xb26f9666... Titan Relay
13888988 7 3306 1793 +1513 whale_0xdc8d 0x88857150... Ultra Sound
13891708 0 3189 1678 +1511 rocklogicgmbh_lido 0xb26f9666... Titan Relay
13887668 5 3271 1760 +1511 blockdaemon_lido 0x8527d16c... Ultra Sound
13885230 0 3186 1678 +1508 gateway.fmas_lido 0x852b0070... Agnostic Gnosis
13887339 5 3268 1760 +1508 revolut 0x850b00e0... BloXroute Regulated
13888114 5 3268 1760 +1508 nethermind_lido 0xac23f8cc... Flashbots
13887933 6 3283 1776 +1507 blockdaemon_lido 0x853b0078... Ultra Sound
13888476 0 3184 1678 +1506 blockdaemon_lido 0xb7c5e609... BloXroute Regulated
13889200 17 3462 1957 +1505 whale_0xdc8d 0x850b00e0... BloXroute Regulated
13888909 4 3248 1743 +1505 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
13887000 6 3273 1776 +1497 nethermind_lido 0x855b00e6... BloXroute Max Profit
13889426 7 3289 1793 +1496 nethermind_lido 0x850b00e0... BloXroute Max Profit
13886700 0 3173 1678 +1495 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
13890453 18 3468 1974 +1494 revolut 0xb4ce6162... Ultra Sound
13887897 10 3336 1842 +1494 blockdaemon 0xac23f8cc... BloXroute Max Profit
13890299 9 3319 1826 +1493 blockdaemon_lido 0x88857150... Ultra Sound
13891960 5 3252 1760 +1492 solo_stakers Local Local
13886954 0 3167 1678 +1489 revolut 0x85fb0503... BloXroute Regulated
13891491 10 3331 1842 +1489 luno 0x850b00e0... BloXroute Regulated
13885827 0 3165 1678 +1487 nethermind_lido 0x88a53ec4... BloXroute Max Profit
13889217 1 3180 1694 +1486 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
13891918 5 3245 1760 +1485 nethermind_lido 0x88a53ec4... BloXroute Max Profit
13887833 1 3179 1694 +1485 everstake 0x8db2a99d... Aestus
13887953 5 3244 1760 +1484 blockdaemon 0xb26f9666... Titan Relay
13888620 5 3242 1760 +1482 blockdaemon 0x88857150... Ultra Sound
13889259 12 3357 1875 +1482 nethermind_lido 0x855b00e6... BloXroute Max Profit
13892297 8 3291 1809 +1482 blockdaemon_lido 0x855b00e6... BloXroute Max Profit
13891009 3 3207 1727 +1480 stakingfacilities_lido 0xb67eaa5e... BloXroute Max Profit
13891612 5 3239 1760 +1479 nethermind_lido 0x8527d16c... Ultra Sound
13888432 0 3156 1678 +1478 gateway.fmas_lido 0x8527d16c... Ultra Sound
13887775 3 3205 1727 +1478 gateway.fmas_lido 0x8db2a99d... Aestus
13886570 0 3155 1678 +1477 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13889644 7 3269 1793 +1476 coinbase 0x823e0146... Aestus
13886180 0 3153 1678 +1475 gateway.fmas_lido 0xa0366397... Ultra Sound
13889862 7 3267 1793 +1474 gateway.fmas_lido 0x8db2a99d... Ultra Sound
13888376 0 3151 1678 +1473 revolut 0x823e0146... BloXroute Regulated
13889616 3 3198 1727 +1471 figment 0x850b00e0... BloXroute Max Profit
13887979 6 3244 1776 +1468 kiln 0xb26f9666... BloXroute Max Profit
13886257 1 3161 1694 +1467 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13889565 5 3226 1760 +1466 blockdaemon_lido 0x8527d16c... Ultra Sound
13886770 2 3173 1710 +1463 nethermind_lido 0x85fb0503... BloXroute Max Profit
13885489 0 3140 1678 +1462 gateway.fmas_lido 0x8527d16c... Ultra Sound
13891041 0 3136 1678 +1458 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
13887415 7 3251 1793 +1458 gateway.fmas_lido 0x88a53ec4... BloXroute Regulated
13885987 5 3216 1760 +1456 blockdaemon 0xb67eaa5e... BloXroute Max Profit
13890198 4 3199 1743 +1456 nethermind_lido 0x88a53ec4... BloXroute Regulated
13890778 12 3327 1875 +1452 nethermind_lido 0x8db2a99d... BloXroute Max Profit
13889152 8 3258 1809 +1449 bitstamp 0xb67eaa5e... BloXroute Max Profit
13886487 0 3126 1678 +1448 whale_0x8ebd 0x823e0146... BloXroute Max Profit
13890697 1 3142 1694 +1448 gateway.fmas_lido 0x855b00e6... Flashbots
13886579 0 3124 1678 +1446 blockdaemon 0x85fb0503... BloXroute Regulated
13889044 5 3206 1760 +1446 p2porg 0x850b00e0... BloXroute Regulated
13886292 3 3173 1727 +1446 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
13891832 6 3220 1776 +1444 kiln 0xb26f9666... BloXroute Max Profit
13887765 1 3137 1694 +1443 p2porg 0x8db2a99d... BloXroute Regulated
13889460 8 3252 1809 +1443 everstake 0x8527d16c... Ultra Sound
13886481 4 3185 1743 +1442 revolut 0xb26f9666... Titan Relay
13890490 3 3167 1727 +1440 whale_0x8ebd 0x88857150... Ultra Sound
13889671 5 3197 1760 +1437 blockdaemon_lido 0x8527d16c... Ultra Sound
13885414 1 3129 1694 +1435 p2porg 0x850b00e0... Flashbots
13886100 6 3210 1776 +1434 gateway.fmas_lido 0x853b0078... Aestus
13890977 0 3111 1678 +1433 gateway.fmas_lido 0x8527d16c... Ultra Sound
13890458 5 3192 1760 +1432 0x855b00e6... BloXroute Max Profit
13888879 3 3159 1727 +1432 p2porg 0x855b00e6... BloXroute Max Profit
13888636 6 3208 1776 +1432 gateway.fmas_lido 0xb26f9666... Titan Relay
13892173 0 3109 1678 +1431 p2porg 0x850b00e0... Flashbots
13886067 0 3109 1678 +1431 gateway.fmas_lido 0xac23f8cc... Flashbots
13890828 6 3206 1776 +1430 p2porg 0x850b00e0... BloXroute Regulated
13890254 1 3122 1694 +1428 bitstamp 0x850b00e0... BloXroute Max Profit
13892032 0 3104 1678 +1426 blockdaemon 0x8527d16c... Ultra Sound
13889998 3 3153 1727 +1426 blockdaemon 0x856b0004... Ultra Sound
13890323 0 3103 1678 +1425 whale_0x8ebd 0xb26f9666... Titan Relay
13886993 7 3218 1793 +1425 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
13891402 0 3100 1678 +1422 whale_0xc541 0x88857150... Ultra Sound
13890699 8 3230 1809 +1421 kiln 0xac23f8cc... Flashbots
13886083 3 3147 1727 +1420 gateway.fmas_lido 0x8db2a99d... Aestus
13887910 1 3114 1694 +1420 p2porg 0xac23f8cc... Flashbots
13892303 6 3195 1776 +1419 nethermind_lido 0x8db2a99d... Aestus
13889907 6 3194 1776 +1418 nethermind_lido 0x8db2a99d... Flashbots
13889353 1 3110 1694 +1416 p2porg 0xb26f9666... BloXroute Regulated
13888161 1 3109 1694 +1415 stader 0xb26f9666... Titan Relay
13887646 0 3092 1678 +1414 p2porg 0xb26f9666... BloXroute Regulated
13885646 6 3190 1776 +1414 whale_0xedc6 0x853b0078... Aestus
13890736 1 3107 1694 +1413 bitstamp 0x88857150... Ultra Sound
13892223 0 3087 1678 +1409 p2porg 0xb26f9666... Titan Relay
13888246 6 3185 1776 +1409 bitstamp 0x88857150... Ultra Sound
13889201 1 3102 1694 +1408 0x8527d16c... Ultra Sound
13888310 6 3183 1776 +1407 figment 0x8db2a99d... BloXroute Max Profit
13888469 0 3084 1678 +1406 whale_0x8ebd 0xac23f8cc... Flashbots
13891346 0 3083 1678 +1405 stakingfacilities_lido 0x8527d16c... Ultra Sound
13885516 5 3165 1760 +1405 blockdaemon 0x85fb0503... BloXroute Max Profit
13886196 0 3082 1678 +1404 whale_0xedc6 0xb26f9666... BloXroute Max Profit
13889558 0 3081 1678 +1403 p2porg 0x852b0070... Agnostic Gnosis
13890605 8 3212 1809 +1403 p2porg 0xb67eaa5e... BloXroute Max Profit
13888267 2 3112 1710 +1402 blockdaemon_lido 0x8db2a99d... Ultra Sound
13886118 0 3079 1678 +1401 solo_stakers 0x851b00b1... Ultra Sound
13886656 0 3079 1678 +1401 p2porg 0xb26f9666... BloXroute Max Profit
13889554 0 3076 1678 +1398 whale_0x8ebd 0x852b0070... Agnostic Gnosis
13885321 6 3173 1776 +1397 gateway.fmas_lido 0x85fb0503... BloXroute Max Profit
13888488 0 3071 1678 +1393 p2porg 0xb67eaa5e... BloXroute Regulated
13891105 1 3087 1694 +1393 everstake 0xb4ce6162... Ultra Sound
13889085 3 3119 1727 +1392 bitstamp 0xb4ce6162... Ultra Sound
13892061 10 3234 1842 +1392 p2porg 0x850b00e0... BloXroute Regulated
13889453 10 3230 1842 +1388 p2porg 0x88a53ec4... BloXroute Regulated
13890435 8 3197 1809 +1388 gateway.fmas_lido 0x8527d16c... Ultra Sound
13889090 0 3062 1678 +1384 kiln 0x852b0070... Agnostic Gnosis
13888357 10 3226 1842 +1384 0x855b00e6... Flashbots
13889238 0 3061 1678 +1383 whale_0x23be 0xb26f9666... BloXroute Max Profit
13886692 0 3060 1678 +1382 whale_0x8ebd 0xb26f9666... Titan Relay
13887874 4 3125 1743 +1382 0x93b11bec... Flashbots
13888835 3 3108 1727 +1381 p2porg 0x856b0004... Aestus
13889898 5 3139 1760 +1379 gateway.fmas_lido 0x8527d16c... Ultra Sound
13887549 1 3072 1694 +1378 whale_0x8ebd 0x93b11bec... Flashbots
13888263 1 3071 1694 +1377 p2porg Local Local
13888604 0 3054 1678 +1376 p2porg 0x8db2a99d... Aestus
13888539 7 3168 1793 +1375 p2porg 0xb7c5e609... BloXroute Max Profit
13888231 0 3052 1678 +1374 p2porg 0x850b00e0... BloXroute Regulated
13888977 3 3101 1727 +1374 whale_0x8ebd 0xb26f9666... Titan Relay
13889725 12 3249 1875 +1374 p2porg 0xb67eaa5e... BloXroute Regulated
13890054 15 3297 1924 +1373 p2porg 0x88a53ec4... BloXroute Max Profit
13892074 0 3048 1678 +1370 p2porg 0x8527d16c... Ultra Sound
13889141 0 3047 1678 +1369 p2porg 0xac23f8cc... Flashbots
13889859 5 3129 1760 +1369 kiln 0x88a53ec4... BloXroute Regulated
13891680 5 3128 1760 +1368 ether.fi 0x855b00e6... Flashbots
13888932 5 3128 1760 +1368 figment 0x8527d16c... Ultra Sound
13891929 6 3143 1776 +1367 kiln 0xb26f9666... BloXroute Regulated
13887381 4 3110 1743 +1367 everstake 0x88a53ec4... BloXroute Max Profit
13886158 3 3093 1727 +1366 whale_0x8ebd 0x85fb0503... BloXroute Max Profit
13887357 2 3076 1710 +1366 kiln 0x8527d16c... Ultra Sound
13891308 0 3042 1678 +1364 p2porg 0x852b0070... Agnostic Gnosis
13887330 0 3042 1678 +1364 kiln 0xb26f9666... Aestus
13887928 0 3042 1678 +1364 p2porg 0x852b0070... Agnostic Gnosis
13887811 3 3091 1727 +1364 0x856b0004... Aestus
13887888 0 3041 1678 +1363 whale_0x8ebd 0xb4ce6162... Ultra Sound
13887980 0 3040 1678 +1362 whale_0x8ebd 0x8527d16c... Ultra Sound
13888441 2 3072 1710 +1362 kiln Local Local
13890832 0 3039 1678 +1361 ether.fi 0xb26f9666... Titan Relay
13891865 1 3055 1694 +1361 ether.fi 0xb26f9666... Titan Relay
13886313 1 3054 1694 +1360 blockdaemon_lido 0x88857150... Ultra Sound
13887764 1 3054 1694 +1360 figment 0xac23f8cc... Flashbots
13891237 4 3103 1743 +1360 whale_0x8ebd 0x8527d16c... Ultra Sound
13886722 0 3037 1678 +1359 ether.fi 0x8527d16c... Ultra Sound
13886591 0 3036 1678 +1358 p2porg 0x99dbe3e8... Agnostic Gnosis
13885613 5 3118 1760 +1358 ether.fi 0x88857150... Ultra Sound
13885269 8 3167 1809 +1358 kiln Local Local
13890283 0 3035 1678 +1357 whale_0x8ebd 0x8a850621... Titan Relay
13892171 0 3035 1678 +1357 whale_0x8ebd 0x8527d16c... Ultra Sound
13888664 1 3051 1694 +1357 p2porg 0x856b0004... BloXroute Max Profit
13891297 8 3166 1809 +1357 bitstamp 0x856b0004... Agnostic Gnosis
13888832 0 3034 1678 +1356 whale_0xad3b 0xb26f9666... Aestus
13886221 0 3034 1678 +1356 whale_0x8ebd 0xb26f9666... Titan Relay
13889465 4 3097 1743 +1354 p2porg 0x8527d16c... Ultra Sound
13885545 5 3112 1760 +1352 blockdaemon_lido 0xb26f9666... Titan Relay
13890388 10 3193 1842 +1351 solo_stakers 0x88857150... Ultra Sound
13887731 0 3028 1678 +1350 kiln 0xb26f9666... Titan Relay
13885555 0 3028 1678 +1350 whale_0xedc6 0x8527d16c... Ultra Sound
13888795 0 3028 1678 +1350 p2porg 0xac23f8cc... Ultra Sound
13889538 3 3077 1727 +1350 kiln 0x853b0078... Aestus
13887717 2 3060 1710 +1350 whale_0xedc6 0x8db2a99d... Ultra Sound
13890184 0 3025 1678 +1347 whale_0xedc6 0xb26f9666... BloXroute Max Profit
13888213 0 3025 1678 +1347 ether.fi 0x8db2a99d... Aestus
13888777 1 3041 1694 +1347 coinbase 0xb4ce6162... Ultra Sound
13890032 5 3105 1760 +1345 coinbase 0x8527d16c... Ultra Sound
13889643 5 3103 1760 +1343 whale_0x8ee5 0x88a53ec4... BloXroute Regulated
13886721 2 3053 1710 +1343 p2porg 0x856b0004... BloXroute Max Profit
13888389 5 3102 1760 +1342 whale_0x8ebd 0xb4ce6162... Ultra Sound
13886479 0 3019 1678 +1341 p2porg 0x852b0070... Agnostic Gnosis
13887225 1 3034 1694 +1340 whale_0x8ebd 0x8527d16c... Ultra Sound
13886658 4 3083 1743 +1340 kraken 0xb67eaa5e... BloXroute Max Profit
13889850 0 3017 1678 +1339 ether.fi 0xb26f9666... Titan Relay
13886571 0 3016 1678 +1338 kiln 0x8db2a99d... BloXroute Max Profit
13888221 0 3016 1678 +1338 everstake 0x88857150... Ultra Sound
13890515 3 3065 1727 +1338 whale_0x8ebd 0x8527d16c... Ultra Sound
13888935 1 3032 1694 +1338 abyss_finance 0x856b0004... Agnostic Gnosis
13890174 1 3031 1694 +1337 everstake 0xb4ce6162... Ultra Sound
13886169 8 3146 1809 +1337 whale_0x8ebd 0x8527d16c... Ultra Sound
13887753 3 3063 1727 +1336 whale_0xad3b 0x8527d16c... Ultra Sound
13887524 1 3030 1694 +1336 p2porg 0x856b0004... Aestus
13888837 5 3095 1760 +1335 p2porg 0xb26f9666... BloXroute Max Profit
13891486 0 3012 1678 +1334 kiln 0x88a53ec4... BloXroute Max Profit
13891433 0 3012 1678 +1334 everstake 0x8527d16c... Ultra Sound
13890129 3 3060 1727 +1333 0x853b0078... Aestus
13887759 3 3059 1727 +1332 kiln 0x855b00e6... BloXroute Max Profit
13886230 10 3174 1842 +1332 whale_0x8ebd 0x85fb0503... BloXroute Max Profit
13891383 3 3058 1727 +1331 everstake 0x850b00e0... BloXroute Max Profit
13886545 10 3173 1842 +1331 kiln 0x855b00e6... BloXroute Max Profit
13887355 2 3040 1710 +1330 p2porg 0x8db2a99d... Flashbots
13886289 0 3007 1678 +1329 p2porg 0x8527d16c... Ultra Sound
13885788 0 3007 1678 +1329 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
13891116 6 3105 1776 +1329 nethermind_lido 0x850b00e0... BloXroute Max Profit
13888756 6 3105 1776 +1329 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
13892330 6 3104 1776 +1328 ether.fi 0x8527d16c... Ultra Sound
13887133 1 3021 1694 +1327 p2porg 0xb26f9666... BloXroute Max Profit
13891776 1 3021 1694 +1327 coinbase 0xb26f9666... Titan Relay
13890537 7 3119 1793 +1326 p2porg 0xb26f9666... BloXroute Max Profit
13886883 1 3020 1694 +1326 figment 0x8527d16c... Ultra Sound
13891000 6 3102 1776 +1326 p2porg 0x8527d16c... Ultra Sound
13885266 11 3184 1858 +1326 gateway.fmas_lido 0x8527d16c... Ultra Sound
13885845 0 3003 1678 +1325 whale_0x8ebd 0x852b0070... BloXroute Max Profit
13885667 0 3000 1678 +1322 figment 0x8527d16c... Ultra Sound
13885526 6 3098 1776 +1322 p2porg 0x856b0004... Aestus
13888023 0 2999 1678 +1321 p2porg 0x88857150... Ultra Sound
13891898 0 2999 1678 +1321 kiln 0xb26f9666... BloXroute Max Profit
13890815 4 3064 1743 +1321 whale_0x8ebd 0x8527d16c... Ultra Sound
13888742 0 2997 1678 +1319 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13889605 9 3145 1826 +1319 0xac23f8cc... Flashbots
13887608 1 3013 1694 +1319 everstake 0x88857150... Ultra Sound
13889124 0 2996 1678 +1318 whale_0xdd6c 0xb26f9666... Titan Relay
13885686 0 2994 1678 +1316 whale_0x8ebd 0xb26f9666... Titan Relay
13891269 0 2994 1678 +1316 p2porg 0xb26f9666... BloXroute Max Profit
13886012 3 3042 1727 +1315 kiln 0xb26f9666... BloXroute Max Profit
13886974 1 3009 1694 +1315 whale_0x8ebd 0x85fb0503... BloXroute Max Profit
13891092 6 3091 1776 +1315 whale_0x8ebd 0x88857150... Ultra Sound
13889959 10 3156 1842 +1314 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13890257 2 3024 1710 +1314 whale_0x8ebd 0x823e0146... BloXroute Max Profit
13891685 1 3007 1694 +1313 kiln 0x88a53ec4... BloXroute Regulated
13885984 1 3007 1694 +1313 blockdaemon 0xb4ce6162... Ultra Sound
13888726 10 3155 1842 +1313 whale_0x8ebd 0xb26f9666... Titan Relay
13885811 7 3105 1793 +1312 0x823e0146... Ultra Sound
13886042 0 2989 1678 +1311 whale_0x8ebd 0xb26f9666... Titan Relay
13892122 1 3005 1694 +1311 stader 0x850b00e0... BloXroute Max Profit
13891015 0 2988 1678 +1310 everstake 0x8527d16c... Ultra Sound
13886812 1 3003 1694 +1309 whale_0x8ebd 0x88857150... Ultra Sound
13886549 0 2985 1678 +1307 coinbase 0x8527d16c... Ultra Sound
13888956 5 3066 1760 +1306 kraken 0x8527d16c... EthGas
13890109 5 3065 1760 +1305 whale_0x8ebd 0x8527d16c... Ultra Sound
13886052 1 2999 1694 +1305 whale_0xdd6c 0x85fb0503... BloXroute Max Profit
13892015 3 3030 1727 +1303 coinbase 0x8527d16c... Ultra Sound
13890726 0 2980 1678 +1302 everstake 0x8a850621... Titan Relay
13889628 9 3128 1826 +1302 figment 0xb26f9666... Titan Relay
13890910 4 3045 1743 +1302 whale_0x8ebd 0x8db2a99d... Ultra Sound
13889314 0 2978 1678 +1300 kiln 0x852b0070... Agnostic Gnosis
13885503 5 3059 1760 +1299 whale_0x8ebd 0xb26f9666... Titan Relay
13890119 3 3026 1727 +1299 whale_0x8ebd Local Local
13885789 10 3141 1842 +1299 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
13890917 5 3058 1760 +1298 everstake 0x88a53ec4... BloXroute Regulated
13890408 8 3107 1809 +1298 p2porg 0x8527d16c... Ultra Sound
13891608 8 3105 1809 +1296 figment 0x8527d16c... Ultra Sound
13887662 0 2973 1678 +1295 kiln 0x88857150... Ultra Sound
13889823 11 3153 1858 +1295 p2porg 0xb26f9666... BloXroute Regulated
13888582 0 2972 1678 +1294 coinbase 0xb26f9666... Titan Relay
13891461 4 3037 1743 +1294 kiln 0x8527d16c... Ultra Sound
13887636 1 2987 1694 +1293 ether.fi 0x823e0146... Aestus
13885486 4 3036 1743 +1293 whale_0x8ebd 0x82c466b9... Ultra Sound
13886120 0 2969 1678 +1291 ether.fi 0x852b0070... Agnostic Gnosis
13891759 1 2985 1694 +1291 everstake 0x8a850621... Titan Relay
13889810 1 2985 1694 +1291 kiln 0x8527d16c... Ultra Sound
13886051 6 3067 1776 +1291 p2porg 0xb26f9666... BloXroute Regulated
13886580 2 3000 1710 +1290 stader 0x8527d16c... Ultra Sound
13892021 5 3049 1760 +1289 whale_0x8ebd 0x853b0078... Agnostic Gnosis
13886694 0 2966 1678 +1288 kiln 0xac23f8cc... BloXroute Max Profit
13891984 8 3097 1809 +1288 p2porg 0x8527d16c... Ultra Sound
13890221 2 2998 1710 +1288 whale_0x8ebd 0x853b0078... Aestus
13891842 5 3047 1760 +1287 kiln 0x850b00e0... BloXroute Max Profit
13891833 3 3013 1727 +1286 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
13890658 0 2963 1678 +1285 ether.fi 0x852b0070... BloXroute Max Profit
13887053 0 2963 1678 +1285 kiln 0xb211df49... Agnostic Gnosis
13888491 5 3045 1760 +1285 p2porg 0xb26f9666... BloXroute Max Profit
13887001 1 2979 1694 +1285 kiln 0xb26f9666... BloXroute Regulated
13888813 8 3094 1809 +1285 p2porg 0xb26f9666... BloXroute Regulated
13891249 0 2959 1678 +1281 everstake 0xb26f9666... Aestus
13892234 0 2958 1678 +1280 everstake 0x8a850621... Titan Relay
13889727 5 3039 1760 +1279 whale_0x8ebd 0xb26f9666... Titan Relay
13885601 1 2973 1694 +1279 whale_0x8ebd 0x8527d16c... Ultra Sound
13887810 1 2973 1694 +1279 kiln 0x8527d16c... Ultra Sound
13891594 0 2955 1678 +1277 whale_0x8ebd 0x853b0078... Agnostic Gnosis
13885278 2 2986 1710 +1276 kiln 0xb26f9666... BloXroute Regulated
13887161 2 2986 1710 +1276 kiln 0x853b0078... Aestus
13892176 5 3035 1760 +1275 p2porg 0xac23f8cc... Flashbots
13885582 6 3051 1776 +1275 coinbase 0x8527d16c... Ultra Sound
13888865 2 2985 1710 +1275 stakewise Local Local
13890479 12 3149 1875 +1274 0x855b00e6... BloXroute Max Profit
13892227 8 3083 1809 +1274 ether.fi 0xb26f9666... Titan Relay
13886327 11 3132 1858 +1274 blockdaemon 0x8527d16c... Ultra Sound
13891061 0 2951 1678 +1273 everstake 0x8a850621... Titan Relay
13889250 5 3033 1760 +1273 kiln 0x8527d16c... Ultra Sound
13888735 5 3033 1760 +1273 everstake 0x8527d16c... Ultra Sound
13892063 16 3212 1941 +1271 0x855b00e6... BloXroute Max Profit
13885492 5 3022 1760 +1262 whale_0x8ebd 0xb26f9666... Titan Relay
13891083 3 2989 1727 +1262 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13885660 3 2989 1727 +1262 everstake 0x88857150... Ultra Sound
13889732 0 2937 1678 +1259 whale_0x8ebd 0x8527d16c... Ultra Sound
13886070 5 3018 1760 +1258 whale_0x8ebd 0x85fb0503... BloXroute Max Profit
13887399 6 3034 1776 +1258 kiln 0xb4ce6162... Ultra Sound
13890787 8 3066 1809 +1257 whale_0xdd6c 0xb26f9666... Titan Relay
13887863 1 2950 1694 +1256 coinbase 0x853b0078... Agnostic Gnosis
13889403 0 2933 1678 +1255 kiln 0xb26f9666... BloXroute Regulated
13887113 0 2933 1678 +1255 kiln 0x852b0070... Ultra Sound
13887462 0 2933 1678 +1255 stader 0xb67eaa5e... BloXroute Regulated
13888755 1 2949 1694 +1255 kiln 0x88857150... Ultra Sound
13889073 6 3031 1776 +1255 kiln Local Local
13892344 0 2932 1678 +1254 whale_0x8ebd 0x852b0070... Agnostic Gnosis
13891434 0 2932 1678 +1254 everstake 0x851b00b1... BloXroute Max Profit
13888405 1 2947 1694 +1253 kiln 0x88857150... Ultra Sound
13886831 0 2930 1678 +1252 everstake 0xb26f9666... Titan Relay
13890282 0 2930 1678 +1252 kiln 0xac23f8cc... Aestus
13886608 6 3028 1776 +1252 whale_0x8ebd 0x85fb0503... BloXroute Max Profit
13890748 8 3060 1809 +1251 kiln 0x8527d16c... Ultra Sound
13889494 6 3027 1776 +1251 everstake 0x850b00e0... BloXroute Max Profit
13889024 5 3010 1760 +1250 coinbase 0x850b00e0... BloXroute Max Profit
13888224 5 3010 1760 +1250 whale_0x8ebd 0x8a850621... Titan Relay
13885405 5 3009 1760 +1249 kiln 0xb26f9666... BloXroute Max Profit
13889604 0 2926 1678 +1248 everstake 0xb26f9666... Aestus
13890195 4 2991 1743 +1248 kiln 0xac23f8cc... Flashbots
13886725 1 2940 1694 +1246 kiln 0x8db2a99d... Flashbots
13890534 1 2939 1694 +1245 kiln 0x853b0078... Agnostic Gnosis
13891515 2 2954 1710 +1244 coinbase 0xb26f9666... Titan Relay
13885622 5 3003 1760 +1243 kiln 0x856b0004... Agnostic Gnosis
13891639 0 2920 1678 +1242 kiln 0x852b0070... Agnostic Gnosis
13886559 0 2919 1678 +1241 stader 0x8527d16c... Ultra Sound
13892039 5 3001 1760 +1241 stader 0x8527d16c... Ultra Sound
13886459 1 2935 1694 +1241 kiln 0x8db2a99d... Flashbots
13887752 0 2916 1678 +1238 kiln 0x852b0070... Agnostic Gnosis
13887437 10 3079 1842 +1237 everstake 0x88a53ec4... BloXroute Max Profit
13892300 0 2914 1678 +1236 kiln 0x852b0070... Agnostic Gnosis
13889272 11 3094 1858 +1236 kiln 0x8db2a99d... Flashbots
13889204 0 2913 1678 +1235 kiln 0x852b0070... BloXroute Max Profit
13886061 0 2913 1678 +1235 kiln 0xac23f8cc... Flashbots
13891342 9 3061 1826 +1235 whale_0xedc6 0xb26f9666... BloXroute Max Profit
13891746 5 2994 1760 +1234 everstake 0x823e0146... Ultra Sound
13892211 0 2911 1678 +1233 kiln 0xba003e46... Flashbots
13887379 0 2910 1678 +1232 kiln 0x823e0146... Flashbots
13889331 9 3057 1826 +1231 whale_0x8ebd 0x856b0004... Aestus
13887799 9 3056 1826 +1230 kiln 0x8527d16c... Ultra Sound
13885968 5 2990 1760 +1230 whale_0x8ebd 0x8527d16c... Ultra Sound
13891325 1 2924 1694 +1230 whale_0x8ebd 0xb26f9666... BloXroute Regulated
13886768 11 3087 1858 +1229 p2porg 0xac23f8cc... Flashbots
13886418 0 2904 1678 +1226 coinbase 0x852b0070... Aestus
13891379 0 2903 1678 +1225 kiln 0x8527d16c... Ultra Sound
13890067 6 3000 1776 +1224 kiln 0x823e0146... Flashbots
13886190 3 2950 1727 +1223 everstake 0xb67eaa5e... BloXroute Regulated
13890044 0 2898 1678 +1220 whale_0x9a69 0x857b0038... Ultra Sound
13888323 6 2996 1776 +1220 ether.fi 0xb26f9666... BloXroute Max Profit
13891131 3 2946 1727 +1219 everstake 0xb26f9666... Titan Relay
13885604 3 2946 1727 +1219 everstake 0x853b0078... Aestus
13887105 1 2913 1694 +1219 stakefish 0x855b00e6... Ultra Sound
13888400 0 2896 1678 +1218 kiln 0x8527d16c... Ultra Sound
13885931 0 2896 1678 +1218 kiln 0xb26f9666... BloXroute Max Profit
13888784 3 2943 1727 +1216 everstake 0x88a53ec4... BloXroute Regulated
13887557 2 2926 1710 +1216 everstake 0xb67eaa5e... BloXroute Max Profit
13887270 0 2893 1678 +1215 kiln 0x853b0078... BloXroute Max Profit
13890944 14 3123 1908 +1215 bitstamp 0x8527d16c... Ultra Sound
13887861 1 2909 1694 +1215 whale_0x8ebd 0x8a850621... Titan Relay
13891371 0 2890 1678 +1212 kiln 0xb26f9666... BloXroute Regulated
13892277 1 2906 1694 +1212 everstake 0x8527d16c... Ultra Sound
Total anomalies: 463

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