Sat, Feb 21, 2026

Propagation anomalies - 2026-02-21

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-02-21' AND slot_start_date_time < '2026-02-21'::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-02-21' AND slot_start_date_time < '2026-02-21'::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-02-21' AND slot_start_date_time < '2026-02-21'::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-02-21' AND slot_start_date_time < '2026-02-21'::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-02-21' AND slot_start_date_time < '2026-02-21'::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-02-21' AND slot_start_date_time < '2026-02-21'::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-02-21' AND slot_start_date_time < '2026-02-21'::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-02-21' AND slot_start_date_time < '2026-02-21'::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,185
MEV blocks: 6,628 (92.2%)
Local blocks: 557 (7.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 = 1691.3 + 20.54 × blob_count (R² = 0.014)
Residual σ = 617.6ms
Anomalies (>2σ slow): 435 (6.1%)
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
13737056 0 4939 1691 +3248 Local Local
13741022 0 4603 1691 +2912 coinbase Local Local
13734432 0 4508 1691 +2817 upbit Local Local
13735808 0 4373 1691 +2682 upbit Local Local
13735364 0 4082 1691 +2391 kraken Local Local
13735005 12 4296 1938 +2358 lido Local Local
13740232 0 4016 1691 +2325 everstake Local Local
13739772 0 3989 1691 +2298 coinbase Local Local
13737605 0 3976 1691 +2285 everstake Local Local
13738280 0 3892 1691 +2201 stakingfacilities_lido Local Local
13740356 3 3711 1753 +1958 coinbase 0x856b0004... Ultra Sound
13740197 0 3603 1691 +1912 0x8527d16c... Ultra Sound
13736454 3 3619 1753 +1866 0x850b00e0... BloXroute Regulated
13735722 0 3531 1691 +1840 0xb67eaa5e... BloXroute Regulated
13734688 3 3578 1753 +1825 stakefish 0x8527d16c... Ultra Sound
13736481 4 3587 1774 +1813 blockdaemon 0xb7c5beef... Titan Relay
13741120 8 3666 1856 +1810 stakefish Local Local
13734864 3 3545 1753 +1792 0x856b0004... BloXroute Max Profit
13735316 5 3585 1794 +1791 blockdaemon 0x88857150... Ultra Sound
13738904 6 3586 1815 +1771 whale_0xdc8d 0x8527d16c... Ultra Sound
13739851 1 3475 1712 +1763 0x850b00e0... BloXroute Regulated
13738001 4 3522 1774 +1748 figment 0xb26f9666... Titan Relay
13735455 2 3474 1732 +1742 ether.fi 0x8527d16c... Ultra Sound
13737015 5 3529 1794 +1735 ether.fi 0x8527d16c... Ultra Sound
13734580 5 3522 1794 +1728 0x850b00e0... BloXroute Regulated
13738304 0 3419 1691 +1728 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
13737376 3 3472 1753 +1719 whale_0xdc8d 0x8527d16c... Ultra Sound
13738336 0 3404 1691 +1713 bitstamp 0x8527d16c... Ultra Sound
13737988 1 3411 1712 +1699 blockdaemon 0x8a850621... Titan Relay
13734343 8 3554 1856 +1698 kelp 0xb26f9666... Titan Relay
13738088 3 3446 1753 +1693 blockdaemon 0xb4ce6162... Ultra Sound
13737504 0 3384 1691 +1693 stakingfacilities_lido 0x852b0070... Flashbots
13738202 11 3608 1917 +1691 blockdaemon 0x88857150... Ultra Sound
13737029 1 3389 1712 +1677 everstake 0x88857150... Ultra Sound
13734400 1 3388 1712 +1676 everstake 0x88857150... Ultra Sound
13735184 5 3470 1794 +1676 solo_stakers Local Local
13736052 0 3333 1691 +1642 blockdaemon 0x8527d16c... Ultra Sound
13740880 0 3331 1691 +1640 blockdaemon 0xb26f9666... Titan Relay
13736687 8 3494 1856 +1638 blockdaemon 0x8a850621... Titan Relay
13740206 5 3432 1794 +1638 everstake 0x853b0078... BloXroute Max Profit
13738720 5 3430 1794 +1636 gateway.fmas_lido 0x853b0078... Agnostic Gnosis
13738356 1 3338 1712 +1626 blockdaemon_lido 0xb26f9666... Titan Relay
13734672 5 3418 1794 +1624 whale_0xdc8d 0x850b00e0... BloXroute Regulated
13735840 4 3387 1774 +1613 rocketpool 0x850b00e0... BloXroute Max Profit
13739532 8 3469 1856 +1613 lido 0x8527d16c... Ultra Sound
13738443 2 3345 1732 +1613 blockdaemon 0xb4ce6162... Ultra Sound
13737910 1 3324 1712 +1612 blockdaemon 0x855b00e6... Ultra Sound
13736800 7 3447 1835 +1612 stakingfacilities_lido 0x8527d16c... Ultra Sound
13734651 1 3319 1712 +1607 revolut 0x850b00e0... BloXroute Regulated
13740634 1 3317 1712 +1605 blockdaemon 0x88a53ec4... BloXroute Regulated
13735028 4 3375 1774 +1601 blockdaemon 0x856b0004... BloXroute Max Profit
13739094 7 3433 1835 +1598 everstake 0x8527d16c... Ultra Sound
13734627 2 3317 1732 +1585 blockdaemon 0x850b00e0... BloXroute Regulated
13734932 3 3336 1753 +1583 whale_0x8ebd 0xb4ce6162... Ultra Sound
13734158 5 3376 1794 +1582 ether.fi 0xb67eaa5e... BloXroute Regulated
13740146 11 3498 1917 +1581 everstake 0x853b0078... BloXroute Max Profit
13736580 0 3272 1691 +1581 ether.fi 0xb26f9666... Titan Relay
13735683 9 3455 1876 +1579 revolut 0xb67eaa5e... BloXroute Regulated
13735234 0 3270 1691 +1579 everstake 0xb26f9666... Titan Relay
13734024 7 3411 1835 +1576 blockdaemon 0x850b00e0... BloXroute Max Profit
13734732 3 3328 1753 +1575 0x8527d16c... Ultra Sound
13738797 1 3286 1712 +1574 blockdaemon 0xb67eaa5e... BloXroute Regulated
13740439 3 3327 1753 +1574 luno 0xb26f9666... Titan Relay
13738587 2 3304 1732 +1572 blockdaemon 0xb26f9666... Titan Relay
13738484 6 3384 1815 +1569 blockdaemon 0x850b00e0... BloXroute Max Profit
13736996 3 3320 1753 +1567 0x8527d16c... Ultra Sound
13740768 6 3380 1815 +1565 bridgetower_lido 0x8527d16c... Ultra Sound
13736770 6 3380 1815 +1565 everstake 0xb26f9666... Titan Relay
13734323 8 3418 1856 +1562 blockdaemon_lido 0x88857150... Ultra Sound
13739256 9 3438 1876 +1562 mantle 0x8527d16c... Ultra Sound
13735230 1 3272 1712 +1560 luno 0xb26f9666... Titan Relay
13739352 1 3268 1712 +1556 0x88857150... Ultra Sound
13739512 15 3555 1999 +1556 stakingfacilities_lido 0xb67eaa5e... BloXroute Regulated
13736917 0 3244 1691 +1553 blockdaemon 0x850b00e0... BloXroute Regulated
13734975 6 3367 1815 +1552 ether.fi 0x8527d16c... Ultra Sound
13740084 0 3243 1691 +1552 everstake 0x852b0070... BloXroute Max Profit
13738113 1 3263 1712 +1551 everstake 0xb26f9666... Titan Relay
13738589 3 3302 1753 +1549 blockdaemon_lido 0xb26f9666... Titan Relay
13737018 3 3300 1753 +1547 blockdaemon 0x856b0004... Ultra Sound
13739360 5 3341 1794 +1547 whale_0xedc6 0x853b0078... Ultra Sound
13734557 5 3340 1794 +1546 blockdaemon_lido 0x8527d16c... Ultra Sound
13739025 2 3277 1732 +1545 blockdaemon_lido 0x853b0078... Ultra Sound
13738234 9 3420 1876 +1544 0x88857150... Ultra Sound
13740425 1 3255 1712 +1543 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13737122 1 3254 1712 +1542 blockdaemon_lido 0x88857150... Ultra Sound
13735896 0 3231 1691 +1540 everstake 0xb26f9666... Titan Relay
13736193 6 3349 1815 +1534 blockdaemon_lido 0x88a53ec4... BloXroute Regulated
13736159 2 3261 1732 +1529 blockdaemon_lido 0x8527d16c... Ultra Sound
13739491 5 3321 1794 +1527 piertwo Local Local
13737442 3 3279 1753 +1526 revolut 0x853b0078... BloXroute Regulated
13734151 0 3217 1691 +1526 whale_0xc541 0x851b00b1... Ultra Sound
13739034 3 3278 1753 +1525 everstake 0x855b00e6... BloXroute Max Profit
13739918 0 3213 1691 +1522 blockdaemon 0xb4ce6162... Ultra Sound
13734904 1 3233 1712 +1521 everstake 0xb67eaa5e... BloXroute Regulated
13741164 0 3211 1691 +1520 0x8527d16c... Ultra Sound
13736694 6 3334 1815 +1519 whale_0xdc8d 0xb26f9666... Titan Relay
13738518 5 3313 1794 +1519 0x88857150... Ultra Sound
13739357 9 3394 1876 +1518 blockdaemon 0x850b00e0... BloXroute Regulated
13737453 1 3227 1712 +1515 everstake 0x856b0004... BloXroute Max Profit
13734449 7 3349 1835 +1514 whale_0xdd6c 0x856b0004... Aestus
13736399 5 3306 1794 +1512 blockdaemon_lido 0x853b0078... Ultra Sound
13734861 6 3322 1815 +1507 blockdaemon 0x850b00e0... BloXroute Regulated
13735638 1 3219 1712 +1507 whale_0xdc8d 0xb26f9666... Titan Relay
13735540 0 3197 1691 +1506 whale_0xdc8d 0x852b0070... BloXroute Max Profit
13738966 1 3217 1712 +1505 bitstamp 0x823e0146... Flashbots
13740145 0 3195 1691 +1504 whale_0x8ebd 0xb4ce6162... Ultra Sound
13739065 6 3318 1815 +1503 blockdaemon_lido 0x8527d16c... Ultra Sound
13737628 3 3254 1753 +1501 everstake 0x88857150... Ultra Sound
13734755 3 3253 1753 +1500 0x853b0078... Ultra Sound
13736280 4 3273 1774 +1499 everstake 0xb26f9666... Titan Relay
13736569 5 3293 1794 +1499 blockdaemon 0x88857150... Ultra Sound
13740952 10 3395 1897 +1498 blockdaemon_lido 0x88857150... Ultra Sound
13739513 9 3374 1876 +1498 0x850b00e0... BloXroute Regulated
13734474 0 3187 1691 +1496 everstake 0xb26f9666... Aestus
13738915 8 3350 1856 +1494 everstake 0xb26f9666... Titan Relay
13735220 5 3283 1794 +1489 everstake 0x8527d16c... Ultra Sound
13735838 1 3196 1712 +1484 everstake 0x853b0078... BloXroute Max Profit
13740073 9 3359 1876 +1483 blockdaemon_lido 0x850b00e0... BloXroute Regulated
13739723 6 3293 1815 +1478 blockdaemon_lido 0x82c466b9... BloXroute Regulated
13740872 0 3169 1691 +1478 gateway.fmas_lido 0x852b0070... Ultra Sound
13736390 6 3292 1815 +1477 blockdaemon_lido 0x8527d16c... Ultra Sound
13738861 3 3228 1753 +1475 gateway.fmas_lido 0x855b00e6... BloXroute Max Profit
13737137 5 3268 1794 +1474 luno 0x88857150... Ultra Sound
13734353 0 3165 1691 +1474 blockdaemon_lido 0x853b0078... Ultra Sound
13736577 4 3247 1774 +1473 blockdaemon 0x8527d16c... Ultra Sound
13738238 5 3267 1794 +1473 everstake 0x856b0004... Aestus
13734519 7 3305 1835 +1470 0xb4ce6162... Ultra Sound
13737302 7 3301 1835 +1466 whale_0xdc8d 0xb26f9666... Titan Relay
13736230 6 3280 1815 +1465 whale_0xdc8d 0x8527d16c... Ultra Sound
13736073 6 3277 1815 +1462 everstake 0xb26f9666... Titan Relay
13736002 5 3256 1794 +1462 ether.fi 0x853b0078... Aestus
13738103 6 3275 1815 +1460 revolut 0x88857150... Ultra Sound
13737684 6 3275 1815 +1460 everstake 0x8527d16c... Ultra Sound
13741156 3 3209 1753 +1456 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13736479 5 3250 1794 +1456 everstake 0x8527d16c... Ultra Sound
13738312 18 3516 2061 +1455 ether.fi 0x856b0004... Ultra Sound
13739123 5 3248 1794 +1454 stakingfacilities_lido 0x850b00e0... BloXroute Max Profit
13740945 13 3412 1958 +1454 blockdaemon_lido 0x8527d16c... Ultra Sound
13734658 7 3288 1835 +1453 whale_0xdc8d 0x8527d16c... Ultra Sound
13735483 3 3204 1753 +1451 everstake 0xb67eaa5e... BloXroute Max Profit
13740316 6 3265 1815 +1450 everstake 0xb26f9666... Titan Relay
13734518 1 3162 1712 +1450 everstake 0x88a53ec4... BloXroute Regulated
13739296 3 3202 1753 +1449 everstake 0x88857150... Ultra Sound
13734174 5 3242 1794 +1448 everstake 0x8527d16c... Ultra Sound
13740648 0 3138 1691 +1447 gateway.fmas_lido 0x823e0146... BloXroute Max Profit
13738773 3 3199 1753 +1446 gateway.fmas_lido 0x856b0004... Ultra Sound
13740804 4 3219 1774 +1445 blockdaemon 0x856b0004... Ultra Sound
13736120 1 3156 1712 +1444 gateway.fmas_lido 0x8527d16c... Ultra Sound
13734955 8 3298 1856 +1442 blockdaemon_lido 0x850b00e0... BloXroute Regulated
13738772 7 3275 1835 +1440 ether.fi 0x853b0078... BloXroute Max Profit
13738198 11 3357 1917 +1440 blockdaemon_lido 0x856b0004... Ultra Sound
13739552 0 3131 1691 +1440 stader 0x852b0070... BloXroute Max Profit
13740552 0 3129 1691 +1438 gateway.fmas_lido 0x8527d16c... Ultra Sound
13737829 5 3231 1794 +1437 solo_stakers Local Local
13737745 6 3251 1815 +1436 everstake 0xb26f9666... Aestus
13738561 3 3188 1753 +1435 whale_0x8ebd 0xb26f9666... Titan Relay
13734228 9 3311 1876 +1435 0x853b0078... BloXroute Regulated
13736692 0 3122 1691 +1431 gateway.fmas_lido 0x8527d16c... Ultra Sound
13737218 0 3119 1691 +1428 whale_0x7791 0x8527d16c... Ultra Sound
13735553 2 3160 1732 +1428 gateway.fmas_lido 0x853b0078... BloXroute Max Profit
13735693 5 3220 1794 +1426 blockdaemon_lido 0x88857150... Ultra Sound
13740405 9 3301 1876 +1425 everstake 0x853b0078... Agnostic Gnosis
13734302 6 3239 1815 +1424 gateway.fmas_lido 0xb26f9666... Titan Relay
13736234 6 3239 1815 +1424 everstake 0x853b0078... Agnostic Gnosis
13734192 3 3177 1753 +1424 gateway.fmas_lido 0x88857150... Ultra Sound
13740764 3 3176 1753 +1423 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13735496 7 3255 1835 +1420 revolut 0x88857150... Ultra Sound
13737905 0 3111 1691 +1420 p2porg 0xb26f9666... Titan Relay
13740573 4 3193 1774 +1419 everstake 0xb26f9666... Titan Relay
13735064 6 3231 1815 +1416 0x8527d16c... Ultra Sound
13735238 9 3290 1876 +1414 revolut 0x8527d16c... Ultra Sound
13734363 2 3146 1732 +1414 whale_0x8ebd 0x8527d16c... Ultra Sound
13736624 4 3185 1774 +1411 gateway.fmas_lido 0x8527d16c... Ultra Sound
13736054 3 3164 1753 +1411 gateway.fmas_lido 0x88857150... Ultra Sound
13737818 8 3266 1856 +1410 everstake 0x8527d16c... Ultra Sound
13738424 9 3286 1876 +1410 everstake 0x853b0078... Aestus
13739650 0 3101 1691 +1410 everstake 0x88857150... Ultra Sound
13739534 1 3119 1712 +1407 whale_0x8ebd 0x8527d16c... Ultra Sound
13734048 5 3201 1794 +1407 bitstamp 0x853b0078... BloXroute Max Profit
13737165 9 3283 1876 +1407 everstake 0xb26f9666... Titan Relay
13737486 4 3178 1774 +1404 whale_0xdd6c 0x8527d16c... Ultra Sound
13738230 9 3280 1876 +1404 p2porg 0x850b00e0... BloXroute Regulated
13738968 0 3095 1691 +1404 ether.fi 0xb26f9666... Titan Relay
13735006 4 3174 1774 +1400 p2porg 0x88857150... Ultra Sound
13740463 6 3215 1815 +1400 everstake 0x853b0078... Aestus
13740086 11 3317 1917 +1400 blockdaemon 0x8527d16c... Ultra Sound
13739089 4 3173 1774 +1399 0x8527d16c... Ultra Sound
13736562 5 3193 1794 +1399 everstake 0x853b0078... BloXroute Max Profit
13739713 0 3090 1691 +1399 kelp 0x853b0078... Agnostic Gnosis
13737224 0 3088 1691 +1397 whale_0x8ebd 0xb26f9666... Titan Relay
13737857 2 3129 1732 +1397 everstake 0xb4ce6162... Ultra Sound
13734841 2 3129 1732 +1397 whale_0x8ebd 0xb26f9666... Titan Relay
13737697 1 3108 1712 +1396 ether.fi 0xb26f9666... EthGas
13736011 6 3210 1815 +1395 everstake 0xb26f9666... Titan Relay
13735403 6 3209 1815 +1394 gateway.fmas_lido 0x853b0078... Ultra Sound
13740755 5 3185 1794 +1391 gateway.fmas_lido 0xac23f8cc... Flashbots
13740479 0 3082 1691 +1391 everstake 0xb7c5beef... Ultra Sound
13735384 4 3163 1774 +1389 0x853b0078... Agnostic Gnosis
13738314 4 3162 1774 +1388 p2porg 0x856b0004... BloXroute Max Profit
13741018 1 3100 1712 +1388 ether.fi 0x88857150... Ultra Sound
13735275 3 3139 1753 +1386 whale_0x23be 0xb26f9666... BloXroute Max Profit
13739837 0 3076 1691 +1385 kelp 0x852b0070... Flashbots
13736662 5 3178 1794 +1384 everstake 0xb26f9666... Titan Relay
13738945 0 3074 1691 +1383 abyss_finance 0x8527d16c... Ultra Sound
13740078 6 3197 1815 +1382 p2porg 0x850b00e0... BloXroute Regulated
13740442 1 3094 1712 +1382 whale_0x8ebd 0x8527d16c... Ultra Sound
13740895 0 3073 1691 +1382 kiln 0x805e28e6... BloXroute Max Profit
13735378 11 3294 1917 +1377 blockdaemon_lido 0xb26f9666... Titan Relay
13739223 8 3232 1856 +1376 everstake 0x853b0078... BloXroute Max Profit
13734052 3 3127 1753 +1374 0x856b0004... BloXroute Max Profit
13740150 0 3065 1691 +1374 whale_0x8ebd 0xb26f9666... Titan Relay
13739834 0 3063 1691 +1372 mantle 0x8db2a99d... Flashbots
13735016 6 3184 1815 +1369 blockdaemon_lido 0x8527d16c... Ultra Sound
13734792 0 3060 1691 +1369 p2porg 0x856b0004... Aestus
13740962 0 3060 1691 +1369 mantle 0xb26f9666... Ultra Sound
13740518 13 3325 1958 +1367 revolut 0x88857150... Ultra Sound
13737744 11 3283 1917 +1366 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13735860 0 3057 1691 +1366 whale_0x8ebd 0x852b0070... BloXroute Max Profit
13737359 0 3057 1691 +1366 0xb67eaa5e... BloXroute Max Profit
13734529 0 3057 1691 +1366 ether.fi 0xb26f9666... Titan Relay
13739763 7 3200 1835 +1365 kelp 0x8db2a99d... Flashbots
13734806 0 3056 1691 +1365 0x8db2a99d... Flashbots
13739134 0 3056 1691 +1365 whale_0x8ebd 0x8527d16c... Ultra Sound
13739589 1 3075 1712 +1363 kelp 0xb67eaa5e... BloXroute Max Profit
13739381 5 3155 1794 +1361 bitstamp 0x823e0146... BloXroute Max Profit
13735211 5 3155 1794 +1361 ether.fi 0x8527d16c... Ultra Sound
13736103 9 3237 1876 +1361 ether.fi 0xa1467c4a... Flashbots
13739116 0 3052 1691 +1361 0x8527d16c... Ultra Sound
13740738 5 3153 1794 +1359 kiln 0x853b0078... BloXroute Max Profit
13737855 0 3047 1691 +1356 figment 0x852b0070... BloXroute Max Profit
13737542 4 3129 1774 +1355 p2porg 0x8527d16c... Ultra Sound
13739202 0 3046 1691 +1355 p2porg 0x8527d16c... Ultra Sound
13734570 8 3210 1856 +1354 everstake 0xb26f9666... Titan Relay
13741109 1 3065 1712 +1353 whale_0x7791 0x8db2a99d... Flashbots
13740510 6 3167 1815 +1352 mantle 0x8527d16c... Ultra Sound
13737474 12 3290 1938 +1352 blockdaemon 0x856b0004... Ultra Sound
13739285 5 3146 1794 +1352 kiln 0x856b0004... BloXroute Max Profit
13738752 5 3146 1794 +1352 nethermind_lido 0x856b0004... Aestus
13739808 6 3166 1815 +1351 kelp 0xb26f9666... Titan Relay
13735132 0 3041 1691 +1350 kelp 0xb26f9666... Titan Relay
13738851 13 3308 1958 +1350 blockdaemon_lido 0x8527d16c... Ultra Sound
13734997 0 3040 1691 +1349 whale_0x8ebd 0xb4ce6162... Ultra Sound
13738092 6 3163 1815 +1348 gateway.fmas_lido 0x8527d16c... Ultra Sound
13739230 7 3182 1835 +1347 kelp 0x8527d16c... Ultra Sound
13738350 3 3099 1753 +1346 ether.fi 0x8527d16c... Ultra Sound
13734765 1 3057 1712 +1345 0x8527d16c... Ultra Sound
13736084 1 3057 1712 +1345 0x853b0078... Agnostic Gnosis
13735506 0 3036 1691 +1345 0xb26f9666... BloXroute Regulated
13735130 8 3199 1856 +1343 gateway.fmas_lido 0x856b0004... Aestus
13737177 2 3075 1732 +1343 p2porg 0x8527d16c... Ultra Sound
13741172 0 3033 1691 +1342 kelp 0x852b0070... Agnostic Gnosis
13735101 12 3279 1938 +1341 kiln 0x88a53ec4... BloXroute Regulated
13739395 3 3094 1753 +1341 p2porg 0xb67eaa5e... BloXroute Max Profit
13734159 5 3135 1794 +1341 ether.fi 0xb67eaa5e... EthGas
13738705 6 3155 1815 +1340 whale_0x7791 0x8527d16c... Ultra Sound
13736365 0 3031 1691 +1340 ether.fi 0x88857150... Ultra Sound
13736571 2 3072 1732 +1340 kelp 0x8527d16c... Ultra Sound
13735167 4 3113 1774 +1339 0x88857150... Ultra Sound
13737334 5 3133 1794 +1339 whale_0x8ebd 0x8db2a99d... Flashbots
13735723 0 3030 1691 +1339 p2porg 0x852b0070... BloXroute Max Profit
13737092 1 3050 1712 +1338 ether.fi 0x823e0146... Flashbots
13739349 3 3091 1753 +1338 ether.fi 0x8527d16c... Ultra Sound
13738578 0 3028 1691 +1337 kiln 0x851b00b1... Flashbots
13738264 1 3047 1712 +1335 p2porg 0x8527d16c... Ultra Sound
13737242 5 3128 1794 +1334 solo_stakers 0x850b00e0... BloXroute Max Profit
13741021 0 3024 1691 +1333 0x853b0078... Agnostic Gnosis
13739734 5 3126 1794 +1332 whale_0x8ebd 0xb26f9666... Titan Relay
13737085 0 3023 1691 +1332 bitstamp 0x853b0078... Aestus
13739839 5 3125 1794 +1331 0x856b0004... Agnostic Gnosis
13736372 6 3145 1815 +1330 everstake 0x856b0004... Agnostic Gnosis
13740339 2 3062 1732 +1330 0x853b0078... BloXroute Max Profit
13737337 2 3062 1732 +1330 0x853b0078... Agnostic Gnosis
13735141 1 3041 1712 +1329 p2porg 0xac23f8cc... Flashbots
13735019 20 3431 2102 +1329 revolut 0x88857150... Ultra Sound
13734816 0 3020 1691 +1329 ether.fi 0xb7c5beef... BloXroute Max Profit
13735544 1 3040 1712 +1328 p2porg 0xa230e2cf... BloXroute Max Profit
13735602 0 3019 1691 +1328 kelp 0x852b0070... Agnostic Gnosis
13734613 7 3161 1835 +1326 kelp 0x8527d16c... Ultra Sound
13740989 1 3037 1712 +1325 0x8527d16c... Ultra Sound
13734628 3 3077 1753 +1324 0x8527d16c... Ultra Sound
13736270 0 3015 1691 +1324 0xb26f9666... Titan Relay
13735103 1 3034 1712 +1322 p2porg 0x8527d16c... Ultra Sound
13735474 0 3013 1691 +1322 whale_0x8ebd 0x856b0004... Ultra Sound
13738185 1 3033 1712 +1321 whale_0x8ebd 0x8527d16c... Ultra Sound
13738660 5 3115 1794 +1321 p2porg 0x856b0004... Aestus
13740585 9 3197 1876 +1321 kiln 0xb67eaa5e... BloXroute Regulated
13735146 1 3032 1712 +1320 p2porg 0x856b0004... Aestus
13739324 0 3011 1691 +1320 kiln 0xb26f9666... Titan Relay
13735517 8 3175 1856 +1319 gateway.fmas_lido 0x853b0078... BloXroute Max Profit
13737996 0 3010 1691 +1319 p2porg 0xac23f8cc... Flashbots
13737483 0 3010 1691 +1319 kiln 0xb26f9666... Titan Relay
13740726 0 3010 1691 +1319 whale_0x8ebd 0x853b0078... BloXroute Max Profit
13740175 8 3174 1856 +1318 gateway.fmas_lido 0x8527d16c... Ultra Sound
13737806 8 3174 1856 +1318 everstake 0xb26f9666... Titan Relay
13735021 3 3071 1753 +1318 0xb26f9666... BloXroute Regulated
13736716 4 3091 1774 +1317 whale_0x8ebd 0x853b0078... Ultra Sound
13737930 5 3111 1794 +1317 0x8527d16c... Ultra Sound
13735531 0 3008 1691 +1317 p2porg 0x852b0070... Agnostic Gnosis
13734216 0 3008 1691 +1317 ether.fi 0x852b0070... BloXroute Max Profit
13735415 5 3110 1794 +1316 0xb26f9666... Titan Relay
13739375 5 3110 1794 +1316 p2porg 0x856b0004... Agnostic Gnosis
13734888 0 3006 1691 +1315 kiln 0xb67eaa5e... BloXroute Regulated
13734927 7 3149 1835 +1314 gateway.fmas_lido 0x8527d16c... Ultra Sound
13736771 4 3087 1774 +1313 whale_0x8ebd 0xb26f9666... Titan Relay
13739498 5 3107 1794 +1313 whale_0x4685 0x8527d16c... Ultra Sound
13734454 2 3045 1732 +1313 p2porg 0x853b0078... Agnostic Gnosis
13738906 8 3168 1856 +1312 ether.fi 0x88857150... EthGas
13734198 1 3024 1712 +1312 whale_0x8ebd 0xb26f9666... Titan Relay
13738919 5 3106 1794 +1312 p2porg 0x8527d16c... Ultra Sound
13734751 9 3188 1876 +1312 stader 0x8527d16c... Ultra Sound
13737183 0 3002 1691 +1311 stakingfacilities_lido 0x852b0070... Agnostic Gnosis
13734939 14 3289 1979 +1310 0x850b00e0... BloXroute Regulated
13739833 7 3145 1835 +1310 ether.fi 0x853b0078... Aestus
13740321 2 3042 1732 +1310 whale_0x8ebd 0x856b0004... Ultra Sound
13737356 1 3021 1712 +1309 p2porg 0x8527d16c... Ultra Sound
13738595 1 3021 1712 +1309 ether.fi 0x853b0078... BloXroute Max Profit
13740854 1 3021 1712 +1309 ether.fi 0x853b0078... BloXroute Max Profit
13740905 6 3123 1815 +1308 0x8527d16c... Ultra Sound
13740887 5 3102 1794 +1308 whale_0xdd6c 0x8527d16c... Ultra Sound
13737022 0 2999 1691 +1308 p2porg 0x852b0070... Agnostic Gnosis
13740748 1 3019 1712 +1307 whale_0x8ebd 0x8527d16c... Ultra Sound
13737322 3 3058 1753 +1305 p2porg 0x8527d16c... Ultra Sound
13735094 6 3119 1815 +1304 ether.fi 0x88857150... Ultra Sound
13735628 0 2995 1691 +1304 kiln 0xb26f9666... Aestus
13734133 0 2994 1691 +1303 whale_0x8ebd 0x8527d16c... Ultra Sound
13740360 0 2994 1691 +1303 kiln 0x852b0070... Agnostic Gnosis
13737691 4 3076 1774 +1302 whale_0x8ebd 0x8527d16c... Ultra Sound
13741165 5 3096 1794 +1302 kelp 0x8527d16c... Ultra Sound
13740046 0 2993 1691 +1302 kiln 0x856b0004... BloXroute Max Profit
13738273 1 3012 1712 +1300 p2porg 0xb26f9666... BloXroute Max Profit
13738194 3 3053 1753 +1300 p2porg 0x8527d16c... Ultra Sound
13738802 0 2990 1691 +1299 kiln 0xb67eaa5e... BloXroute Regulated
13738610 5 3091 1794 +1297 0x857b0038... Ultra Sound
13739790 3 3048 1753 +1295 kiln 0x88a53ec4... BloXroute Regulated
13734015 0 2985 1691 +1294 everstake 0x852b0070... BloXroute Max Profit
13737509 13 3252 1958 +1294 kelp 0x8527d16c... Ultra Sound
13735847 2 3026 1732 +1294 kiln 0x850b00e0... BloXroute Max Profit
13735323 8 3149 1856 +1293 gateway.fmas_lido 0x8527d16c... Ultra Sound
13734094 10 3189 1897 +1292 bitstamp 0x8527d16c... Ultra Sound
13734546 5 3085 1794 +1291 ether.fi 0x88857150... Ultra Sound
13739641 9 3167 1876 +1291 whale_0x8ebd 0x88857150... Ultra Sound
13734340 6 3105 1815 +1290 p2porg 0xb26f9666... BloXroute Regulated
13740821 6 3105 1815 +1290 kiln 0x823e0146... BloXroute Max Profit
13734514 10 3187 1897 +1290 bitstamp 0x8527d16c... Ultra Sound
13740845 5 3083 1794 +1289 kiln 0x855b00e6... BloXroute Max Profit
13739942 5 3083 1794 +1289 p2porg 0x8527d16c... Ultra Sound
13739260 0 2979 1691 +1288 everstake 0xa0366397... Ultra Sound
13736918 5 3081 1794 +1287 whale_0xedc6 0x856b0004... Aestus
13739610 2 3019 1732 +1287 0xb26f9666... Aestus
13736852 3 3037 1753 +1284 kiln 0xb67eaa5e... BloXroute Max Profit
13739293 10 3179 1897 +1282 kelp 0x8527d16c... Ultra Sound
13736308 0 2972 1691 +1281 kiln 0x88a53ec4... BloXroute Max Profit
13736029 0 2972 1691 +1281 whale_0x8ebd 0x88857150... Ultra Sound
13737010 2 3013 1732 +1281 kiln 0x8527d16c... Ultra Sound
13737258 6 3095 1815 +1280 kiln 0x850b00e0... Flashbots
13739595 1 2991 1712 +1279 kiln 0x8527d16c... Ultra Sound
13736611 1 2991 1712 +1279 kiln 0xb26f9666... Titan Relay
13740180 0 2970 1691 +1279 kiln 0x88a53ec4... BloXroute Regulated
13738854 5 3072 1794 +1278 ether.fi 0xb67eaa5e... EthGas
13739933 0 2969 1691 +1278 kiln 0x88a53ec4... BloXroute Max Profit
13736312 0 2968 1691 +1277 kiln 0xb4ce6162... Ultra Sound
13735959 6 3091 1815 +1276 p2porg 0x88a53ec4... BloXroute Max Profit
13734829 5 3070 1794 +1276 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13737999 5 3069 1794 +1275 whale_0x8ebd 0x88857150... Ultra Sound
13741198 0 2966 1691 +1275 ether.fi 0x856b0004... Agnostic Gnosis
13737971 0 2966 1691 +1275 solo_stakers 0x88a53ec4... BloXroute Max Profit
13735992 10 3170 1897 +1273 ether.fi 0xb4ce6162... Ultra Sound
13737447 6 3087 1815 +1272 whale_0x8ebd 0x853b0078... Ultra Sound
13738758 6 3086 1815 +1271 whale_0x8ebd 0xb26f9666... Titan Relay
13734327 3 3024 1753 +1271 0x8a850621... Titan Relay
13736110 3 3024 1753 +1271 p2porg 0xb26f9666... BloXroute Regulated
13735429 2 3003 1732 +1271 kelp 0x856b0004... Agnostic Gnosis
13736457 2 3003 1732 +1271 kiln 0x8527d16c... Ultra Sound
13736098 0 2961 1691 +1270 everstake 0xa1467c4a... Flashbots
13735881 0 2961 1691 +1270 kiln 0x88a53ec4... BloXroute Max Profit
13734837 4 3043 1774 +1269 kiln 0x8527d16c... Ultra Sound
13738918 3 3021 1753 +1268 kiln 0x8527d16c... Ultra Sound
13737023 0 2959 1691 +1268 kiln 0x856b0004... Agnostic Gnosis
13737615 2 3000 1732 +1268 0x853b0078... BloXroute Max Profit
13739073 0 2958 1691 +1267 p2porg 0xba003e46... Flashbots
13737263 5 3059 1794 +1265 p2porg 0x853b0078... Agnostic Gnosis
13740923 0 2956 1691 +1265 whale_0x8ebd 0x852b0070... Ultra Sound
13737207 6 3076 1815 +1261 kiln 0xb4ce6162... Ultra Sound
13737735 9 3136 1876 +1260 p2porg 0xb26f9666... Titan Relay
13737440 7 3094 1835 +1259 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
13738453 6 3073 1815 +1258 0x856b0004... Aestus
13736859 8 3114 1856 +1258 kraken 0xb26f9666... Titan Relay
13740097 0 2949 1691 +1258 whale_0x8ebd 0x853b0078... Ultra Sound
13735666 2 2990 1732 +1258 kiln 0x8527d16c... Ultra Sound
13737585 7 3092 1835 +1257 p2porg 0x856b0004... Aestus
13739905 0 2948 1691 +1257 bitstamp 0x88857150... Ultra Sound
13735906 4 3030 1774 +1256 whale_0x8ebd 0x850b00e0... Flashbots
13734172 4 3030 1774 +1256 blockdaemon 0x88857150... Ultra Sound
13739157 9 3132 1876 +1256 kiln 0x850b00e0... BloXroute Max Profit
13736882 11 3173 1917 +1256 ether.fi 0x88857150... EthGas
13735112 1 2967 1712 +1255 kiln 0x856b0004... Agnostic Gnosis
13735685 0 2945 1691 +1254 0xb4ce6162... Ultra Sound
13737681 8 3109 1856 +1253 0xb26f9666... BloXroute Max Profit
13738577 0 2944 1691 +1253 everstake 0x852b0070... Agnostic Gnosis
13737314 0 2944 1691 +1253 everstake 0x852b0070... Aestus
13740969 4 3026 1774 +1252 everstake 0x823e0146... Flashbots
13738102 2 2984 1732 +1252 kiln 0x88857150... Ultra Sound
13736012 4 3025 1774 +1251 whale_0x8ebd 0xb26f9666... Titan Relay
13734573 6 3065 1815 +1250 p2porg 0x823e0146... Flashbots
13741178 9 3126 1876 +1250 kiln 0x88a53ec4... BloXroute Max Profit
13734439 0 2941 1691 +1250 kiln 0x853b0078... BloXroute Max Profit
13736380 3 3001 1753 +1248 whale_0x8ebd 0x853b0078... Ultra Sound
13736260 0 2939 1691 +1248 ether.fi 0x852b0070... BloXroute Max Profit
13738408 3 3000 1753 +1247 kiln 0x853b0078... Agnostic Gnosis
13739189 7 3082 1835 +1247 0x8527d16c... Ultra Sound
13735637 8 3102 1856 +1246 figment 0x853b0078... Aestus
13736705 5 3040 1794 +1246 0x853b0078... BloXroute Max Profit
13736674 13 3204 1958 +1246 whale_0x8ebd 0xb26f9666... BloXroute Regulated
13739530 4 3019 1774 +1245 ether.fi 0xb26f9666... Titan Relay
13734473 2 2977 1732 +1245 kiln 0x856b0004... Agnostic Gnosis
13737482 2 2977 1732 +1245 kiln 0x823e0146... BloXroute Max Profit
13734105 7 3078 1835 +1243 origin_protocol 0xb26f9666... Titan Relay
13738850 0 2934 1691 +1243 solo_stakers 0x853b0078... Agnostic Gnosis
13737685 6 3057 1815 +1242 0x860d4173... BloXroute Max Profit
13736489 8 3098 1856 +1242 whale_0xedc6 0xb26f9666... BloXroute Regulated
13739067 1 2954 1712 +1242 everstake 0x853b0078... BloXroute Max Profit
13737596 0 2933 1691 +1242 stakingfacilities_lido 0x853b0078... Agnostic Gnosis
13735569 6 3056 1815 +1241 figment 0x88857150... Ultra Sound
13739417 1 2953 1712 +1241 kiln 0x88857150... Ultra Sound
13734070 6 3055 1815 +1240 p2porg 0xb26f9666... BloXroute Max Profit
13736488 0 2930 1691 +1239 kiln 0x8527d16c... Ultra Sound
13739557 6 3053 1815 +1238 0x853b0078... Aestus
13738010 3 2991 1753 +1238 everstake 0xb26f9666... Titan Relay
13740205 4 3011 1774 +1237 bitstamp 0x8527d16c... Ultra Sound
13736125 3 2990 1753 +1237 kiln 0x88857150... Ultra Sound
13739451 0 2928 1691 +1237 kiln 0x852b0070... Aestus
13735750 4 3010 1774 +1236 kiln 0x850b00e0... BloXroute Max Profit
13735331 5 3030 1794 +1236 p2porg 0xb26f9666... Aestus
13737235 0 2927 1691 +1236 kiln 0x8527d16c... Ultra Sound
13735778 0 2927 1691 +1236 kiln 0xb4ce6162... Ultra Sound
Total anomalies: 435

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