Fri, Mar 13, 2026

Propagation anomalies - 2026-03-13

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-13' AND slot_start_date_time < '2026-03-13'::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-13' AND slot_start_date_time < '2026-03-13'::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-13' AND slot_start_date_time < '2026-03-13'::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-13' AND slot_start_date_time < '2026-03-13'::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-13' AND slot_start_date_time < '2026-03-13'::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-13' AND slot_start_date_time < '2026-03-13'::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-13' AND slot_start_date_time < '2026-03-13'::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-13' AND slot_start_date_time < '2026-03-13'::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,183
MEV blocks: 6,697 (93.2%)
Local blocks: 486 (6.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 = 1703.9 + 15.09 × blob_count (R² = 0.011)
Residual σ = 597.8ms
Anomalies (>2σ slow): 444 (6.2%)
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
13881024 0 6653 1704 +4949 whale_0x661b Local Local
13880736 0 6060 1704 +4356 upbit Local Local
13882300 0 4938 1704 +3234 ether.fi Local Local
13881548 0 4911 1704 +3207 whale_0x8ebd Local Local
13883488 0 4687 1704 +2983 upbit Local Local
13878562 0 4684 1704 +2980 blockdaemon Local Local
13878560 0 4355 1704 +2651 bridgetower_lido Local Local
13882786 0 4109 1704 +2405 solo_stakers Local Local
13883452 1 3865 1719 +2146 blockdaemon_lido 0x856b0004... BloXroute Max Profit
13880305 0 3820 1704 +2116 piertwo 0x851b00b1... BloXroute Max Profit
13878095 0 3762 1704 +2058 coinbase Local Local
13882086 0 3710 1704 +2006 blockdaemon 0xa0366397... Ultra Sound
13880304 0 3704 1704 +2000 piertwo 0x88857150... Ultra Sound
13881009 9 3802 1840 +1962 coinbase 0x8db2a99d... Aestus
13882939 5 3713 1779 +1934 0xb4ce6162... Ultra Sound
13885088 0 3612 1704 +1908 nethermind_lido 0x85fb0503... BloXroute Max Profit
13879558 0 3573 1704 +1869 whale_0x8ebd 0x857b0038... Ultra Sound
13882106 5 3641 1779 +1862 whale_0x8ebd 0x8527d16c... Ultra Sound
13882227 2 3577 1734 +1843 whale_0x8ebd 0x88857150... Ultra Sound
13879971 8 3667 1825 +1842 ether.fi 0x8db2a99d... Ultra Sound
13880730 0 3518 1704 +1814 0x8527d16c... Ultra Sound
13884355 0 3514 1704 +1810 whale_0x8ebd 0xa1da2978... Ultra Sound
13881317 11 3655 1870 +1785 whale_0x8ebd 0x857b0038... Ultra Sound
13881579 2 3507 1734 +1773 blockdaemon 0x8a850621... Titan Relay
13884076 0 3471 1704 +1767 whale_0x8ebd 0xac23f8cc... Ultra Sound
13884257 8 3560 1825 +1735 everstake 0xac23f8cc... Ultra Sound
13881120 4 3499 1764 +1735 blockdaemon 0x850b00e0... BloXroute Max Profit
13881775 0 3437 1704 +1733 blockdaemon_lido 0x8527d16c... Ultra Sound
13878200 0 3419 1704 +1715 whale_0x8ebd 0x8a850621... Titan Relay
13883545 1 3426 1719 +1707 whale_0x8ebd 0x856b0004... Aestus
13881211 6 3490 1794 +1696 ether.fi 0x850b00e0... BloXroute Max Profit
13878048 10 3546 1855 +1691 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
13881152 0 3394 1704 +1690 stakingfacilities_lido 0xb67eaa5e... BloXroute Regulated
13883417 0 3394 1704 +1690 everstake 0x852b0070... Agnostic Gnosis
13881742 0 3390 1704 +1686 blockdaemon 0x8527d16c... Ultra Sound
13881907 0 3388 1704 +1684 whale_0x8ebd 0x852b0070... Agnostic Gnosis
13879136 1 3399 1719 +1680 nethermind_lido 0xb67eaa5e... BloXroute Regulated
13879145 13 3579 1900 +1679 whale_0x8ebd 0x8527d16c... Ultra Sound
13882049 17 3627 1960 +1667 abyss_finance Local Local
13883600 0 3367 1704 +1663 0xb26f9666... EthGas
13884413 6 3457 1794 +1663 blockdaemon 0x850b00e0... BloXroute Max Profit
13880266 0 3364 1704 +1660 nethermind_lido 0xb26f9666... Titan Relay
13884282 0 3361 1704 +1657 blockdaemon_lido 0xb26f9666... Titan Relay
13883427 9 3495 1840 +1655 ether.fi 0xb67eaa5e... Titan Relay
13879861 0 3355 1704 +1651 simplystaking_lido 0x85fb0503... BloXroute Max Profit
13879190 1 3370 1719 +1651 whale_0x8ebd 0x8db2a99d... Flashbots
13879840 6 3445 1794 +1651 stakingfacilities_lido 0xb67eaa5e... BloXroute Regulated
13878094 0 3346 1704 +1642 blockdaemon 0xb4ce6162... Ultra Sound
13880089 1 3361 1719 +1642 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13881088 0 3343 1704 +1639 stakingfacilities_lido 0x8db2a99d... BloXroute Regulated
13879361 5 3417 1779 +1638 whale_0x8ebd 0x8527d16c... Ultra Sound
13882146 10 3492 1855 +1637 blockdaemon_lido 0x8527d16c... Ultra Sound
13884548 8 3458 1825 +1633 nethermind_lido 0xb26f9666... Titan Relay
13884639 6 3421 1794 +1627 nethermind_lido 0x8527d16c... Ultra Sound
13882308 1 3344 1719 +1625 whale_0x8ebd 0x8db2a99d... Ultra Sound
13882052 10 3473 1855 +1618 blockdaemon 0xb67eaa5e... BloXroute Regulated
13879507 5 3397 1779 +1618 blockdaemon 0xb4ce6162... Ultra Sound
13879568 0 3319 1704 +1615 luno 0x853b0078... Ultra Sound
13884185 0 3317 1704 +1613 blockdaemon 0x82c466b9... Ultra Sound
13881953 9 3452 1840 +1612 blockdaemon 0x855b00e6... BloXroute Max Profit
13878812 0 3312 1704 +1608 luno 0x82c466b9... Ultra Sound
13878439 5 3381 1779 +1602 luno 0x8db2a99d... BloXroute Regulated
13882797 5 3381 1779 +1602 whale_0xdc8d 0x823e0146... BloXroute Regulated
13883200 0 3305 1704 +1601 whale_0xc541 0x8db2a99d... Agnostic Gnosis
13878515 13 3498 1900 +1598 nethermind_lido 0x88857150... Ultra Sound
13882980 0 3300 1704 +1596 whale_0xdc8d 0xb67eaa5e... BloXroute Regulated
13881574 5 3375 1779 +1596 blockdaemon_lido 0x88857150... Ultra Sound
13879182 3 3341 1749 +1592 blockdaemon_lido 0xb26f9666... Titan Relay
13885197 0 3295 1704 +1591 blockdaemon 0x8527d16c... Ultra Sound
13879324 1 3310 1719 +1591 whale_0xdc8d 0x853b0078... Ultra Sound
13881774 7 3399 1810 +1589 blockdaemon_lido 0x853b0078... BloXroute Regulated
13879566 6 3383 1794 +1589 luno 0x850b00e0... BloXroute Regulated
13879079 0 3291 1704 +1587 blockdaemon 0x853b0078... Ultra Sound
13879151 0 3289 1704 +1585 whale_0xdd6c 0xb7c5e609... BloXroute Max Profit
13884164 3 3331 1749 +1582 blockdaemon 0x88857150... Ultra Sound
13881653 5 3356 1779 +1577 blockdaemon_lido 0x853b0078... BloXroute Regulated
13880549 0 3279 1704 +1575 0xb26f9666... Titan Relay
13884851 0 3278 1704 +1574 whale_0xdc8d 0x88a53ec4... BloXroute Regulated
13881333 3 3323 1749 +1574 luno 0xb26f9666... BloXroute Regulated
13885090 14 3485 1915 +1570 blockdaemon_lido 0x8527d16c... Ultra Sound
13883129 1 3284 1719 +1565 blockdaemon_lido 0x8527d16c... Ultra Sound
13878736 2 3298 1734 +1564 blockdaemon 0x853b0078... BloXroute Regulated
13881012 10 3418 1855 +1563 whale_0x8ebd 0x8db2a99d... BloXroute Regulated
13880024 5 3340 1779 +1561 blockdaemon_lido 0x823e0146... BloXroute Max Profit
13881075 6 3355 1794 +1561 blockdaemon_lido 0xb67eaa5e... Titan Relay
13882001 0 3262 1704 +1558 blockdaemon_lido 0x850b00e0... Ultra Sound
13881355 0 3256 1704 +1552 blockdaemon 0x8527d16c... Ultra Sound
13880847 3 3296 1749 +1547 blockdaemon 0xb4ce6162... Ultra Sound
13884852 5 3324 1779 +1545 luno 0x88a53ec4... BloXroute Regulated
13879671 12 3429 1885 +1544 blockdaemon 0x85fb0503... BloXroute Regulated
13880673 5 3323 1779 +1544 stader 0x8527d16c... Ultra Sound
13882152 0 3245 1704 +1541 blockdaemon 0xb26f9666... BloXroute Regulated
13880339 0 3244 1704 +1540 blockdaemon 0x850b00e0... BloXroute Regulated
13878356 5 3319 1779 +1540 blockdaemon 0x88a53ec4... BloXroute Max Profit
13878927 6 3331 1794 +1537 blockdaemon_lido 0xb67eaa5e... Titan Relay
13881247 0 3240 1704 +1536 luno 0xb67eaa5e... BloXroute Regulated
13879653 12 3418 1885 +1533 whale_0x8ebd 0x8db2a99d... BloXroute Regulated
13881254 2 3266 1734 +1532 blockdaemon_lido 0x8527d16c... Ultra Sound
13878025 0 3235 1704 +1531 blockdaemon 0xb67eaa5e... Titan Relay
13882190 0 3231 1704 +1527 revolut 0xb26f9666... Titan Relay
13880065 1 3243 1719 +1524 everstake 0x823e0146... Aestus
13883404 5 3301 1779 +1522 coinbase 0x88a53ec4... BloXroute Max Profit
13881761 0 3225 1704 +1521 whale_0x8ebd 0x8527d16c... Ultra Sound
13884634 0 3224 1704 +1520 blockdaemon 0xb67eaa5e... BloXroute Regulated
13884321 5 3297 1779 +1518 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13881694 7 3326 1810 +1516 blockdaemon_lido 0x855b00e6... Ultra Sound
13881697 5 3292 1779 +1513 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
13878896 3 3261 1749 +1512 nethermind_lido 0x8527d16c... Ultra Sound
13879050 1 3230 1719 +1511 blockdaemon_lido 0x8527d16c... Ultra Sound
13878034 5 3289 1779 +1510 whale_0xdc8d 0x88a53ec4... BloXroute Regulated
13880477 6 3304 1794 +1510 blockdaemon 0x8527d16c... Ultra Sound
13881342 2 3239 1734 +1505 blockdaemon_lido 0x853b0078... Ultra Sound
13884019 8 3329 1825 +1504 whale_0x8ebd 0x8527d16c... Ultra Sound
13880835 0 3206 1704 +1502 blockdaemon_lido 0xb67eaa5e... Titan Relay
13881332 8 3326 1825 +1501 figment 0x855b00e6... BloXroute Max Profit
13884610 10 3355 1855 +1500 coinbase 0xb67eaa5e... BloXroute Max Profit
13879915 3 3249 1749 +1500 blockdaemon_lido 0x8527d16c... Ultra Sound
13883538 4 3264 1764 +1500 blockdaemon 0x855b00e6... BloXroute Max Profit
13880245 5 3276 1779 +1497 nethermind_lido 0x88a53ec4... BloXroute Max Profit
13881788 0 3200 1704 +1496 gateway.fmas_lido 0x8527d16c... Ultra Sound
13878300 0 3197 1704 +1493 whale_0xdc8d 0x8527d16c... Ultra Sound
13882589 0 3196 1704 +1492 kiln 0xa412c4b8... Flashbots
13878673 10 3345 1855 +1490 p2porg 0x850b00e0... BloXroute Regulated
13881906 6 3283 1794 +1489 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13884239 3 3235 1749 +1486 whale_0x8ebd 0xac23f8cc... Aestus
13880909 0 3189 1704 +1485 revolut 0x8527d16c... Ultra Sound
13882132 8 3309 1825 +1484 blockdaemon_lido 0x8527d16c... Ultra Sound
13881485 1 3201 1719 +1482 nethermind_lido 0x850b00e0... BloXroute Max Profit
13885115 6 3275 1794 +1481 blockdaemon 0x8527d16c... Ultra Sound
13880098 0 3184 1704 +1480 whale_0xdc8d Local Local
13882965 2 3214 1734 +1480 kraken 0xb26f9666... EthGas
13878752 1 3198 1719 +1479 p2porg 0x853b0078... Agnostic Gnosis
13879465 1 3198 1719 +1479 revolut 0xb26f9666... Titan Relay
13883863 5 3258 1779 +1479 solo_stakers 0x8527d16c... Ultra Sound
13881175 0 3182 1704 +1478 0x8527d16c... Ultra Sound
13884801 1 3195 1719 +1476 p2porg 0x850b00e0... BloXroute Regulated
13881794 10 3329 1855 +1474 whale_0xdc8d 0x853b0078... Ultra Sound
13880382 0 3178 1704 +1474 blockdaemon 0x8527d16c... Ultra Sound
13882034 3 3222 1749 +1473 rocklogicgmbh_lido 0xb7c5e609... Flashbots
13884087 7 3281 1810 +1471 nethermind_lido 0xb67eaa5e... BloXroute Regulated
13879692 0 3175 1704 +1471 kiln 0x852b0070... Agnostic Gnosis
13879378 3 3218 1749 +1469 nethermind_lido 0x88a53ec4... BloXroute Max Profit
13879284 5 3248 1779 +1469 ether.fi 0x8db2a99d... Flashbots
13884828 1 3186 1719 +1467 revolut 0x850b00e0... BloXroute Regulated
13880824 9 3306 1840 +1466 whale_0x8ebd 0xb7c5e609... BloXroute Max Profit
13880958 15 3395 1930 +1465 p2porg 0xb7c5fbdd... BloXroute Regulated
13878390 6 3259 1794 +1465 kiln 0x8db2a99d... BloXroute Max Profit
13880796 6 3258 1794 +1464 whale_0x8ebd 0x8527d16c... Ultra Sound
13879496 5 3242 1779 +1463 p2porg 0x85fb0503... BloXroute Regulated
13879936 1 3180 1719 +1461 stader 0x8527d16c... Ultra Sound
13882944 8 3285 1825 +1460 everstake 0xac23f8cc... BloXroute Regulated
13880675 0 3164 1704 +1460 ether.fi 0x851b00b1... BloXroute Max Profit
13879273 0 3162 1704 +1458 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
13879266 0 3160 1704 +1456 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13884493 5 3234 1779 +1455 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13884500 0 3158 1704 +1454 gateway.fmas_lido 0xb26f9666... Aestus
13879276 9 3293 1840 +1453 p2porg 0x855b00e6... BloXroute Max Profit
13880071 12 3338 1885 +1453 p2porg 0x8db2a99d... Ultra Sound
13878293 3 3202 1749 +1453 stakingfacilities_lido 0x856b0004... BloXroute Max Profit
13882499 5 3230 1779 +1451 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13882432 0 3154 1704 +1450 0xb26f9666... BloXroute Regulated
13878415 5 3227 1779 +1448 p2porg 0x8db2a99d... BloXroute Max Profit
13882999 2 3179 1734 +1445 p2porg 0x850b00e0... BloXroute Regulated
13879704 3 3192 1749 +1443 whale_0x8ebd 0x8db2a99d... BloXroute Regulated
13879544 5 3221 1779 +1442 whale_0x8ebd 0x8527d16c... Ultra Sound
13881967 0 3145 1704 +1441 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
13883088 10 3292 1855 +1437 kiln 0x8db2a99d... Agnostic Gnosis
13884800 9 3274 1840 +1434 nethermind_lido 0x88a53ec4... BloXroute Max Profit
13885163 1 3153 1719 +1434 blockdaemon_lido 0x88a53ec4... BloXroute Regulated
13878836 0 3137 1704 +1433 everstake 0xb26f9666... Aestus
13881691 0 3137 1704 +1433 p2porg 0x850b00e0... BloXroute Regulated
13884607 0 3137 1704 +1433 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13880737 0 3134 1704 +1430 kraken 0xa1da2978... Ultra Sound
13884755 0 3133 1704 +1429 revolut 0xb26f9666... Titan Relay
13882002 20 3433 2006 +1427 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13884576 0 3131 1704 +1427 nethermind_lido 0xb26f9666... Titan Relay
13882060 3 3176 1749 +1427 p2porg 0x856b0004... Ultra Sound
13881748 6 3219 1794 +1425 everstake 0x8db2a99d... Ultra Sound
13883791 8 3249 1825 +1424 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13879106 0 3126 1704 +1422 blockdaemon_lido 0x8db2a99d... BloXroute Max Profit
13884116 4 3183 1764 +1419 gateway.fmas_lido 0x88857150... Ultra Sound
13879765 0 3119 1704 +1415 nethermind_lido 0x852b0070... BloXroute Max Profit
13879291 5 3194 1779 +1415 whale_0x8ebd 0x88857150... Ultra Sound
13883108 5 3193 1779 +1414 0x823e0146... BloXroute Max Profit
13883007 3 3160 1749 +1411 p2porg 0x853b0078... BloXroute Regulated
13878196 10 3264 1855 +1409 p2porg 0x855b00e6... BloXroute Max Profit
13883381 5 3188 1779 +1409 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13883753 0 3110 1704 +1406 blockdaemon 0x8db2a99d... BloXroute Regulated
13878079 0 3109 1704 +1405 whale_0x23be 0x856b0004... Ultra Sound
13883266 2 3138 1734 +1404 whale_0x8ebd 0x8db2a99d... Flashbots
13883230 0 3106 1704 +1402 0x852b0070... BloXroute Max Profit
13882382 0 3102 1704 +1398 p2porg 0x852b0070... Ultra Sound
13882073 14 3312 1915 +1397 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13884246 0 3100 1704 +1396 whale_0x8ebd 0xb7c5e609... BloXroute Max Profit
13880695 11 3265 1870 +1395 nethermind_lido 0x855b00e6... BloXroute Max Profit
13878676 0 3098 1704 +1394 blockdaemon_lido 0xba003e46... BloXroute Max Profit
13884759 5 3173 1779 +1394 kiln 0x88a53ec4... BloXroute Max Profit
13878172 6 3187 1794 +1393 nethermind_lido 0x88a53ec4... BloXroute Regulated
13878595 0 3096 1704 +1392 ether.fi 0xb26f9666... Titan Relay
13880127 2 3126 1734 +1392 p2porg 0x850b00e0... BloXroute Max Profit
13880366 0 3094 1704 +1390 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13883116 13 3290 1900 +1390 kiln 0xb67eaa5e... BloXroute Max Profit
13878225 1 3107 1719 +1388 kiln 0x850b00e0... BloXroute Max Profit
13881784 6 3181 1794 +1387 0x850b00e0... BloXroute Max Profit
13883005 10 3241 1855 +1386 p2porg 0x8db2a99d... BloXroute Regulated
13881308 1 3104 1719 +1385 nethermind_lido 0x88a53ec4... BloXroute Regulated
13880929 0 3087 1704 +1383 p2porg 0x852b0070... Agnostic Gnosis
13882203 12 3268 1885 +1383 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
13882101 1 3100 1719 +1381 ether.fi 0x8527d16c... Ultra Sound
13884555 2 3115 1734 +1381 whale_0x8ebd 0x88857150... Ultra Sound
13881074 0 3083 1704 +1379 blockdaemon_lido 0xb26f9666... Titan Relay
13883006 3 3127 1749 +1378 0x8db2a99d... Flashbots
13878477 11 3247 1870 +1377 whale_0x8ee5 0x8db2a99d... BloXroute Regulated
13879312 3 3126 1749 +1377 p2porg 0x88a53ec4... BloXroute Regulated
13878602 8 3201 1825 +1376 figment 0x853b0078... BloXroute Max Profit
13878402 0 3080 1704 +1376 everstake 0x8db2a99d... BloXroute Max Profit
13881434 9 3215 1840 +1375 revolut 0xb26f9666... Titan Relay
13881866 1 3094 1719 +1375 p2porg 0x856b0004... Agnostic Gnosis
13880221 0 3077 1704 +1373 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13884908 5 3151 1779 +1372 p2porg 0xb26f9666... Titan Relay
13880378 6 3165 1794 +1371 everstake 0x8527d16c... Ultra Sound
13884343 0 3074 1704 +1370 p2porg 0x852b0070... BloXroute Max Profit
13881989 0 3074 1704 +1370 ether.fi 0xb26f9666... Titan Relay
13878039 1 3088 1719 +1369 everstake 0x8527d16c... Ultra Sound
13878764 10 3223 1855 +1368 whale_0x8ebd 0x8db2a99d... Ultra Sound
13882286 0 3072 1704 +1368 everstake 0x853b0078... Agnostic Gnosis
13883549 0 3071 1704 +1367 blockdaemon 0x8527d16c... Ultra Sound
13883641 1 3085 1719 +1366 kiln 0xb67eaa5e... BloXroute Regulated
13880714 1 3085 1719 +1366 whale_0xedc6 0xb26f9666... BloXroute Max Profit
13878708 0 3065 1704 +1361 p2porg 0x853b0078... BloXroute Regulated
13884113 0 3064 1704 +1360 ether.fi 0xb26f9666... Titan Relay
13885140 0 3064 1704 +1360 p2porg 0x852b0070... BloXroute Max Profit
13878360 1 3079 1719 +1360 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
13883504 5 3137 1779 +1358 ether.fi 0x8527d16c... Ultra Sound
13883841 0 3061 1704 +1357 p2porg 0x88a53ec4... BloXroute Max Profit
13884696 1 3076 1719 +1357 p2porg 0x8527d16c... Ultra Sound
13879946 13 3255 1900 +1355 blockdaemon 0xb67eaa5e... Titan Relay
13880727 6 3148 1794 +1354 p2porg 0x853b0078... BloXroute Regulated
13878100 20 3359 2006 +1353 blockdaemon_lido 0x855b00e6... BloXroute Max Profit
13881372 5 3132 1779 +1353 ether.fi 0xb26f9666... Titan Relay
13882606 0 3056 1704 +1352 whale_0x8ebd 0x823e0146... Ultra Sound
13884433 0 3056 1704 +1352 coinbase 0x8527d16c... Ultra Sound
13881028 0 3055 1704 +1351 p2porg 0xa412c4b8... Ultra Sound
13883823 0 3054 1704 +1350 p2porg 0xb26f9666... BloXroute Max Profit
13881176 1 3069 1719 +1350 whale_0x8ebd 0xb26f9666... Titan Relay
13882498 0 3052 1704 +1348 kiln 0x8527d16c... Ultra Sound
13879856 8 3172 1825 +1347 everstake 0x853b0078... Agnostic Gnosis
13881755 0 3051 1704 +1347 whale_0x8ebd 0x88857150... Ultra Sound
13883526 0 3049 1704 +1345 p2porg 0x852b0070... Agnostic Gnosis
13880933 0 3047 1704 +1343 0x852b0070... Agnostic Gnosis
13884456 0 3046 1704 +1342 0x852b0070... Aestus
13884154 5 3121 1779 +1342 everstake 0xb26f9666... Titan Relay
13880485 0 3045 1704 +1341 kiln Local Local
13878290 2 3075 1734 +1341 p2porg 0x853b0078... Aestus
13878425 1 3058 1719 +1339 kiln 0x850b00e0... BloXroute Max Profit
13882039 8 3163 1825 +1338 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13883368 8 3161 1825 +1336 0x850b00e0... Ultra Sound
13882345 2 3069 1734 +1335 p2porg 0x856b0004... Aestus
13882875 6 3129 1794 +1335 kiln 0xb67eaa5e... BloXroute Max Profit
13884085 3 3083 1749 +1334 kiln 0xb67eaa5e... BloXroute Regulated
13880282 6 3128 1794 +1334 everstake 0x855b00e6... BloXroute Max Profit
13881688 1 3052 1719 +1333 whale_0x8ebd Local Local
13882956 11 3201 1870 +1331 p2porg 0x823e0146... Ultra Sound
13882426 11 3201 1870 +1331 whale_0x8ebd 0x88857150... Ultra Sound
13879044 5 3110 1779 +1331 kiln 0x88a53ec4... BloXroute Regulated
13882496 5 3109 1779 +1330 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13884514 6 3123 1794 +1329 whale_0x8ebd 0x8527d16c... Ultra Sound
13882851 6 3122 1794 +1328 stakingfacilities_lido 0x823e0146... BloXroute Regulated
13882428 8 3152 1825 +1327 blockdaemon 0x8db2a99d... Ultra Sound
13879118 5 3105 1779 +1326 p2porg 0xb26f9666... Titan Relay
13879177 5 3102 1779 +1323 kiln 0xb67eaa5e... BloXroute Max Profit
13884457 0 3025 1704 +1321 whale_0x8ebd 0x823e0146... Aestus
13879807 0 3025 1704 +1321 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13883331 5 3100 1779 +1321 kiln 0x88a53ec4... BloXroute Regulated
13879191 13 3220 1900 +1320 solo_stakers 0x823e0146... Aestus
13878981 5 3098 1779 +1319 0x88857150... Ultra Sound
13884005 4 3080 1764 +1316 everstake 0x823e0146... Flashbots
13878695 8 3139 1825 +1314 whale_0xedc6 0x856b0004... Aestus
13878615 8 3138 1825 +1313 whale_0x8ebd 0xac23f8cc... BloXroute Regulated
13878947 1 3032 1719 +1313 p2porg 0x856b0004... Aestus
13882597 2 3047 1734 +1313 p2porg 0x88857150... Ultra Sound
13883910 1 3031 1719 +1312 figment 0x856b0004... BloXroute Max Profit
13883887 5 3090 1779 +1311 abyss_finance 0x8527d16c... Ultra Sound
13881480 1 3029 1719 +1310 kiln 0x856b0004... Agnostic Gnosis
13880510 0 3013 1704 +1309 coinbase 0x8527d16c... Ultra Sound
13878728 0 3013 1704 +1309 0x8527d16c... Ultra Sound
13878327 3 3057 1749 +1308 kiln 0xb26f9666... BloXroute Max Profit
13885177 6 3102 1794 +1308 whale_0x8ebd 0x8527d16c... Ultra Sound
13881636 0 3010 1704 +1306 kiln 0x855b00e6... Flashbots
13879526 5 3085 1779 +1306 kiln 0x88a53ec4... BloXroute Regulated
13884693 8 3130 1825 +1305 whale_0xedc6 0xac23f8cc... Flashbots
13880493 1 3023 1719 +1304 kiln 0x88a53ec4... BloXroute Max Profit
13883845 0 3007 1704 +1303 everstake 0x853b0078... BloXroute Max Profit
13882923 10 3157 1855 +1302 everstake 0x88a53ec4... BloXroute Max Profit
13880437 11 3172 1870 +1302 kiln 0xb26f9666... BloXroute Max Profit
13881599 7 3111 1810 +1301 figment 0x88857150... Ultra Sound
13879898 0 3004 1704 +1300 ether.fi 0x850b00e0... Flashbots
13883904 6 3094 1794 +1300 stakefish 0x856b0004... Ultra Sound
13883591 1 3018 1719 +1299 everstake 0x8db2a99d... BloXroute Max Profit
13882258 3 3048 1749 +1299 whale_0x8ebd 0xb26f9666... Titan Relay
13878938 5 3077 1779 +1298 p2porg 0xb26f9666... BloXroute Max Profit
13884748 0 3001 1704 +1297 whale_0x8ebd 0xb26f9666... Titan Relay
13879833 4 3059 1764 +1295 figment 0x8527d16c... Ultra Sound
13880637 0 2998 1704 +1294 whale_0x8ebd 0x852b0070... Agnostic Gnosis
13878928 2 3028 1734 +1294 stader 0x853b0078... BloXroute Max Profit
13881399 0 2997 1704 +1293 p2porg 0xb26f9666... BloXroute Max Profit
13883586 4 3057 1764 +1293 figment 0x85fb0503... BloXroute Max Profit
13880831 5 3072 1779 +1293 p2porg 0xb26f9666... BloXroute Max Profit
13884198 0 2996 1704 +1292 everstake 0xb26f9666... Aestus
13884653 6 3086 1794 +1292 whale_0x8ebd 0x8527d16c... Ultra Sound
13883898 0 2995 1704 +1291 coinbase 0xb67eaa5e... Aestus
13884315 1 3010 1719 +1291 everstake 0x88857150... Ultra Sound
13883269 5 3070 1779 +1291 p2porg 0xb26f9666... BloXroute Max Profit
13879022 0 2993 1704 +1289 kiln 0xb67eaa5e... BloXroute Regulated
13879547 1 3007 1719 +1288 kiln 0xac23f8cc... Flashbots
13878372 4 3051 1764 +1287 kiln 0xb7c5e609... BloXroute Max Profit
13880332 5 3066 1779 +1287 kiln 0xb26f9666... BloXroute Regulated
13878406 5 3065 1779 +1286 everstake 0x8527d16c... Ultra Sound
13884637 1 3004 1719 +1285 coinbase 0xb4ce6162... Ultra Sound
13883311 0 2988 1704 +1284 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13883813 5 3063 1779 +1284 p2porg 0x88857150... Ultra Sound
13880484 5 3063 1779 +1284 everstake 0x8527d16c... Ultra Sound
13884709 9 3123 1840 +1283 p2porg 0x856b0004... Aestus
13884695 0 2987 1704 +1283 whale_0x8ebd 0x853b0078... Agnostic Gnosis
13882917 5 3062 1779 +1283 p2porg 0xb26f9666... BloXroute Max Profit
13883355 17 3243 1960 +1283 everstake 0x8527d16c... Ultra Sound
13879254 0 2986 1704 +1282 kiln 0xb67eaa5e... BloXroute Max Profit
13878413 1 3001 1719 +1282 kiln 0x853b0078... Agnostic Gnosis
13882483 4 3046 1764 +1282 ether.fi 0xb26f9666... Titan Relay
13884128 3 3030 1749 +1281 blockdaemon_lido 0xb67eaa5e... Titan Relay
13880854 9 3120 1840 +1280 whale_0xdd6c 0x8527d16c... Ultra Sound
13884388 1 2999 1719 +1280 ether.fi 0x853b0078... Flashbots
13881823 1 2999 1719 +1280 gateway.fmas_lido 0x8db2a99d... Flashbots
13882994 5 3059 1779 +1280 whale_0x8ebd 0x823e0146... Flashbots
13884844 8 3103 1825 +1278 kiln 0x88a53ec4... BloXroute Regulated
13879512 0 2982 1704 +1278 kiln 0x85fb0503... BloXroute Max Profit
13884881 5 3057 1779 +1278 whale_0x8ebd 0x88857150... Ultra Sound
13880811 0 2981 1704 +1277 kiln 0x852b0070... Agnostic Gnosis
13879120 0 2981 1704 +1277 kiln 0xb26f9666... BloXroute Max Profit
13879010 3 3024 1749 +1275 kiln 0xb26f9666... BloXroute Max Profit
13878933 8 3099 1825 +1274 whale_0x8ebd 0x853b0078... Ultra Sound
13879164 12 3159 1885 +1274 p2porg 0xb26f9666... Aestus
13883018 7 3083 1810 +1273 p2porg 0x856b0004... Aestus
13879025 5 3052 1779 +1273 whale_0x7791 0xb26f9666... Titan Relay
13879035 3 3021 1749 +1272 everstake 0x8a850621... Titan Relay
13881194 3 3021 1749 +1272 ether.fi 0x853b0078... Aestus
13878220 0 2974 1704 +1270 everstake 0x88857150... Ultra Sound
13878263 0 2971 1704 +1267 kiln 0x850b00e0... BloXroute Max Profit
13884524 0 2971 1704 +1267 kiln 0x852b0070... Agnostic Gnosis
13881034 7 3076 1810 +1266 everstake 0x823e0146... Ultra Sound
13881523 3 3014 1749 +1265 everstake 0x850b00e0... BloXroute Max Profit
13882636 5 3043 1779 +1264 ether.fi 0xb26f9666... Titan Relay
13881320 10 3118 1855 +1263 whale_0x8ebd 0x88857150... Ultra Sound
13883298 5 3041 1779 +1262 kiln 0x850b00e0... BloXroute Max Profit
13881044 0 2963 1704 +1259 kiln 0xb26f9666... BloXroute Max Profit
13878702 0 2963 1704 +1259 everstake 0xa10f2964... Ultra Sound
13884988 0 2961 1704 +1257 kiln 0x8527d16c... Ultra Sound
13879489 13 3156 1900 +1256 figment 0x85fb0503... BloXroute Max Profit
13883067 9 3095 1840 +1255 swell 0x856b0004... Aestus
13882168 0 2959 1704 +1255 rocketpool Local Local
13879202 0 2959 1704 +1255 kiln 0x82c466b9... Ultra Sound
13885059 5 3034 1779 +1255 whale_0x8ebd 0xb26f9666... Titan Relay
13884729 8 3078 1825 +1253 whale_0x8ebd 0x85fb0503... BloXroute Max Profit
13880948 0 2957 1704 +1253 kiln 0x853b0078... Agnostic Gnosis
13881189 1 2972 1719 +1253 everstake 0xb4ce6162... Ultra Sound
13879691 6 3047 1794 +1253 everstake 0x8a850621... Titan Relay
13880430 2 2986 1734 +1252 everstake 0x850b00e0... BloXroute Max Profit
13884649 0 2955 1704 +1251 kiln 0x852b0070... Ultra Sound
13882729 5 3030 1779 +1251 ether.fi 0xb26f9666... Titan Relay
13878967 5 3029 1779 +1250 kiln 0x85fb0503... BloXroute Max Profit
13880156 0 2953 1704 +1249 ether.fi 0x85fb0503... BloXroute Max Profit
13882665 8 3072 1825 +1247 coinbase 0xb26f9666... BloXroute Max Profit
13882936 0 2951 1704 +1247 everstake 0xb67eaa5e... BloXroute Regulated
13882420 0 2951 1704 +1247 kiln 0x88a53ec4... BloXroute Max Profit
13880718 1 2965 1719 +1246 whale_0x8ebd 0x823e0146... BloXroute Regulated
13880519 0 2949 1704 +1245 kiln 0x856b0004... Agnostic Gnosis
13878678 0 2949 1704 +1245 whale_0x8ebd 0x88857150... Ultra Sound
13880347 1 2964 1719 +1245 whale_0x8ebd 0x856b0004... Aestus
13880524 5 3021 1779 +1242 kiln 0x8527d16c... Ultra Sound
13881677 2 2974 1734 +1240 kiln 0x853b0078... Agnostic Gnosis
13882717 0 2942 1704 +1238 kiln 0xb26f9666... BloXroute Regulated
13878432 0 2941 1704 +1237 gateway.fmas_lido 0x8527d16c... Ultra Sound
13878458 0 2940 1704 +1236 kiln 0xb26f9666... BloXroute Max Profit
13880293 3 2985 1749 +1236 everstake 0x8a850621... Titan Relay
13878187 0 2938 1704 +1234 kiln 0xb26f9666... BloXroute Regulated
13884449 4 2998 1764 +1234 coinbase 0xb26f9666... BloXroute Max Profit
13881487 13 3133 1900 +1233 kiln 0xb26f9666... BloXroute Regulated
13882414 0 2936 1704 +1232 whale_0x8ebd Local Local
13882521 2 2966 1734 +1232 0xb26f9666... Ultra Sound
13881855 1 2950 1719 +1231 whale_0x8ebd 0xb26f9666... BloXroute Regulated
13879502 3 2980 1749 +1231 whale_0x8ebd 0x88857150... Ultra Sound
13881896 6 3024 1794 +1230 kiln 0x8527d16c... Ultra Sound
13883953 5 3008 1779 +1229 kiln 0x853b0078... BloXroute Max Profit
13880634 0 2931 1704 +1227 kiln 0xb26f9666... BloXroute Max Profit
13884029 0 2931 1704 +1227 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
13883416 6 3021 1794 +1227 whale_0x8ebd Local Local
13878074 0 2930 1704 +1226 coinbase 0x88a53ec4... BloXroute Max Profit
13880783 1 2945 1719 +1226 kiln 0x853b0078... Agnostic Gnosis
13881557 5 3005 1779 +1226 whale_0x8ebd 0x8527d16c... Ultra Sound
13881964 19 3216 1991 +1225 whale_0xedc6 0x853b0078... Aestus
13882908 0 2929 1704 +1225 kiln 0x8527d16c... Ultra Sound
13882294 0 2929 1704 +1225 kiln 0xb26f9666... BloXroute Regulated
13884092 3 2974 1749 +1225 kiln 0x8527d16c... Ultra Sound
13883779 5 3004 1779 +1225 coinbase 0xb26f9666... Titan Relay
13881753 8 3049 1825 +1224 everstake 0x853b0078... Aestus
13882814 9 3063 1840 +1223 kiln 0x8db2a99d... Agnostic Gnosis
13879364 4 2986 1764 +1222 abyss_finance 0x82c466b9... Flashbots
13883784 5 3001 1779 +1222 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13883350 1 2940 1719 +1221 kiln Local Local
13881490 12 3105 1885 +1220 p2porg 0x8527d16c... Ultra Sound
13878723 5 2999 1779 +1220 kiln 0x823e0146... Aestus
13879771 0 2923 1704 +1219 kiln 0x850b00e0... BloXroute Max Profit
13884285 4 2983 1764 +1219 coinbase 0x853b0078... BloXroute Max Profit
13879588 6 3013 1794 +1219 everstake 0x8a850621... Titan Relay
13881880 13 3118 1900 +1218 kiln 0x853b0078... Ultra Sound
13878735 0 2920 1704 +1216 kiln 0xb26f9666... BloXroute Max Profit
13883206 2 2950 1734 +1216 everstake 0x8527d16c... Ultra Sound
13881824 0 2918 1704 +1214 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
13879695 13 3113 1900 +1213 p2porg Local Local
13879173 0 2916 1704 +1212 everstake 0x8a850621... Titan Relay
13884916 2 2946 1734 +1212 kiln 0x88857150... Ultra Sound
13882548 3 2961 1749 +1212 everstake 0xb67eaa5e... BloXroute Regulated
13884836 4 2976 1764 +1212 kiln 0xb26f9666... BloXroute Max Profit
13882671 2 2945 1734 +1211 everstake 0xb26f9666... Titan Relay
13878823 10 3065 1855 +1210 ether.fi 0xb26f9666... Titan Relay
13880467 1 2929 1719 +1210 kiln 0xb26f9666... BloXroute Max Profit
13878763 0 2911 1704 +1207 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
13883009 11 3077 1870 +1207 ether.fi 0xb26f9666... Titan Relay
13880678 1 2926 1719 +1207 kiln 0x853b0078... Agnostic Gnosis
13882103 13 3106 1900 +1206 whale_0x8ebd 0x8db2a99d... Ultra Sound
13882037 0 2909 1704 +1205 kiln 0xb4ce6162... Ultra Sound
13879964 0 2909 1704 +1205 bitstamp 0xb26f9666... Titan Relay
13880617 5 2984 1779 +1205 kiln 0x856b0004... BloXroute Max Profit
13880068 1 2922 1719 +1203 everstake 0x856b0004... Agnostic Gnosis
13880621 10 3057 1855 +1202 ether.fi 0x856b0004... BloXroute Max Profit
13878423 1 2921 1719 +1202 bitstamp 0x8db2a99d... Flashbots
13879441 12 3086 1885 +1201 ether.fi 0x850b00e0... BloXroute Max Profit
13879356 5 2980 1779 +1201 everstake 0xb26f9666... Titan Relay
13879054 0 2904 1704 +1200 kiln 0x99dbe3e8... Agnostic Gnosis
13885015 7 3009 1810 +1199 ether.fi 0x856b0004... Agnostic Gnosis
13881417 0 2903 1704 +1199 everstake 0x851b00b1... BloXroute Max Profit
13885051 1 2918 1719 +1199 everstake 0x850b00e0... BloXroute Max Profit
13878463 3 2947 1749 +1198 everstake 0x88a53ec4... BloXroute Max Profit
13881888 5 2977 1779 +1198 everstake 0x8527d16c... Ultra Sound
Total anomalies: 444

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