Sat, Apr 25, 2026

Propagation anomalies - 2026-04-25

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

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

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

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

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

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

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

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

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

-- Column arrival timing: first arrival per column, then min/max of those
column_gossip AS (
    SELECT
        slot,
        min(first_seen) AS first_column_first_seen,
        max(first_seen) AS last_column_first_seen
    FROM (
        SELECT
            slot,
            column_index,
            min(event_date_time) AS first_seen
        FROM libp2p_gossipsub_data_column_sidecar
        WHERE meta_network_name = 'mainnet'
          AND slot_start_date_time >= '2026-04-25' AND slot_start_date_time < '2026-04-25'::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,194
MEV blocks: 6,852 (95.2%)
Local blocks: 342 (4.8%)

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 = 1684.3 + 17.48 × blob_count (R² = 0.008)
Residual σ = 632.9ms
Anomalies (>2σ slow): 430 (6.0%)
Show code
# Create scatter plot with regression band
x_range = np.array([0, int(max_blobs)])
y_pred = intercept + slope * x_range
y_upper = y_pred + 2 * residual_std
y_lower = y_pred - 2 * residual_std

fig = go.Figure()

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

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

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

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

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

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

All propagation anomalies

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

Show code
# All anomalies table with selectable text and Lab links
if n_anomalies > 0:
    df_table = df_outliers.sort_values("residual_ms", ascending=False)[
        ["slot", "blob_count", "block_first_seen_ms", "expected_ms", "residual_ms", "proposer", "builder", "relay"]
    ].copy()
    df_table["block_first_seen_ms"] = df_table["block_first_seen_ms"].round(0).astype(int)
    df_table["expected_ms"] = df_table["expected_ms"].round(0).astype(int)
    df_table["residual_ms"] = df_table["residual_ms"].round(0).astype(int)
    
    # Build HTML table
    html = '''
    <style>
    .anomaly-table { border-collapse: collapse; width: 100%; font-family: monospace; font-size: 13px; }
    .anomaly-table th { background: #2c3e50; color: white; padding: 8px 12px; text-align: left; position: sticky; top: 0; }
    .anomaly-table td { padding: 6px 12px; border-bottom: 1px solid #eee; }
    .anomaly-table tr:hover { background: #f5f5f5; }
    .anomaly-table .num { text-align: right; }
    .anomaly-table .delta { background: #ffebee; color: #c62828; font-weight: bold; }
    .anomaly-table a { color: #1976d2; text-decoration: none; }
    .anomaly-table a:hover { text-decoration: underline; }
    .table-container { max-height: 600px; overflow-y: auto; }
    </style>
    <div class="table-container">
    <table class="anomaly-table">
    <thead>
    <tr><th>Slot</th><th class="num">Blobs</th><th class="num">Actual (ms)</th><th class="num">Expected (ms)</th><th class="num">Δ (ms)</th><th>Proposer</th><th>Builder</th><th>Relay</th></tr>
    </thead>
    <tbody>
    '''
    
    for _, row in df_table.iterrows():
        slot_link = f'<a href="https://lab.ethpandaops.io/ethereum/slots/{row["slot"]}" target="_blank">{row["slot"]}</a>'
        html += f'''<tr>
            <td>{slot_link}</td>
            <td class="num">{row["blob_count"]}</td>
            <td class="num">{row["block_first_seen_ms"]}</td>
            <td class="num">{row["expected_ms"]}</td>
            <td class="num delta">+{row["residual_ms"]}</td>
            <td>{row["proposer"]}</td>
            <td>{row["builder"]}</td>
            <td>{row["relay"]}</td>
        </tr>'''
    
    html += '</tbody></table></div>'
    display(HTML(html))
    print(f"\nTotal anomalies: {len(df_table):,}")
else:
    print("No anomalies detected.")
SlotBlobsActual (ms)Expected (ms)Δ (ms)ProposerBuilderRelay
14188864 0 17437 1684 +15753 solo_stakers Local Local
14194369 0 7459 1684 +5775 ether.fi Local Local
14188417 0 6619 1684 +4935 rocketpool Local Local
14193283 0 6190 1684 +4506 csm_operator162_lido Local Local
14189440 0 5973 1684 +4289 upbit Local Local
14192736 0 4931 1684 +3247 upbit Local Local
14191936 6 4659 1789 +2870 upbit Local Local
14193088 0 4413 1684 +2729 liquid_collective Local Local
14189696 5 3925 1772 +2153 stakefish 0x8db2a99d... BloXroute Max Profit
14190050 5 3771 1772 +1999 kraken 0x850b00e0... BloXroute Max Profit
14194723 0 3652 1684 +1968 kraken 0x8db2a99d... Titan Relay
14187619 0 3598 1684 +1914 stakingfacilities_lido 0x88a53ec4... BloXroute Max Profit
14188992 1 3585 1702 +1883 blockdaemon 0x88a53ec4... BloXroute Max Profit
14189612 0 3565 1684 +1881 blockdaemon_lido 0x88857150... Ultra Sound
14192241 1 3545 1702 +1843 lido 0x8527d16c... Ultra Sound
14187955 3 3574 1737 +1837 blockdaemon 0x857b0038... BloXroute Max Profit
14193492 1 3521 1702 +1819 bridgetower_lido 0xb67eaa5e... BloXroute Max Profit
14193020 0 3485 1684 +1801 lido 0xb26f9666... Titan Relay
14192737 0 3468 1684 +1784 blockdaemon 0xb72cae2f... Ultra Sound
14190999 1 3469 1702 +1767 blockdaemon_lido 0xb67eaa5e... Titan Relay
14189730 5 3538 1772 +1766 blockdaemon_lido 0x8527d16c... Ultra Sound
14194106 1 3457 1702 +1755 blockdaemon_lido 0x850b00e0... Ultra Sound
14192423 0 3421 1684 +1737 nethermind_lido 0x856b0004... Ultra Sound
14188256 5 3492 1772 +1720 bitstamp 0x88a53ec4... BloXroute Regulated
14187910 0 3390 1684 +1706 blockdaemon 0x8a850621... Titan Relay
14194511 0 3387 1684 +1703 ether.fi 0x850b00e0... Ultra Sound
14191969 0 3376 1684 +1692 blockdaemon 0x8a850621... Titan Relay
14191374 0 3373 1684 +1689 blockdaemon 0x8a850621... Titan Relay
14187747 0 3368 1684 +1684 whale_0xdc8d 0xb67eaa5e... BloXroute Max Profit
14188051 1 3385 1702 +1683 nethermind_lido 0x8db2a99d... BloXroute Max Profit
14194624 0 3366 1684 +1682 0x823e0146... BloXroute Max Profit
14193013 1 3379 1702 +1677 nethermind_lido 0x8db2a99d... BloXroute Max Profit
14192775 1 3374 1702 +1672 ether.fi 0x850b00e0... BloXroute Max Profit
14187685 5 3443 1772 +1671 blockdaemon 0x857b0038... BloXroute Max Profit
14194603 5 3428 1772 +1656 blockdaemon 0x857b0038... Ultra Sound
14188941 1 3358 1702 +1656 ether.fi 0x8db2a99d... BloXroute Max Profit
14193280 3 3391 1737 +1654 blockdaemon 0x8527d16c... Ultra Sound
14192086 1 3356 1702 +1654 revolut 0xb67eaa5e... BloXroute Max Profit
14189780 0 3338 1684 +1654 blockdaemon_lido 0xb26f9666... Titan Relay
14193152 1 3354 1702 +1652 ether.fi 0x857b0038... BloXroute Max Profit
14192242 0 3334 1684 +1650 blockdaemon 0xb26f9666... Titan Relay
14192641 5 3416 1772 +1644 nethermind_lido 0xb26f9666... Aestus
14188128 1 3345 1702 +1643 p2porg 0x853b0078... BloXroute Regulated
14189604 0 3327 1684 +1643 blockdaemon_lido 0x851b00b1... BloXroute Max Profit
14188345 5 3413 1772 +1641 whale_0x8914 0x8db2a99d... Ultra Sound
14189305 1 3339 1702 +1637 blockdaemon 0xb26f9666... Titan Relay
14194119 1 3338 1702 +1636 blockdaemon 0x8a850621... Titan Relay
14190156 1 3329 1702 +1627 blockdaemon 0xb26f9666... Titan Relay
14191566 3 3363 1737 +1626 blockdaemon 0xb26f9666... Titan Relay
14191237 0 3310 1684 +1626 blockdaemon 0x851b00b1... BloXroute Max Profit
14193661 1 3327 1702 +1625 ether.fi 0x853b0078... BloXroute Max Profit
14190680 5 3396 1772 +1624 blockdaemon 0x857b0038... BloXroute Max Profit
14190675 3 3360 1737 +1623 blockdaemon 0xb26f9666... Titan Relay
14193256 6 3412 1789 +1623 blockdaemon 0xb67eaa5e... BloXroute Regulated
14189615 0 3305 1684 +1621 whale_0xdc8d 0xb67eaa5e... BloXroute Regulated
14189106 8 3440 1824 +1616 blockdaemon 0x8db2a99d... Titan Relay
14189190 0 3300 1684 +1616 blockdaemon 0x853b0078... BloXroute Max Profit
14192166 3 3350 1737 +1613 whale_0xdc8d 0xb67eaa5e... BloXroute Regulated
14193896 1 3315 1702 +1613 blockdaemon 0x88857150... Ultra Sound
14190079 7 3418 1807 +1611 blockdaemon 0x88a53ec4... BloXroute Regulated
14190280 1 3311 1702 +1609 blockdaemon_lido 0xb26f9666... Titan Relay
14194329 6 3398 1789 +1609 blockdaemon 0x8a850621... Titan Relay
14191982 13 3519 1911 +1608 0x850b00e0... BloXroute Regulated
14188036 5 3377 1772 +1605 whale_0xdc8d 0x88a53ec4... BloXroute Max Profit
14189645 0 3289 1684 +1605 ether.fi 0x857b0038... BloXroute Max Profit
14192669 4 3357 1754 +1603 blockdaemon 0x8a850621... Titan Relay
14189676 5 3372 1772 +1600 blockdaemon 0xb67eaa5e... BloXroute Max Profit
14191587 0 3282 1684 +1598 ether.fi 0x805e28e6... BloXroute Max Profit
14192697 1 3294 1702 +1592 luno 0xb67eaa5e... BloXroute Max Profit
14189083 0 3276 1684 +1592 blockdaemon 0x9129eeb4... Ultra Sound
14187753 6 3377 1789 +1588 blockdaemon 0xb67eaa5e... BloXroute Max Profit
14189720 5 3358 1772 +1586 blockdaemon_lido 0x8527d16c... Ultra Sound
14191651 5 3349 1772 +1577 0xb67eaa5e... BloXroute Regulated
14187869 5 3348 1772 +1576 blockdaemon 0xb26f9666... Titan Relay
14193102 0 3257 1684 +1573 blockdaemon_lido 0x8527d16c... Ultra Sound
14189972 6 3356 1789 +1567 0x850b00e0... BloXroute Regulated
14190252 3 3301 1737 +1564 whale_0xdc8d 0x82c466b9... BloXroute Regulated
14194301 0 3248 1684 +1564 blockdaemon 0x856b0004... Ultra Sound
14192653 0 3247 1684 +1563 blockdaemon_lido 0x88857150... Ultra Sound
14194194 1 3264 1702 +1562 luno 0xb4ce6162... Ultra Sound
14192707 4 3316 1754 +1562 revolut 0x850b00e0... BloXroute Max Profit
14193740 6 3349 1789 +1560 blockdaemon 0x8527d16c... Ultra Sound
14188837 0 3244 1684 +1560 whale_0x8ebd 0x8527d16c... Ultra Sound
14193637 5 3324 1772 +1552 0x8527d16c... Ultra Sound
14190735 2 3267 1719 +1548 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14188647 11 3424 1877 +1547 blockdaemon 0x88a53ec4... BloXroute Max Profit
14192177 1 3249 1702 +1547 gateway.fmas_lido 0x850b00e0... Flashbots
14188342 1 3249 1702 +1547 p2porg 0x85fb0503... Aestus
14190635 0 3231 1684 +1547 luno 0x8527d16c... Ultra Sound
14193544 12 3440 1894 +1546 blockdaemon 0xb67eaa5e... BloXroute Regulated
14189577 2 3263 1719 +1544 whale_0xdc8d 0x8527d16c... Ultra Sound
14188272 6 3331 1789 +1542 blockdaemon 0x853b0078... BloXroute Max Profit
14188725 6 3330 1789 +1541 whale_0xdc8d 0x8db2a99d... Ultra Sound
14194428 6 3328 1789 +1539 blockdaemon 0xb26f9666... Titan Relay
14189694 1 3240 1702 +1538 whale_0x8914 0x8db2a99d... Ultra Sound
14191269 9 3379 1842 +1537 p2porg 0x850b00e0... BloXroute Regulated
14191341 8 3359 1824 +1535 blockdaemon 0x850b00e0... BloXroute Max Profit
14193393 6 3322 1789 +1533 p2porg 0x850b00e0... Ultra Sound
14190510 0 3217 1684 +1533 blockdaemon 0x9129eeb4... Ultra Sound
14193704 5 3304 1772 +1532 blockdaemon_lido 0xb67eaa5e... Titan Relay
14192919 1 3231 1702 +1529 0xb67eaa5e... BloXroute Regulated
14192061 1 3229 1702 +1527 gateway.fmas_lido 0xb7c5c39a... BloXroute Max Profit
14194240 0 3209 1684 +1525 p2porg 0xb26f9666... BloXroute Regulated
14188062 0 3208 1684 +1524 whale_0x8ebd 0xb4ce6162... Ultra Sound
14191813 8 3347 1824 +1523 blockdaemon_lido 0x88857150... Ultra Sound
14193505 0 3207 1684 +1523 blockdaemon_lido 0x80ad903b... BloXroute Max Profit
14193687 1 3224 1702 +1522 whale_0xfd67 0x850b00e0... Ultra Sound
14194621 0 3205 1684 +1521 blockdaemon 0xb26f9666... Titan Relay
14187947 0 3203 1684 +1519 whale_0x8ebd 0xb4ce6162... Ultra Sound
14193971 0 3200 1684 +1516 whale_0x8ebd 0xb26f9666... Titan Relay
14191716 5 3285 1772 +1513 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14190837 6 3302 1789 +1513 whale_0x8914 0xb67eaa5e... Titan Relay
14189722 11 3389 1877 +1512 nethermind_lido 0x823e0146... BloXroute Max Profit
14188147 0 3190 1684 +1506 blockdaemon 0x856b0004... BloXroute Max Profit
14188631 1 3207 1702 +1505 whale_0x8ebd 0x8db2a99d... Flashbots
14192585 1 3207 1702 +1505 bitstamp 0x857b0038... BloXroute Max Profit
14193205 1 3206 1702 +1504 whale_0xfd67 0x853b0078... BloXroute Max Profit
14188777 5 3274 1772 +1502 whale_0xdc8d 0xb5a65d00... Ultra Sound
14190168 5 3273 1772 +1501 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
14190728 1 3202 1702 +1500 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
14189334 0 3183 1684 +1499 whale_0x8914 0x8527d16c... Ultra Sound
14190944 5 3269 1772 +1497 whale_0x2017 0x8db2a99d... Titan Relay
14194237 0 3181 1684 +1497 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14192849 1 3198 1702 +1496 revolut 0x88857150... Ultra Sound
14190905 0 3178 1684 +1494 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
14189500 7 3296 1807 +1489 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14193838 5 3258 1772 +1486 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
14187808 1 3186 1702 +1484 solo_stakers 0x88857150... Ultra Sound
14188701 2 3203 1719 +1484 0x850b00e0... BloXroute Max Profit
14192840 0 3168 1684 +1484 blockdaemon_lido 0xb26f9666... Titan Relay
14187713 0 3168 1684 +1484 whale_0x3878 0xb67eaa5e... Titan Relay
14190686 1 3184 1702 +1482 gateway.fmas_lido 0xb26f9666... Titan Relay
14190023 2 3200 1719 +1481 blockdaemon 0x8527d16c... Ultra Sound
14191689 4 3234 1754 +1480 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
14192252 0 3164 1684 +1480 gateway.fmas_lido 0x8527d16c... Ultra Sound
14191483 5 3247 1772 +1475 blockdaemon_lido 0xb26f9666... Titan Relay
14191534 6 3264 1789 +1475 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
14189261 2 3194 1719 +1475 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
14187810 0 3158 1684 +1474 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14188717 5 3245 1772 +1473 blockdaemon 0x853b0078... Ultra Sound
14194241 1 3175 1702 +1473 whale_0xfd67 0xb67eaa5e... Titan Relay
14189040 10 3332 1859 +1473 luno 0xb26f9666... Titan Relay
14193074 6 3261 1789 +1472 p2porg 0x850b00e0... Ultra Sound
14194129 0 3155 1684 +1471 revolut 0xb26f9666... Titan Relay
14193542 0 3155 1684 +1471 whale_0x8ebd 0xb3a6dc1f... Flashbots
14189836 5 3240 1772 +1468 revolut 0xb26f9666... Titan Relay
14190785 1 3169 1702 +1467 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14190513 0 3151 1684 +1467 gateway.fmas_lido 0x80ad903b... BloXroute Max Profit
14188639 0 3150 1684 +1466 p2porg 0x850b00e0... BloXroute Regulated
14194670 5 3237 1772 +1465 blockdaemon 0xb26f9666... Titan Relay
14191531 2 3184 1719 +1465 gateway.fmas_lido 0x853b0078... BloXroute Max Profit
14192167 0 3149 1684 +1465 p2porg 0xb26f9666... Titan Relay
14194368 1 3166 1702 +1464 whale_0xc611 0xb67eaa5e... Titan Relay
14193843 9 3305 1842 +1463 blockdaemon 0x8527d16c... Ultra Sound
14191605 0 3146 1684 +1462 whale_0xfd67 0x823e0146... Titan Relay
14187757 0 3146 1684 +1462 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14188650 5 3233 1772 +1461 gateway.fmas_lido 0x823e0146... BloXroute Max Profit
14187616 5 3232 1772 +1460 p2porg 0xb26f9666... Titan Relay
14192156 5 3232 1772 +1460 gateway.fmas_lido 0x8527d16c... Ultra Sound
14190627 5 3231 1772 +1459 whale_0x8ebd 0x8a850621... Titan Relay
14189583 6 3247 1789 +1458 figment 0xb67eaa5e... BloXroute Regulated
14188488 4 3212 1754 +1458 blockdaemon_lido 0x8db2a99d... BloXroute Max Profit
14188542 4 3209 1754 +1455 p2porg 0xb67eaa5e... BloXroute Max Profit
14192054 1 3152 1702 +1450 gateway.fmas_lido 0x88857150... Ultra Sound
14192755 0 3132 1684 +1448 p2porg 0x850b00e0... BloXroute Regulated
14189259 12 3341 1894 +1447 p2porg 0x8527d16c... Ultra Sound
14187618 1 3145 1702 +1443 whale_0x8914 0x88a53ec4... BloXroute Max Profit
14193491 0 3126 1684 +1442 whale_0x8914 0xb67eaa5e... Titan Relay
14189548 2 3156 1719 +1437 p2porg 0xb26f9666... Titan Relay
14191828 0 3121 1684 +1437 blockdaemon 0xb26f9666... Titan Relay
14188043 1 3137 1702 +1435 kiln Local Local
14194503 1 3137 1702 +1435 whale_0x8914 0x8db2a99d... Ultra Sound
14189653 5 3205 1772 +1433 whale_0xfd67 0xb67eaa5e... Titan Relay
14188336 1 3135 1702 +1433 whale_0x8914 0x85fb0503... Ultra Sound
14191282 1 3135 1702 +1433 gateway.fmas_lido 0x823e0146... BloXroute Max Profit
14194294 0 3116 1684 +1432 figment 0x853b0078... Ultra Sound
14190669 7 3237 1807 +1430 whale_0x8914 0x850b00e0... Ultra Sound
14193574 2 3146 1719 +1427 p2porg 0xb26f9666... Titan Relay
14190906 5 3198 1772 +1426 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14189227 5 3197 1772 +1425 whale_0x8ebd 0x8527d16c... Ultra Sound
14188872 0 3109 1684 +1425 gateway.fmas_lido 0x9129eeb4... Ultra Sound
14190025 1 3123 1702 +1421 whale_0x3878 0xb67eaa5e... Titan Relay
14192080 1 3123 1702 +1421 whale_0xc611 0xb67eaa5e... BloXroute Regulated
14189231 1 3122 1702 +1420 whale_0x8ebd 0x8db2a99d... Ultra Sound
14191886 0 3104 1684 +1420 gateway.fmas_lido 0x8527d16c... Ultra Sound
14188334 5 3190 1772 +1418 coinbase 0x88857150... Ultra Sound
14192474 1 3120 1702 +1418 kiln 0x8527d16c... Ultra Sound
14191866 6 3206 1789 +1417 gateway.fmas_lido 0xb26f9666... Titan Relay
14189989 10 3273 1859 +1414 0xb67eaa5e... BloXroute Max Profit
14188819 0 3097 1684 +1413 gateway.fmas_lido 0x8db2a99d... Flashbots
14194246 6 3200 1789 +1411 whale_0x3878 0xb67eaa5e... Titan Relay
14188244 7 3216 1807 +1409 blockdaemon 0x88a53ec4... BloXroute Regulated
14191709 6 3198 1789 +1409 p2porg 0x853b0078... Titan Relay
14189631 1 3109 1702 +1407 coinbase 0xb26f9666... BloXroute Regulated
14187937 1 3109 1702 +1407 blockdaemon 0x8527d16c... Ultra Sound
14192034 0 3089 1684 +1405 0xba003e46... BloXroute Max Profit
14188346 0 3089 1684 +1405 whale_0x3878 0x88a53ec4... BloXroute Regulated
14187843 5 3175 1772 +1403 whale_0x8ebd 0x85fb0503... Aestus
14190687 3 3139 1737 +1402 p2porg 0x850b00e0... BloXroute Regulated
14190108 1 3103 1702 +1401 whale_0x8ebd Local Local
14190724 1 3102 1702 +1400 whale_0x8ebd 0x8db2a99d... Ultra Sound
14189541 12 3294 1894 +1400 blockdaemon_lido 0xb26f9666... Titan Relay
14191461 7 3205 1807 +1398 whale_0x8914 0x850b00e0... Ultra Sound
14189828 0 3082 1684 +1398 whale_0xba40 0x88a53ec4... BloXroute Regulated
14188332 0 3081 1684 +1397 coinbase Local Local
14194079 1 3098 1702 +1396 p2porg 0x88a53ec4... BloXroute Regulated
14191054 0 3080 1684 +1396 p2porg 0xb26f9666... Titan Relay
14189504 0 3080 1684 +1396 coinbase 0x8527d16c... Ultra Sound
14193498 0 3079 1684 +1395 p2porg 0x83cae7e5... BloXroute Max Profit
14190267 1 3096 1702 +1394 figment 0xb26f9666... Titan Relay
14189638 2 3113 1719 +1394 whale_0xfd67 0x8db2a99d... Flashbots
14191320 0 3076 1684 +1392 everstake 0xb26f9666... Titan Relay
14187702 1 3092 1702 +1390 coinbase 0xb26f9666... BloXroute Regulated
14187622 5 3160 1772 +1388 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14189918 5 3160 1772 +1388 whale_0x4b5e 0x88a53ec4... BloXroute Max Profit
14192219 1 3089 1702 +1387 whale_0x8914 0x88a53ec4... BloXroute Regulated
14194261 0 3071 1684 +1387 kiln 0xb26f9666... Titan Relay
14189105 5 3158 1772 +1386 kiln 0xb5a65d00... Ultra Sound
14190859 5 3158 1772 +1386 0xb67eaa5e... Aestus
14191403 6 3174 1789 +1385 coinbase 0x8527d16c... Ultra Sound
14191899 6 3173 1789 +1384 coinbase 0xb67eaa5e... BloXroute Max Profit
14190224 2 3102 1719 +1383 coinbase 0x88a53ec4... BloXroute Regulated
14192351 5 3154 1772 +1382 whale_0x8ebd 0x8527d16c... Ultra Sound
14192475 1 3084 1702 +1382 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14189959 1 3083 1702 +1381 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14191125 2 3100 1719 +1381 coinbase 0xb26f9666... Titan Relay
14190514 9 3222 1842 +1380 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14192424 1 3082 1702 +1380 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14189154 0 3064 1684 +1380 coinbase 0x8db2a99d... Flashbots
14193769 1 3081 1702 +1379 kiln 0xb67eaa5e... BloXroute Max Profit
14189682 0 3063 1684 +1379 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14189144 1 3080 1702 +1378 whale_0x8ebd 0x8db2a99d... Ultra Sound
14188933 0 3062 1684 +1378 kiln 0xb5a65d00... Ultra Sound
14192508 0 3062 1684 +1378 p2porg 0xb26f9666... Titan Relay
14191840 0 3060 1684 +1376 coinbase 0xb26f9666... Titan Relay
14193686 10 3234 1859 +1375 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14190702 5 3146 1772 +1374 whale_0x8ebd 0x8527d16c... Ultra Sound
14188735 1 3076 1702 +1374 p2porg 0x853b0078... BloXroute Max Profit
14191280 1 3076 1702 +1374 p2porg 0x853b0078... BloXroute Max Profit
14191965 1 3076 1702 +1374 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14192525 2 3093 1719 +1374 kiln 0xb26f9666... Titan Relay
14192310 1 3075 1702 +1373 p2porg 0x8527d16c... Ultra Sound
14189856 1 3075 1702 +1373 whale_0xfd67 0x88a53ec4... BloXroute Regulated
14189867 0 3057 1684 +1373 p2porg 0xb26f9666... BloXroute Max Profit
14194634 7 3179 1807 +1372 0xb26f9666... Titan Relay
14188224 1 3074 1702 +1372 whale_0x8ebd 0x8527d16c... Ultra Sound
14192616 0 3056 1684 +1372 p2porg 0x99cba505... BloXroute Max Profit
14190270 7 3178 1807 +1371 gateway.fmas_lido 0x8527d16c... Ultra Sound
14187954 8 3195 1824 +1371 coinbase 0x850b00e0... BloXroute Max Profit
14190173 0 3055 1684 +1371 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14192287 5 3142 1772 +1370 p2porg 0xb26f9666... BloXroute Max Profit
14192829 1 3071 1702 +1369 whale_0x8ebd 0x8527d16c... Ultra Sound
14189872 1 3071 1702 +1369 figment 0xb26f9666... BloXroute Max Profit
14194050 0 3053 1684 +1369 whale_0x8ebd 0x8527d16c... Ultra Sound
14192635 1 3070 1702 +1368 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14188246 6 3157 1789 +1368 whale_0x3878 0x85fb0503... Ultra Sound
14190874 7 3174 1807 +1367 whale_0xfd67 0xb67eaa5e... BloXroute Max Profit
14193018 4 3120 1754 +1366 whale_0xfd67 0xb67eaa5e... BloXroute Regulated
14190512 3 3102 1737 +1365 p2porg 0x8db2a99d... Flashbots
14189745 2 3084 1719 +1365 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14192933 3 3101 1737 +1364 coinbase 0xb67eaa5e... BloXroute Regulated
14193134 8 3188 1824 +1364 revolut 0x853b0078... BloXroute Regulated
14189473 3 3099 1737 +1362 p2porg 0xb26f9666... BloXroute Max Profit
14187807 8 3186 1824 +1362 whale_0x4b5e 0xb7c5e609... Titan Relay
14194737 5 3133 1772 +1361 whale_0x6ddb 0x88a53ec4... BloXroute Regulated
14194198 1 3063 1702 +1361 p2porg 0x853b0078... BloXroute Max Profit
14190400 5 3132 1772 +1360 whale_0xfd67 0x8db2a99d... Titan Relay
14187699 1 3061 1702 +1359 p2porg 0x85fb0503... Aestus
14190891 1 3060 1702 +1358 p2porg 0xb67eaa5e... Ultra Sound
14191288 0 3042 1684 +1358 p2porg 0x823e0146... BloXroute Max Profit
14190779 1 3059 1702 +1357 p2porg 0x853b0078... BloXroute Max Profit
14194465 1 3059 1702 +1357 whale_0x8ebd 0x8db2a99d... Flashbots
14191077 2 3076 1719 +1357 whale_0xedc6 0xb26f9666... BloXroute Max Profit
14188558 0 3041 1684 +1357 coinbase 0xb26f9666... Titan Relay
14194454 1 3058 1702 +1356 solo_stakers 0xb26f9666... Titan Relay
14193526 6 3145 1789 +1356 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14188830 4 3110 1754 +1356 p2porg 0x8527d16c... Ultra Sound
14189498 1 3057 1702 +1355 0x8db2a99d... BloXroute Max Profit
14188454 8 3179 1824 +1355 bitstamp 0x85fb0503... Aestus
14188439 0 3039 1684 +1355 p2porg 0x85fb0503... Aestus
14189442 1 3056 1702 +1354 whale_0xedc6 0x8db2a99d... Ultra Sound
14188779 2 3073 1719 +1354 p2porg 0x85fb0503... Aestus
14193706 0 3037 1684 +1353 coinbase 0x88857150... Ultra Sound
14188254 1 3054 1702 +1352 whale_0xedc6 0x9129eeb4... Agnostic Gnosis
14192780 7 3158 1807 +1351 kiln 0xb26f9666... Titan Relay
14188657 1 3053 1702 +1351 coinbase 0x8db2a99d... Ultra Sound
14193920 6 3140 1789 +1351 whale_0x8ebd 0xb26f9666... Titan Relay
14189199 1 3052 1702 +1350 0x8db2a99d... Ultra Sound
14194038 1 3052 1702 +1350 figment 0xac23f8cc... Ultra Sound
14190017 6 3139 1789 +1350 everstake 0x856b0004... BloXroute Max Profit
14188848 1 3051 1702 +1349 whale_0x8ebd 0xb26f9666... Titan Relay
14192597 7 3155 1807 +1348 gateway.fmas_lido 0x8527d16c... Ultra Sound
14191746 0 3032 1684 +1348 coinbase 0x856b0004... Ultra Sound
14191453 5 3119 1772 +1347 0x853b0078... Ultra Sound
14192044 7 3153 1807 +1346 coinbase 0xb7c5e609... BloXroute Max Profit
14194125 7 3153 1807 +1346 coinbase 0xb67eaa5e... BloXroute Regulated
14189394 7 3153 1807 +1346 p2porg 0x850b00e0... BloXroute Regulated
14187783 5 3116 1772 +1344 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14188277 8 3168 1824 +1344 p2porg 0x853b0078... BloXroute Regulated
14193489 6 3133 1789 +1344 whale_0xfd67 0xb67eaa5e... BloXroute Max Profit
14191420 1 3043 1702 +1341 coinbase 0xb26f9666... Titan Relay
14192945 0 3025 1684 +1341 everstake 0xb26f9666... Aestus
14192569 0 3025 1684 +1341 coinbase 0xb26f9666... Titan Relay
14192979 8 3163 1824 +1339 coinbase 0xb67eaa5e... BloXroute Regulated
14189438 0 3023 1684 +1339 whale_0x8ebd 0x9129eeb4... Aestus
14192323 6 3127 1789 +1338 0x856b0004... Ultra Sound
14191784 5 3107 1772 +1335 kiln 0xb26f9666... BloXroute Max Profit
14190099 3 3072 1737 +1335 everstake 0xb67eaa5e... BloXroute Max Profit
14191246 0 3019 1684 +1335 kiln 0x8527d16c... Ultra Sound
14188580 0 3019 1684 +1335 coinbase 0x88a53ec4... BloXroute Max Profit
14194169 0 3019 1684 +1335 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14188975 6 3123 1789 +1334 coinbase 0xb26f9666... Aestus
14194593 2 3053 1719 +1334 coinbase 0x88857150... Ultra Sound
14190125 1 3035 1702 +1333 coinbase 0xb26f9666... Titan Relay
14192369 2 3052 1719 +1333 p2porg 0x850b00e0... BloXroute Max Profit
14193942 0 3017 1684 +1333 coinbase 0x8db2a99d... Flashbots
14188210 0 3017 1684 +1333 coinbase 0x8527d16c... Ultra Sound
14193931 5 3104 1772 +1332 coinbase 0x88a53ec4... BloXroute Max Profit
14188567 6 3121 1789 +1332 p2porg 0xb26f9666... Titan Relay
14193893 0 3016 1684 +1332 figment 0x850b00e0... BloXroute Max Profit
14192763 8 3154 1824 +1330 p2porg 0xb26f9666... BloXroute Max Profit
14193806 4 3084 1754 +1330 everstake 0x88a53ec4... BloXroute Max Profit
14190791 0 3014 1684 +1330 coinbase 0x88a53ec4... BloXroute Regulated
14189508 0 3014 1684 +1330 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14189849 5 3101 1772 +1329 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14187896 3 3065 1737 +1328 coinbase 0xb26f9666... Titan Relay
14193677 3 3065 1737 +1328 kiln 0xb26f9666... Titan Relay
14193384 1 3030 1702 +1328 coinbase 0x8527d16c... Ultra Sound
14188965 6 3116 1789 +1327 whale_0x8ebd 0xb26f9666... Titan Relay
14192745 2 3046 1719 +1327 kiln 0xb67eaa5e... BloXroute Max Profit
14188791 6 3115 1789 +1326 whale_0xfd67 0x8db2a99d... Flashbots
14190751 2 3044 1719 +1325 coinbase 0xb26f9666... Titan Relay
14193802 3 3061 1737 +1324 whale_0x8ebd 0x88857150... Ultra Sound
14189277 6 3113 1789 +1324 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14188838 4 3078 1754 +1324 kiln 0x88a53ec4... BloXroute Regulated
14193238 0 3008 1684 +1324 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14192967 0 3008 1684 +1324 whale_0x8ebd 0x8527d16c... Ultra Sound
14188851 1 3025 1702 +1323 kiln 0xb26f9666... Titan Relay
14194264 0 3007 1684 +1323 whale_0x8ebd 0x856b0004... Ultra Sound
14191238 5 3093 1772 +1321 p2porg 0x8527d16c... Ultra Sound
14188803 4 3075 1754 +1321 whale_0x8ebd 0x85fb0503... Aestus
14192812 0 3005 1684 +1321 coinbase 0x8527d16c... Ultra Sound
14188940 9 3161 1842 +1319 figment 0xa965c911... Ultra Sound
14190770 5 3091 1772 +1319 0xb26f9666... BloXroute Max Profit
14187873 1 3021 1702 +1319 whale_0x8ebd 0x8db2a99d... Flashbots
14193997 0 3003 1684 +1319 0xb26f9666... BloXroute Regulated
14193731 0 3003 1684 +1319 kiln 0xb26f9666... Titan Relay
14191017 7 3125 1807 +1318 coinbase 0x850b00e0... BloXroute Max Profit
14194041 5 3089 1772 +1317 coinbase 0x8527d16c... Ultra Sound
14190136 3 3054 1737 +1317 kiln 0xb67eaa5e... BloXroute Regulated
14193426 0 3001 1684 +1317 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14187923 1 3017 1702 +1315 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
14189781 7 3121 1807 +1314 p2porg 0xb67eaa5e... BloXroute Max Profit
14190216 5 3086 1772 +1314 coinbase 0xb26f9666... BloXroute Regulated
14194761 4 3066 1754 +1312 stader 0xb67eaa5e... BloXroute Regulated
14192549 0 2996 1684 +1312 0x823e0146... BloXroute Max Profit
14190932 6 3100 1789 +1311 kiln 0xb26f9666... Titan Relay
14190345 4 3064 1754 +1310 p2porg 0x8db2a99d... BloXroute Max Profit
14193245 2 3028 1719 +1309 coinbase 0x8527d16c... Ultra Sound
14193566 5 3079 1772 +1307 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14194727 5 3079 1772 +1307 whale_0x8ebd 0xb26f9666... Titan Relay
14190630 1 3009 1702 +1307 whale_0x8ebd 0x8527d16c... Ultra Sound
14194295 6 3096 1789 +1307 kiln 0xb67eaa5e... BloXroute Max Profit
14193798 7 3113 1807 +1306 coinbase 0x856b0004... Ultra Sound
14192328 5 3078 1772 +1306 everstake 0xb26f9666... Titan Relay
14188985 3 3043 1737 +1306 everstake 0x8527d16c... Ultra Sound
14190374 1 3008 1702 +1306 whale_0x8ebd Local Local
14193468 0 2988 1684 +1304 whale_0x8ebd 0xb7c5e609... BloXroute Max Profit
14189661 1 3004 1702 +1302 everstake 0xb26f9666... Titan Relay
14189177 5 3073 1772 +1301 kiln 0x853b0078... BloXroute Max Profit
14193072 0 2985 1684 +1301 coinbase 0x856b0004... Ultra Sound
14190211 9 3142 1842 +1300 coinbase 0x8527d16c... Ultra Sound
14193219 1 3001 1702 +1299 coinbase 0x88857150... Ultra Sound
14193660 0 2983 1684 +1299 kiln 0x856b0004... BloXroute Max Profit
14189823 6 3085 1789 +1296 p2porg 0xb26f9666... BloXroute Max Profit
14192303 11 3172 1877 +1295 p2porg 0x853b0078... Ultra Sound
14191383 1 2997 1702 +1295 nethermind_lido 0xb26f9666... Aestus
14194591 1 2997 1702 +1295 coinbase 0x8db2a99d... Flashbots
14189819 1 2997 1702 +1295 kiln 0x88857150... Ultra Sound
14192846 6 3084 1789 +1295 p2porg 0xb26f9666... Aestus
14190885 4 3049 1754 +1295 coinbase 0x8db2a99d... Flashbots
14194200 6 3083 1789 +1294 p2porg 0xb67eaa5e... Aestus
14191723 0 2978 1684 +1294 everstake 0x856b0004... BloXroute Max Profit
14194630 0 2978 1684 +1294 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14194001 5 3065 1772 +1293 coinbase 0x856b0004... Ultra Sound
14192256 5 3064 1772 +1292 blockdaemon_lido 0x8527d16c... Ultra Sound
14190690 5 3063 1772 +1291 0x8527d16c... Ultra Sound
14193591 1 2993 1702 +1291 kiln 0xb67eaa5e... BloXroute Max Profit
14190043 8 3115 1824 +1291 coinbase 0xb26f9666... Titan Relay
14190890 6 3080 1789 +1291 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14191338 6 3080 1789 +1291 kiln 0x88a53ec4... BloXroute Regulated
14189178 1 2992 1702 +1290 kiln 0xb26f9666... BloXroute Regulated
14189140 5 3061 1772 +1289 whale_0x8ebd 0xb26f9666... Titan Relay
14193968 5 3060 1772 +1288 p2porg 0xb26f9666... BloXroute Max Profit
14191572 1 2989 1702 +1287 everstake 0xb26f9666... Titan Relay
14193193 0 2971 1684 +1287 kiln 0x80ad903b... Flashbots
14188000 7 3093 1807 +1286 blockdaemon 0x857b0038... BloXroute Regulated
14188698 1 2988 1702 +1286 coinbase 0x85fb0503... Aestus
14189852 1 2987 1702 +1285 kiln 0x8db2a99d... BloXroute Max Profit
14192124 5 3056 1772 +1284 coinbase 0x856b0004... BloXroute Max Profit
14190123 7 3090 1807 +1283 kiln 0x850b00e0... BloXroute Max Profit
14190459 1 2985 1702 +1283 whale_0x8ebd Local Local
14188752 1 2985 1702 +1283 kiln 0x85fb0503... Aestus
14189930 1 2983 1702 +1281 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14192194 1 2983 1702 +1281 everstake 0xb26f9666... Titan Relay
14189757 2 3000 1719 +1281 coinbase 0x856b0004... BloXroute Max Profit
14192029 0 2965 1684 +1281 everstake 0xb67eaa5e... BloXroute Regulated
14190866 5 3051 1772 +1279 kiln 0xb67eaa5e... BloXroute Regulated
14188269 3 3016 1737 +1279 coinbase 0x856b0004... BloXroute Max Profit
14194655 1 2981 1702 +1279 kiln 0x88857150... Ultra Sound
14192472 3 3015 1737 +1278 kiln 0x856b0004... Ultra Sound
14188361 3 3015 1737 +1278 kiln 0xa965c911... Ultra Sound
14192944 0 2962 1684 +1278 coinbase 0x853b0078... Ultra Sound
14189245 5 3047 1772 +1275 whale_0x8ebd 0xb5a65d00... Ultra Sound
14193851 1 2975 1702 +1273 kiln 0x8527d16c... Ultra Sound
14189965 1 2975 1702 +1273 stader 0x850b00e0... Flashbots
14193623 1 2975 1702 +1273 coinbase 0x853b0078... BloXroute Max Profit
14187885 2 2991 1719 +1272 0x856b0004... BloXroute Max Profit
14191547 0 2956 1684 +1272 kiln 0xb67eaa5e... BloXroute Regulated
14188563 2 2990 1719 +1271 coinbase 0x853b0078... BloXroute Max Profit
14194545 3 3007 1737 +1270 kiln 0xb7c5c39a... BloXroute Max Profit
14194587 1 2972 1702 +1270 kiln 0xb26f9666... BloXroute Regulated
14194183 6 3059 1789 +1270 kiln 0xb67eaa5e... BloXroute Max Profit
14192562 0 2953 1684 +1269 kiln 0x8527d16c... Ultra Sound
14189033 1 2970 1702 +1268 everstake 0xb26f9666... Titan Relay
14191959 6 3057 1789 +1268 coinbase 0x853b0078... BloXroute Max Profit
14194784 0 2952 1684 +1268 ether.fi 0x88a53ec4... BloXroute Regulated
14189419 9 3108 1842 +1266 coinbase 0x8db2a99d... Titan Relay
14191316 5 3038 1772 +1266 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14190849 1 2968 1702 +1266 coinbase 0xb67eaa5e... Ultra Sound
Total anomalies: 430

Anomalies by relay

Which relays produce the most propagation anomalies?

Show code
if n_anomalies > 0:
    # Count anomalies by relay
    relay_counts = df_outliers["relay"].value_counts().reset_index()
    relay_counts.columns = ["relay", "anomaly_count"]
    
    # Get total blocks per relay for context
    df_anomaly["relay"] = df_anomaly["winning_relays"].apply(lambda x: x[0] if len(x) > 0 else "Local")
    total_by_relay = df_anomaly.groupby("relay").size().reset_index(name="total_blocks")
    
    relay_counts = relay_counts.merge(total_by_relay, on="relay")
    relay_counts["anomaly_rate"] = relay_counts["anomaly_count"] / relay_counts["total_blocks"] * 100
    relay_counts = relay_counts.sort_values("anomaly_rate", ascending=True)
    
    fig = go.Figure()
    
    fig.add_trace(go.Bar(
        y=relay_counts["relay"],
        x=relay_counts["anomaly_count"],
        orientation="h",
        marker_color="#e74c3c",
        text=relay_counts.apply(lambda r: f"{r['anomaly_count']}/{r['total_blocks']} ({r['anomaly_rate']:.1f}%)", axis=1),
        textposition="outside",
        hovertemplate="<b>%{y}</b><br>Anomalies: %{x}<br>Total blocks: %{customdata[0]:,}<br>Rate: %{customdata[1]:.1f}%<extra></extra>",
        customdata=np.column_stack([relay_counts["total_blocks"], relay_counts["anomaly_rate"]]),
    ))
    
    fig.update_layout(
        margin=dict(l=150, r=80, t=30, b=60),
        xaxis=dict(title="Number of anomalies"),
        yaxis=dict(title=""),
        height=350,
    )
    fig.show(config={"responsive": True})

Anomalies by proposer entity

Which proposer entities produce the most propagation anomalies?

Show code
if n_anomalies > 0:
    # Count anomalies by proposer entity
    proposer_counts = df_outliers["proposer"].value_counts().reset_index()
    proposer_counts.columns = ["proposer", "anomaly_count"]
    
    # Get total blocks per proposer for context
    df_anomaly["proposer"] = df_anomaly["proposer_entity"].fillna("Unknown")
    total_by_proposer = df_anomaly.groupby("proposer").size().reset_index(name="total_blocks")
    
    proposer_counts = proposer_counts.merge(total_by_proposer, on="proposer")
    proposer_counts["anomaly_rate"] = proposer_counts["anomaly_count"] / proposer_counts["total_blocks"] * 100
    
    # Show top 15 by anomaly count
    proposer_counts = proposer_counts.nlargest(15, "anomaly_rate").sort_values("anomaly_rate", ascending=True)
    
    fig = go.Figure()
    
    fig.add_trace(go.Bar(
        y=proposer_counts["proposer"],
        x=proposer_counts["anomaly_count"],
        orientation="h",
        marker_color="#e74c3c",
        text=proposer_counts.apply(lambda r: f"{r['anomaly_count']}/{r['total_blocks']} ({r['anomaly_rate']:.1f}%)", axis=1),
        textposition="outside",
        hovertemplate="<b>%{y}</b><br>Anomalies: %{x}<br>Total blocks: %{customdata[0]:,}<br>Rate: %{customdata[1]:.1f}%<extra></extra>",
        customdata=np.column_stack([proposer_counts["total_blocks"], proposer_counts["anomaly_rate"]]),
    ))
    
    fig.update_layout(
        margin=dict(l=150, r=80, t=30, b=60),
        xaxis=dict(title="Number of anomalies"),
        yaxis=dict(title=""),
        height=450,
    )
    fig.show(config={"responsive": True})

Anomalies by builder

Which builders produce the most propagation anomalies? (Truncated pubkeys shown for MEV blocks)

Show code
if n_anomalies > 0:
    # Count anomalies by builder
    builder_counts = df_outliers["builder"].value_counts().reset_index()
    builder_counts.columns = ["builder", "anomaly_count"]
    
    # Get total blocks per builder for context
    df_anomaly["builder"] = df_anomaly["winning_builder"].apply(
        lambda x: f"{x[:10]}..." if pd.notna(x) and x else "Local"
    )
    total_by_builder = df_anomaly.groupby("builder").size().reset_index(name="total_blocks")
    
    builder_counts = builder_counts.merge(total_by_builder, on="builder")
    builder_counts["anomaly_rate"] = builder_counts["anomaly_count"] / builder_counts["total_blocks"] * 100
    
    # Show top 15 by anomaly count
    builder_counts = builder_counts.nlargest(15, "anomaly_rate").sort_values("anomaly_rate", ascending=True)
    
    fig = go.Figure()
    
    fig.add_trace(go.Bar(
        y=builder_counts["builder"],
        x=builder_counts["anomaly_count"],
        orientation="h",
        marker_color="#e74c3c",
        text=builder_counts.apply(lambda r: f"{r['anomaly_count']}/{r['total_blocks']} ({r['anomaly_rate']:.1f}%)", axis=1),
        textposition="outside",
        hovertemplate="<b>%{y}</b><br>Anomalies: %{x}<br>Total blocks: %{customdata[0]:,}<br>Rate: %{customdata[1]:.1f}%<extra></extra>",
        customdata=np.column_stack([builder_counts["total_blocks"], builder_counts["anomaly_rate"]]),
    ))
    
    fig.update_layout(
        margin=dict(l=150, r=80, t=30, b=60),
        xaxis=dict(title="Number of anomalies"),
        yaxis=dict(title=""),
        height=450,
    )
    fig.show(config={"responsive": True})

Anomalies by blob count

Are anomalies more common at certain blob counts?

Show code
if n_anomalies > 0:
    # Count anomalies by blob count
    blob_anomalies = df_outliers.groupby("blob_count").size().reset_index(name="anomaly_count")
    blob_total = df_anomaly.groupby("blob_count").size().reset_index(name="total_blocks")
    
    blob_stats = blob_total.merge(blob_anomalies, on="blob_count", how="left").fillna(0)
    blob_stats["anomaly_count"] = blob_stats["anomaly_count"].astype(int)
    blob_stats["anomaly_rate"] = blob_stats["anomaly_count"] / blob_stats["total_blocks"] * 100
    
    fig = go.Figure()
    
    fig.add_trace(go.Bar(
        x=blob_stats["blob_count"],
        y=blob_stats["anomaly_count"],
        marker_color="#e74c3c",
        hovertemplate="<b>%{x} blobs</b><br>Anomalies: %{y}<br>Total: %{customdata[0]:,}<br>Rate: %{customdata[1]:.1f}%<extra></extra>",
        customdata=np.column_stack([blob_stats["total_blocks"], blob_stats["anomaly_rate"]]),
    ))
    
    fig.update_layout(
        margin=dict(l=60, r=30, t=30, b=60),
        xaxis=dict(title="Blob count", dtick=1),
        yaxis=dict(title="Number of anomalies"),
        height=350,
    )
    fig.show(config={"responsive": True})