Sat, Feb 14, 2026

Propagation anomalies - 2026-02-14

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

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

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

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

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

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

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

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

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

-- Column arrival timing: first arrival per column, then min/max of those
column_gossip AS (
    SELECT
        slot,
        min(first_seen) AS first_column_first_seen,
        max(first_seen) AS last_column_first_seen
    FROM (
        SELECT
            slot,
            column_index,
            min(event_date_time) AS first_seen
        FROM libp2p_gossipsub_data_column_sidecar
        WHERE meta_network_name = 'mainnet'
          AND slot_start_date_time >= '2026-02-14' AND slot_start_date_time < '2026-02-14'::date + INTERVAL 1 DAY
          AND event_date_time > '1970-01-01 00:00:01'
        GROUP BY slot, column_index
    )
    GROUP BY slot
)

SELECT
    s.slot AS slot,
    s.slot_start_date_time AS slot_start_date_time,
    pe.entity AS proposer_entity,

    -- Blob count
    coalesce(bc.blob_count, 0) AS blob_count,

    -- MEV bid timing (absolute and relative to slot start)
    fromUnixTimestamp64Milli(mb.first_bid_timestamp_ms) AS first_bid_at,
    mb.first_bid_timestamp_ms - toInt64(toUnixTimestamp(mb.slot_start_date_time)) * 1000 AS first_bid_ms,
    fromUnixTimestamp64Milli(mb.last_bid_timestamp_ms) AS last_bid_at,
    mb.last_bid_timestamp_ms - toInt64(toUnixTimestamp(mb.slot_start_date_time)) * 1000 AS last_bid_ms,

    -- Winning bid timing (from bid_trace, may be NULL if block hash not in bid_trace)
    if(wb.slot != 0, fromUnixTimestamp64Milli(wb.winning_bid_timestamp_ms), NULL) AS winning_bid_at,
    if(wb.slot != 0, wb.winning_bid_timestamp_ms - toInt64(toUnixTimestamp(s.slot_start_date_time)) * 1000, NULL) AS winning_bid_ms,

    -- MEV payload info (from proposer_payload_delivered, always present for MEV blocks)
    if(mp.is_mev = 1, mp.winning_bid_value, NULL) AS winning_bid_value,
    if(mp.is_mev = 1, mp.relay_names, []) AS winning_relays,
    if(mp.is_mev = 1, mp.winning_builder, NULL) AS winning_builder,

    -- Block gossip timing with spread
    bg.block_first_seen,
    dateDiff('millisecond', s.slot_start_date_time, bg.block_first_seen) AS block_first_seen_ms,
    bg.block_last_seen,
    dateDiff('millisecond', s.slot_start_date_time, bg.block_last_seen) AS block_last_seen_ms,
    dateDiff('millisecond', bg.block_first_seen, bg.block_last_seen) AS block_spread_ms,

    -- Column arrival timing (NULL when no blobs)
    if(coalesce(bc.blob_count, 0) = 0, NULL, cg.first_column_first_seen) AS first_column_first_seen,
    if(coalesce(bc.blob_count, 0) = 0, NULL, dateDiff('millisecond', s.slot_start_date_time, cg.first_column_first_seen)) AS first_column_first_seen_ms,
    if(coalesce(bc.blob_count, 0) = 0, NULL, cg.last_column_first_seen) AS last_column_first_seen,
    if(coalesce(bc.blob_count, 0) = 0, NULL, dateDiff('millisecond', s.slot_start_date_time, cg.last_column_first_seen)) AS last_column_first_seen_ms,
    if(coalesce(bc.blob_count, 0) = 0, NULL, dateDiff('millisecond', cg.first_column_first_seen, cg.last_column_first_seen)) AS column_spread_ms

FROM slots s
GLOBAL LEFT JOIN proposer_entity pe ON s.proposer_validator_index = pe.index
GLOBAL LEFT JOIN blob_count bc ON s.slot = bc.slot
GLOBAL LEFT JOIN mev_bids mb ON s.slot = mb.slot
GLOBAL LEFT JOIN mev_payload mp ON s.slot = mp.slot
GLOBAL LEFT JOIN winning_bid wb ON s.slot = wb.slot
GLOBAL LEFT JOIN block_gossip bg ON s.slot = bg.slot
GLOBAL LEFT JOIN column_gossip cg ON s.slot = cg.slot

ORDER BY s.slot DESC
Show code
df = load_parquet("block_production_timeline", target_date)

# Filter to valid blocks (exclude missed slots)
df = df[df["block_first_seen_ms"].notna()]
df = df[(df["block_first_seen_ms"] >= 0) & (df["block_first_seen_ms"] < 60000)]

# Flag MEV vs local blocks
df["has_mev"] = df["winning_bid_value"].notna()
df["block_type"] = df["has_mev"].map({True: "MEV", False: "Local"})

# Get max blob count for charts
max_blobs = df["blob_count"].max()

print(f"Total valid blocks: {len(df):,}")
print(f"MEV blocks: {df['has_mev'].sum():,} ({df['has_mev'].mean()*100:.1f}%)")
print(f"Local blocks: {(~df['has_mev']).sum():,} ({(~df['has_mev']).mean()*100:.1f}%)")
Total valid blocks: 7,181
MEV blocks: 6,673 (92.9%)
Local blocks: 508 (7.1%)

Anomaly detection method

The method:

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

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

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

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

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

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

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

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

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

print(f"Regression: block_ms = {intercept:.1f} + {slope:.2f} × blob_count (R² = {r_value**2:.3f})")
print(f"Residual σ = {residual_std:.1f}ms")
print(f"Anomalies (>2σ slow): {n_anomalies:,} ({pct_anomalies:.1f}%)")
Regression: block_ms = 1718.0 + 15.10 × blob_count (R² = 0.008)
Residual σ = 640.5ms
Anomalies (>2σ slow): 393 (5.5%)
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
13687550 3 9178 1763 +7415 solo_stakers Local Local
13683632 0 7444 1718 +5726 rocketpool Local Local
13684672 0 7422 1718 +5704 solo_stakers Local Local
13685829 5 6749 1794 +4955 solo_stakers Local Local
13688496 0 6236 1718 +4518 whale_0x3212 Local Local
13686336 0 5744 1718 +4026 abyss_finance Local Local
13687232 8 4193 1839 +2354 whale_0xd5e9 Local Local
13688096 0 4009 1718 +2291 upbit Local Local
13690574 0 3982 1718 +2264 lido Local Local
13685112 0 3707 1718 +1989 solo_stakers Local Local
13684201 0 3608 1718 +1890 everstake 0xb26f9666... Titan Relay
13687681 9 3740 1854 +1886 0x850b00e0... BloXroute Regulated
13689589 1 3618 1733 +1885 0x850b00e0... BloXroute Regulated
13687712 5 3669 1794 +1875 blockdaemon_lido 0x88857150... Ultra Sound
13684959 7 3681 1824 +1857 everstake 0x853b0078... BloXroute Max Profit
13687291 6 3665 1809 +1856 0xb26f9666... Titan Relay
13689862 8 3656 1839 +1817 everstake 0x8527d16c... Ultra Sound
13688218 0 3535 1718 +1817 0x99dbe3e8... Ultra Sound
13689650 7 3638 1824 +1814 revolut 0xb26f9666... Titan Relay
13689640 0 3525 1718 +1807 0x805e28e6... Titan Relay
13686091 5 3598 1794 +1804 blockdaemon 0xb26f9666... Titan Relay
13687475 5 3598 1794 +1804 blockdaemon 0xb26f9666... Titan Relay
13684989 3 3550 1763 +1787 nethermind_lido 0xb26f9666... Titan Relay
13686486 5 3578 1794 +1784 figment 0x853b0078... Ultra Sound
13683955 6 3592 1809 +1783 revolut 0x8527d16c... Ultra Sound
13690289 8 3622 1839 +1783 everstake 0x8527d16c... Ultra Sound
13688400 11 3667 1884 +1783 0x857b0038... Ultra Sound
13683950 5 3567 1794 +1773 blockdaemon 0x8527d16c... Ultra Sound
13686579 10 3642 1869 +1773 0x8527d16c... Ultra Sound
13689469 13 3684 1914 +1770 everstake 0xb67eaa5e... BloXroute Regulated
13684384 0 3487 1718 +1769 nethermind_lido 0xb26f9666... Titan Relay
13690086 6 3574 1809 +1765 revolut 0x8527d16c... Ultra Sound
13690056 5 3557 1794 +1763 everstake 0x8527d16c... Ultra Sound
13688125 0 3478 1718 +1760 lido 0xb26f9666... Aestus
13686481 1 3482 1733 +1749 0xb4ce6162... Ultra Sound
13689104 11 3628 1884 +1744 kraken 0xb26f9666... EthGas
13684388 8 3580 1839 +1741 0x88857150... Ultra Sound
13688339 0 3459 1718 +1741 everstake 0x8527d16c... Ultra Sound
13689641 9 3593 1854 +1739 everstake 0xb26f9666... Titan Relay
13686370 6 3546 1809 +1737 everstake 0xb26f9666... Titan Relay
13687238 5 3525 1794 +1731 revolut 0xb67eaa5e... BloXroute Regulated
13687426 0 3442 1718 +1724 everstake 0x87cc2536... Ultra Sound
13687922 11 3607 1884 +1723 0x88857150... Ultra Sound
13686879 1 3451 1733 +1718 nethermind_lido 0xb26f9666... Titan Relay
13688583 10 3581 1869 +1712 bitstamp 0xb67eaa5e... BloXroute Regulated
13688116 0 3430 1718 +1712 nethermind_lido 0xb26f9666... Titan Relay
13686119 3 3475 1763 +1712 blockdaemon 0x8a850621... Titan Relay
13684420 7 3535 1824 +1711 blockdaemon 0x850b00e0... BloXroute Regulated
13686692 5 3504 1794 +1710 0x8a850621... Titan Relay
13684209 10 3576 1869 +1707 revolut 0xb26f9666... Titan Relay
13683861 12 3605 1899 +1706 0xb4ce6162... Ultra Sound
13689874 5 3499 1794 +1705 everstake 0x856b0004... Ultra Sound
13689263 5 3498 1794 +1704 everstake 0x8527d16c... Ultra Sound
13690003 0 3418 1718 +1700 everstake 0x88a53ec4... BloXroute Regulated
13687402 1 3419 1733 +1686 everstake 0x856b0004... Ultra Sound
13683953 3 3448 1763 +1685 blockdaemon 0x8527d16c... Ultra Sound
13685325 8 3523 1839 +1684 solo_stakers 0x856b0004... Aestus
13683871 0 3399 1718 +1681 everstake 0x853b0078... Aestus
13689328 5 3473 1794 +1679 everstake 0x8527d16c... Ultra Sound
13689134 6 3477 1809 +1668 everstake 0xb26f9666... Titan Relay
13688928 6 3475 1809 +1666 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
13689876 1 3396 1733 +1663 blockdaemon 0x8a850621... Titan Relay
13683751 2 3403 1748 +1655 ether.fi 0x8527d16c... Ultra Sound
13688779 0 3370 1718 +1652 luno 0x856b0004... Ultra Sound
13689768 1 3383 1733 +1650 0x853b0078... Ultra Sound
13686688 1 3379 1733 +1646 stakingfacilities_lido 0x88857150... Ultra Sound
13687536 0 3360 1718 +1642 everstake 0x852b0070... Agnostic Gnosis
13690048 0 3358 1718 +1640 stakingfacilities_lido 0x853b0078... BloXroute Max Profit
13686422 6 3444 1809 +1635 Local Local
13686331 0 3353 1718 +1635 everstake 0x855b00e6... BloXroute Max Profit
13683740 6 3443 1809 +1634 0x8a850621... Titan Relay
13687172 0 3350 1718 +1632 blockdaemon_lido 0x850b00e0... BloXroute Regulated
13685106 3 3394 1763 +1631 blockdaemon 0x857b0038... Ultra Sound
13688960 5 3420 1794 +1626 bridgetower_lido 0x8527d16c... Ultra Sound
13689831 4 3400 1778 +1622 everstake 0xb26f9666... Titan Relay
13683599 6 3430 1809 +1621 0x88a53ec4... BloXroute Max Profit
13685442 5 3412 1794 +1618 everstake 0x8527d16c... Ultra Sound
13683750 14 3546 1929 +1617 everstake 0x853b0078... Agnostic Gnosis
13684585 0 3334 1718 +1616 everstake 0xb26f9666... Aestus
13687469 8 3447 1839 +1608 everstake 0x850b00e0... BloXroute Max Profit
13689552 12 3507 1899 +1608 everstake 0x8527d16c... Ultra Sound
13688497 8 3445 1839 +1606 ether.fi Local Local
13687419 12 3505 1899 +1606 nethermind_lido 0x850b00e0... Flashbots
13688484 0 3321 1718 +1603 blockdaemon_lido 0x8527d16c... Ultra Sound
13689600 0 3320 1718 +1602 0xb26f9666... BloXroute Max Profit
13683876 0 3317 1718 +1599 everstake 0x88a53ec4... BloXroute Regulated
13688832 6 3403 1809 +1594 gateway.fmas_lido 0x856b0004... Agnostic Gnosis
13690583 0 3311 1718 +1593 everstake 0xa230e2cf... BloXroute Max Profit
13688995 5 3386 1794 +1592 blockdaemon 0x8a850621... Titan Relay
13687367 13 3504 1914 +1590 everstake 0x8527d16c... Ultra Sound
13684856 4 3365 1778 +1587 everstake 0xb26f9666... Aestus
13687331 0 3301 1718 +1583 blockdaemon 0x850b00e0... BloXroute Regulated
13683843 0 3301 1718 +1583 everstake 0x8527d16c... Ultra Sound
13685087 3 3346 1763 +1583 everstake 0x88a53ec4... BloXroute Regulated
13685248 11 3459 1884 +1575 nethermind_lido 0xb26f9666... Titan Relay
13684800 0 3291 1718 +1573 stakingfacilities_lido 0x8db2a99d... Flashbots
13688061 8 3409 1839 +1570 0x88a53ec4... BloXroute Max Profit
13689343 1 3292 1733 +1559 everstake 0xb26f9666... Titan Relay
13688551 0 3274 1718 +1556 everstake 0x8527d16c... Ultra Sound
13684838 5 3349 1794 +1555 everstake 0xb67eaa5e... BloXroute Regulated
13687678 3 3317 1763 +1554 revolut 0xb26f9666... Titan Relay
13688019 4 3332 1778 +1554 blockdaemon 0x850b00e0... BloXroute Regulated
13690242 8 3390 1839 +1551 nethermind_lido 0x88857150... Ultra Sound
13687001 0 3269 1718 +1551 blockdaemon_lido 0x88857150... Ultra Sound
13683777 5 3342 1794 +1548 ether.fi 0xb26f9666... Titan Relay
13689428 3 3310 1763 +1547 blockdaemon 0x850b00e0... BloXroute Regulated
13685079 6 3352 1809 +1543 luno 0xb26f9666... Titan Relay
13687832 6 3345 1809 +1536 ether.fi 0x8527d16c... Ultra Sound
13685353 5 3325 1794 +1531 everstake 0x8527d16c... Ultra Sound
13685282 4 3309 1778 +1531 everstake 0x856b0004... Agnostic Gnosis
13684891 3 3290 1763 +1527 blockdaemon 0xb26f9666... Titan Relay
13686947 6 3334 1809 +1525 nethermind_lido 0xb26f9666... Titan Relay
13686117 3 3286 1763 +1523 luno 0x82c466b9... BloXroute Regulated
13688142 3 3285 1763 +1522 blockdaemon_lido 0x856b0004... Ultra Sound
13687587 6 3327 1809 +1518 0xb67eaa5e... BloXroute Regulated
13689655 9 3372 1854 +1518 blockdaemon 0x850b00e0... BloXroute Regulated
13684759 5 3311 1794 +1517 blockdaemon_lido 0x8527d16c... Ultra Sound
13687912 3 3280 1763 +1517 stakely_lido 0x8527d16c... Ultra Sound
13689887 10 3385 1869 +1516 everstake 0xb26f9666... Titan Relay
13685851 0 3233 1718 +1515 blockdaemon_lido 0xb26f9666... Titan Relay
13685292 3 3275 1763 +1512 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13683962 4 3289 1778 +1511 blockdaemon 0xb67eaa5e... BloXroute Regulated
13689347 6 3315 1809 +1506 blockdaemon 0x850b00e0... BloXroute Regulated
13689690 7 3323 1824 +1499 blockdaemon 0x853b0078... Ultra Sound
13686155 8 3336 1839 +1497 luno 0xb26f9666... Titan Relay
13684318 10 3366 1869 +1497 everstake 0x8527d16c... Ultra Sound
13685122 1 3230 1733 +1497 nethermind_lido 0x855b00e6... BloXroute Max Profit
13686001 5 3290 1794 +1496 blockdaemon 0x8527d16c... Ultra Sound
13689658 0 3211 1718 +1493 blockdaemon 0x8527d16c... Ultra Sound
13688365 3 3254 1763 +1491 blockdaemon 0x88a53ec4... BloXroute Max Profit
13688056 11 3374 1884 +1490 everstake 0x8527d16c... Ultra Sound
13686308 2 3238 1748 +1490 luno 0x856b0004... Ultra Sound
13684087 0 3207 1718 +1489 p2porg 0x852b0070... Aestus
13686552 1 3222 1733 +1489 blockdaemon 0xa230e2cf... BloXroute Regulated
13685401 5 3282 1794 +1488 luno 0x8527d16c... Ultra Sound
13686848 5 3281 1794 +1487 p2porg 0x853b0078... Aestus
13686121 6 3294 1809 +1485 revolut 0x88a53ec4... BloXroute Regulated
13684634 3 3246 1763 +1483 blockdaemon 0x88a53ec4... BloXroute Regulated
13689398 3 3245 1763 +1482 blockdaemon 0xb26f9666... Titan Relay
13684740 5 3275 1794 +1481 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13684748 7 3303 1824 +1479 blockdaemon_lido 0x850b00e0... BloXroute Regulated
13686977 5 3268 1794 +1474 blockdaemon_lido 0xb26f9666... Titan Relay
13685078 0 3191 1718 +1473 everstake 0xb26f9666... Titan Relay
13690006 0 3185 1718 +1467 0xb26f9666... Titan Relay
13688606 1 3195 1733 +1462 ether.fi 0x8db2a99d... Flashbots
13686742 3 3225 1763 +1462 nethermind_lido 0x88857150... Ultra Sound
13684207 10 3329 1869 +1460 bitstamp 0x8527d16c... Ultra Sound
13684120 1 3185 1733 +1452 blockdaemon_lido 0xb26f9666... Titan Relay
13684005 8 3290 1839 +1451 blockdaemon_lido 0xb26f9666... Titan Relay
13690450 2 3198 1748 +1450 0x853b0078... Ultra Sound
13686895 11 3332 1884 +1448 luno 0x88510a78... BloXroute Regulated
13684910 3 3211 1763 +1448 0x8527d16c... Ultra Sound
13688537 4 3225 1778 +1447 blockdaemon_lido 0xb26f9666... Titan Relay
13686924 6 3255 1809 +1446 blockdaemon_lido 0x850b00e0... BloXroute Regulated
13688209 5 3237 1794 +1443 p2porg 0xb26f9666... Titan Relay
13688097 7 3267 1824 +1443 ether.fi Local Local
13688048 8 3282 1839 +1443 blockdaemon 0xb26f9666... Titan Relay
13687561 1 3176 1733 +1443 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
13684836 6 3251 1809 +1442 0xb26f9666... Titan Relay
13689275 10 3311 1869 +1442 Local Local
13689131 0 3154 1718 +1436 gateway.fmas_lido 0x852b0070... Agnostic Gnosis
13685532 0 3153 1718 +1435 nethermind_lido 0x88857150... Ultra Sound
13690376 8 3269 1839 +1430 blockdaemon_lido 0xb26f9666... Titan Relay
13687525 3 3189 1763 +1426 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
13688283 7 3244 1824 +1420 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
13688951 6 3226 1809 +1417 p2porg 0x850b00e0... BloXroute Regulated
13686373 2 3165 1748 +1417 nethermind_lido 0x8db2a99d... Flashbots
13685031 1 3149 1733 +1416 everstake 0x8db2a99d... Flashbots
13687396 8 3254 1839 +1415 nethermind_lido 0x88a53ec4... BloXroute Max Profit
13689988 6 3221 1809 +1412 nethermind_lido 0x856b0004... Agnostic Gnosis
13689601 5 3205 1794 +1411 bitstamp 0x8db2a99d... BloXroute Max Profit
13684297 0 3128 1718 +1410 nethermind_lido 0xb26f9666... Titan Relay
13686685 6 3216 1809 +1407 0x856b0004... Ultra Sound
13686916 6 3216 1809 +1407 ether.fi 0xb26f9666... Titan Relay
13689411 8 3245 1839 +1406 p2porg 0x853b0078... Titan Relay
13684284 9 3260 1854 +1406 blockdaemon_lido 0xb7c5beef... Titan Relay
13685165 0 3124 1718 +1406 stakingfacilities_lido 0x88857150... Ultra Sound
13687968 1 3139 1733 +1406 0x853b0078... Ultra Sound
13690608 0 3122 1718 +1404 nethermind_lido 0x87cc2536... Agnostic Gnosis
13687718 1 3136 1733 +1403 gateway.fmas_lido 0x8527d16c... Ultra Sound
13689130 3 3165 1763 +1402 gateway.fmas_lido 0x8527d16c... Ultra Sound
13686374 5 3195 1794 +1401 gateway.fmas_lido 0x853b0078... Ultra Sound
13684723 1 3134 1733 +1401 nethermind_lido 0xb26f9666... Titan Relay
13686601 9 3254 1854 +1400 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13688663 0 3118 1718 +1400 0xb67eaa5e... BloXroute Regulated
13684148 0 3118 1718 +1400 bitstamp 0xb67eaa5e... BloXroute Regulated
13684956 12 3299 1899 +1400 blockdaemon 0x88857150... Ultra Sound
13689515 5 3193 1794 +1399 p2porg 0x856b0004... Ultra Sound
13689268 7 3223 1824 +1399 p2porg 0x856b0004... Ultra Sound
13690681 3 3161 1763 +1398 whale_0x4685 0x8527d16c... Ultra Sound
13689492 6 3205 1809 +1396 nethermind_lido 0x853b0078... Aestus
13688477 0 3114 1718 +1396 0x88857150... Ultra Sound
13689270 5 3189 1794 +1395 0x88a53ec4... BloXroute Max Profit
13689965 3 3158 1763 +1395 kelp 0x850b00e0... BloXroute Max Profit
13687119 0 3112 1718 +1394 0xb67eaa5e... BloXroute Max Profit
13688838 3 3157 1763 +1394 gateway.fmas_lido 0x853b0078... Ultra Sound
13685926 7 3216 1824 +1392 0x850b00e0... BloXroute Regulated
13690610 4 3170 1778 +1392 blockdaemon 0x8527d16c... Ultra Sound
13687464 8 3230 1839 +1391 0xb67eaa5e... BloXroute Regulated
13684338 0 3108 1718 +1390 nethermind_lido 0x8527d16c... Ultra Sound
13685912 12 3289 1899 +1390 blockdaemon_lido 0x856b0004... Ultra Sound
13689707 3 3153 1763 +1390 ether.fi 0x88857150... Ultra Sound
13687563 5 3183 1794 +1389 0xb67eaa5e... BloXroute Max Profit
13686501 7 3213 1824 +1389 ether.fi 0x88857150... Ultra Sound
13686479 0 3107 1718 +1389 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
13687410 9 3242 1854 +1388 stakingfacilities_lido 0x853b0078... Ultra Sound
13690549 2 3133 1748 +1385 ether.fi 0xb67eaa5e... BloXroute Regulated
13683799 3 3147 1763 +1384 p2porg 0x856b0004... Agnostic Gnosis
13684934 3 3147 1763 +1384 nethermind_lido 0x853b0078... Agnostic Gnosis
13687457 14 3313 1929 +1384 p2porg 0x853b0078... Titan Relay
13689659 0 3098 1718 +1380 gateway.fmas_lido 0x8527d16c... Ultra Sound
13689003 6 3186 1809 +1377 0x8527d16c... Ultra Sound
13685997 3 3140 1763 +1377 gateway.fmas_lido 0x8527d16c... Ultra Sound
13684211 4 3155 1778 +1377 p2porg 0x853b0078... BloXroute Max Profit
13686827 1 3109 1733 +1376 gateway.fmas_lido 0x88857150... Ultra Sound
13689066 6 3184 1809 +1375 p2porg 0x8527d16c... Ultra Sound
13689335 3 3138 1763 +1375 p2porg 0x88a53ec4... BloXroute Regulated
13686938 1 3107 1733 +1374 mantle 0x8527d16c... Ultra Sound
13686938 1 3107 1733 +1374 mantle 0x8527d16c... Ultra Sound
13684373 1 3106 1733 +1373 ether.fi 0x8527d16c... Ultra Sound
13689217 6 3179 1809 +1370 ether.fi 0x88857150... Ultra Sound
13688864 0 3088 1718 +1370 0xb26f9666... Titan Relay
13685813 0 3087 1718 +1369 kelp 0x8527d16c... Ultra Sound
13688282 4 3147 1778 +1369 figment 0xb26f9666... Titan Relay
13688614 5 3162 1794 +1368 nethermind_lido 0xb26f9666... Aestus
13689861 1 3099 1733 +1366 gateway.fmas_lido 0x855b00e6... BloXroute Max Profit
13687741 3 3128 1763 +1365 gateway.fmas_lido 0x88857150... Ultra Sound
13687267 6 3172 1809 +1363 0x853b0078... Ultra Sound
13685776 9 3216 1854 +1362 stakingfacilities_lido 0x8db2a99d... Flashbots
13689534 3 3125 1763 +1362 ether.fi 0x8527d16c... Ultra Sound
13684924 4 3139 1778 +1361 0x856b0004... Agnostic Gnosis
13688087 0 3078 1718 +1360 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
13687061 5 3153 1794 +1359 0xb4ce6162... Ultra Sound
13683776 8 3198 1839 +1359 mantle 0xb67eaa5e... BloXroute Max Profit
13689091 8 3198 1839 +1359 gateway.fmas_lido 0x853b0078... Ultra Sound
13685328 7 3182 1824 +1358 nethermind_lido 0x8db2a99d... Flashbots
13684194 9 3211 1854 +1357 mantle 0x8527d16c... Ultra Sound
13685270 0 3075 1718 +1357 everstake 0xb26f9666... Titan Relay
13690630 11 3241 1884 +1357 kelp 0x850b00e0... BloXroute Max Profit
13687902 5 3149 1794 +1355 everstake 0x855b00e6... BloXroute Max Profit
13685060 0 3073 1718 +1355 coinbase 0xb67eaa5e... BloXroute Max Profit
13684926 3 3118 1763 +1355 nethermind_lido 0x88a53ec4... BloXroute Max Profit
13685563 3 3117 1763 +1354 everstake 0xb26f9666... Titan Relay
13689618 5 3147 1794 +1353 kelp 0x88a53ec4... BloXroute Regulated
13684675 5 3147 1794 +1353 0x850b00e0... BloXroute Max Profit
13690555 0 3071 1718 +1353 0xb26f9666... BloXroute Max Profit
13689209 3 3116 1763 +1353 p2porg 0xb67eaa5e... BloXroute Max Profit
13686108 0 3070 1718 +1352 figment 0xb26f9666... Titan Relay
13690395 1 3085 1733 +1352 ether.fi 0xb26f9666... Titan Relay
13686525 1 3083 1733 +1350 p2porg 0x8db2a99d... Flashbots
13688191 2 3097 1748 +1349 p2porg 0x8db2a99d... BloXroute Max Profit
13689258 1 3081 1733 +1348 p2porg 0x850b00e0... BloXroute Regulated
13684203 3 3111 1763 +1348 p2porg 0x853b0078... Aestus
13688531 6 3156 1809 +1347 0x88a53ec4... BloXroute Max Profit
13685657 1 3080 1733 +1347 p2porg 0x8527d16c... Ultra Sound
13683679 8 3185 1839 +1346 gateway.fmas_lido 0x856b0004... Aestus
13690332 0 3064 1718 +1346 0x88a53ec4... BloXroute Regulated
13688352 2 3094 1748 +1346 0x853b0078... Aestus
13685827 4 3124 1778 +1346 figment 0xb26f9666... Titan Relay
13689790 5 3139 1794 +1345 0x856b0004... Agnostic Gnosis
13689294 1 3078 1733 +1345 whale_0xdd6c 0x850b00e0... Flashbots
13688894 5 3136 1794 +1342 0x856b0004... Agnostic Gnosis
13690487 0 3060 1718 +1342 nethermind_lido 0xac23f8cc... Flashbots
13689531 2 3090 1748 +1342 0x823e0146... BloXroute Max Profit
13688407 1 3074 1733 +1341 p2porg 0xb67eaa5e... BloXroute Max Profit
13687993 2 3089 1748 +1341 0x856b0004... Ultra Sound
13684664 5 3134 1794 +1340 p2porg 0x850b00e0... Flashbots
13690084 8 3177 1839 +1338 p2porg 0x88857150... Ultra Sound
13687805 0 3055 1718 +1337 kelp 0xb67eaa5e... BloXroute Max Profit
13689366 5 3130 1794 +1336 0x850b00e0... BloXroute Max Profit
13684955 0 3054 1718 +1336 p2porg 0x8527d16c... Ultra Sound
13688161 0 3053 1718 +1335 everstake 0x856b0004... Agnostic Gnosis
13687234 0 3052 1718 +1334 gateway.fmas_lido 0x856b0004... Ultra Sound
13685422 3 3097 1763 +1334 everstake 0xb26f9666... Titan Relay
13685200 4 3112 1778 +1334 0x8527d16c... Ultra Sound
13690062 9 3187 1854 +1333 0x8527d16c... Ultra Sound
13685634 0 3051 1718 +1333 ether.fi 0x8527d16c... Ultra Sound
13687651 5 3126 1794 +1332 0x856b0004... Agnostic Gnosis
13687468 6 3141 1809 +1332 everstake 0x855b00e6... BloXroute Max Profit
13690280 0 3049 1718 +1331 kelp 0x88857150... Ultra Sound
13685094 1 3063 1733 +1330 0x8a850621... Titan Relay
13689950 0 3047 1718 +1329 kelp 0x8527d16c... Ultra Sound
13684228 5 3122 1794 +1328 0x8527d16c... Ultra Sound
13690331 10 3197 1869 +1328 gateway.fmas_lido 0x856b0004... Ultra Sound
13685231 6 3136 1809 +1327 p2porg 0x860d4173... Flashbots
13684811 8 3166 1839 +1327 0x88a53ec4... BloXroute Regulated
13687584 3 3090 1763 +1327 everstake 0xb26f9666... Titan Relay
13687372 9 3180 1854 +1326 0x88a53ec4... BloXroute Max Profit
13688423 2 3074 1748 +1326 0xb26f9666... BloXroute Max Profit
13687684 5 3119 1794 +1325 gateway.fmas_lido 0x856b0004... Ultra Sound
13688085 1 3058 1733 +1325 kelp 0x8527d16c... Ultra Sound
13684254 6 3133 1809 +1324 0x856b0004... Ultra Sound
13690604 0 3042 1718 +1324 p2porg 0x853b0078... Ultra Sound
13684881 0 3041 1718 +1323 mantle 0xb26f9666... Titan Relay
13687697 0 3041 1718 +1323 kelp 0xb26f9666... Titan Relay
13684326 1 3056 1733 +1323 0xb67eaa5e... BloXroute Regulated
13686491 1 3056 1733 +1323 p2porg 0x856b0004... Agnostic Gnosis
13689701 3 3086 1763 +1323 0x8527d16c... Ultra Sound
13688095 3 3086 1763 +1323 upbit 0xb67eaa5e... BloXroute Max Profit
13685625 9 3176 1854 +1322 p2porg 0x8527d16c... Ultra Sound
13688126 10 3190 1869 +1321 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13684623 0 3039 1718 +1321 p2porg 0x852b0070... Agnostic Gnosis
13687820 2 3069 1748 +1321 0x856b0004... Agnostic Gnosis
13689089 2 3069 1748 +1321 p2porg 0x860d4173... Flashbots
13685107 5 3114 1794 +1320 0x8527d16c... Ultra Sound
13688356 3 3082 1763 +1319 0xb26f9666... Titan Relay
13683749 3 3081 1763 +1318 0x8a850621... Titan Relay
13686914 8 3156 1839 +1317 stakingfacilities_lido 0x8527d16c... Ultra Sound
13685274 0 3035 1718 +1317 0x853b0078... Ultra Sound
13684875 0 3035 1718 +1317 everstake 0x8527d16c... Ultra Sound
13684409 1 3050 1733 +1317 everstake 0x88a53ec4... BloXroute Regulated
13684492 3 3080 1763 +1317 nethermind_lido 0xb26f9666... Titan Relay
13687215 8 3155 1839 +1316 everstake 0xb26f9666... Titan Relay
13684097 6 3124 1809 +1315 everstake 0x8527d16c... Ultra Sound
13684898 0 3033 1718 +1315 0xa230e2cf... Flashbots
13685490 1 3048 1733 +1315 0x850b00e0... BloXroute Max Profit
13689449 1 3048 1733 +1315 0x856b0004... Aestus
13690038 3 3078 1763 +1315 0xb26f9666... BloXroute Max Profit
13685392 6 3123 1809 +1314 p2porg 0xac23f8cc... Flashbots
13687670 0 3032 1718 +1314 0x99dbe3e8... Ultra Sound
13690657 0 3030 1718 +1312 0x852b0070... Agnostic Gnosis
13689442 5 3105 1794 +1311 0x8a850621... Ultra Sound
13688384 0 3029 1718 +1311 kraken 0x8527d16c... Ultra Sound
13686488 5 3104 1794 +1310 p2porg 0xb26f9666... BloXroute Regulated
13688243 10 3179 1869 +1310 gateway.fmas_lido 0x8527d16c... Ultra Sound
13685357 0 3028 1718 +1310 everstake 0x856b0004... Agnostic Gnosis
13686345 0 3028 1718 +1310 0x8527d16c... Ultra Sound
13689038 10 3178 1869 +1309 gateway.fmas_lido 0x8527d16c... Ultra Sound
13690176 0 3027 1718 +1309 ether.fi 0x852b0070... BloXroute Max Profit
13684970 11 3193 1884 +1309 bitstamp 0x8527d16c... Ultra Sound
13683987 2 3057 1748 +1309 p2porg 0x856b0004... Agnostic Gnosis
13689167 3 3071 1763 +1308 kelp 0xb26f9666... Titan Relay
13683763 6 3116 1809 +1307 kelp 0xb26f9666... Titan Relay
13689200 5 3099 1794 +1305 0xb26f9666... BloXroute Max Profit
13684529 0 3022 1718 +1304 everstake 0x8527d16c... Ultra Sound
13688129 3 3066 1763 +1303 whale_0x4685 0x8527d16c... Ultra Sound
13684149 8 3141 1839 +1302 0xb67eaa5e... BloXroute Regulated
13684767 0 3020 1718 +1302 p2porg 0x8527d16c... Ultra Sound
13687039 0 3020 1718 +1302 everstake 0xb26f9666... Titan Relay
13685702 3 3065 1763 +1302 0x88857150... Ultra Sound
13687269 8 3140 1839 +1301 0x853b0078... Aestus
13685371 5 3094 1794 +1300 everstake 0x8527d16c... Ultra Sound
13684945 0 3018 1718 +1300 0x8527d16c... Ultra Sound
13686025 6 3108 1809 +1299 p2porg 0x853b0078... BloXroute Max Profit
13686568 0 3017 1718 +1299 kelp 0xb26f9666... Titan Relay
13690030 2 3047 1748 +1299 everstake 0x853b0078... Agnostic Gnosis
13684777 5 3092 1794 +1298 kelp 0x8527d16c... Ultra Sound
13686926 1 3031 1733 +1298 ether.fi 0xb26f9666... Titan Relay
13690316 3 3061 1763 +1298 p2porg 0xb7c5e609... BloXroute Max Profit
13690305 0 3015 1718 +1297 everstake 0x852b0070... Aestus
13687903 1 3030 1733 +1297 everstake 0x8527d16c... Ultra Sound
13687478 5 3090 1794 +1296 0x856b0004... Ultra Sound
13687890 3 3059 1763 +1296 everstake 0x853b0078... Agnostic Gnosis
13687015 4 3074 1778 +1296 ether.fi 0xb26f9666... Titan Relay
13688688 0 3013 1718 +1295 ether.fi 0xb26f9666... Aestus
13690139 4 3073 1778 +1295 0xb26f9666... Titan Relay
13690248 6 3103 1809 +1294 origin_protocol 0x8527d16c... Ultra Sound
13686712 17 3269 1975 +1294 0x856b0004... Ultra Sound
13690113 1 3027 1733 +1294 ether.fi 0x8527d16c... Ultra Sound
13684743 8 3132 1839 +1293 everstake 0x8527d16c... Ultra Sound
13687006 8 3132 1839 +1293 0x88a53ec4... BloXroute Max Profit
13688328 7 3116 1824 +1292 everstake 0x855b00e6... BloXroute Max Profit
13690514 8 3131 1839 +1292 0xb67eaa5e... BloXroute Max Profit
13685601 2 3040 1748 +1292 0xa230e2cf... Flashbots
13689715 5 3085 1794 +1291 nethermind_lido 0x853b0078... Agnostic Gnosis
13685515 6 3100 1809 +1291 p2porg 0xa230e2cf... BloXroute Max Profit
13683781 6 3100 1809 +1291 0x856b0004... Ultra Sound
13685363 0 3009 1718 +1291 0x8527d16c... Ultra Sound
13690745 1 3024 1733 +1291 abyss_finance 0xb7c5e609... Flashbots
13687086 4 3069 1778 +1291 kelp 0xb26f9666... Titan Relay
13685530 5 3084 1794 +1290 0xb26f9666... BloXroute Regulated
13689977 17 3265 1975 +1290 0xb67eaa5e... BloXroute Max Profit
13685854 8 3129 1839 +1290 gateway.fmas_lido 0x860d4173... BloXroute Max Profit
13687758 0 3008 1718 +1290 p2porg 0xb67eaa5e... BloXroute Max Profit
13686626 3 3053 1763 +1290 everstake 0x856b0004... Aestus
13686979 3 3053 1763 +1290 0x88a53ec4... BloXroute Regulated
13685970 5 3082 1794 +1288 0x8527d16c... Ultra Sound
13688728 14 3217 1929 +1288 gateway.fmas_lido 0x8527d16c... Ultra Sound
13685038 6 3096 1809 +1287 everstake 0x855b00e6... BloXroute Max Profit
13686829 3 3050 1763 +1287 kelp 0x850b00e0... BloXroute Max Profit
13690654 8 3125 1839 +1286 0x88a53ec4... BloXroute Regulated
13685564 3 3049 1763 +1286 0x856b0004... Agnostic Gnosis
13688610 3 3049 1763 +1286 0x856b0004... Titan Relay
13687743 7 3108 1824 +1284 0x88a53ec4... BloXroute Max Profit
13685405 0 3001 1718 +1283 p2porg 0x860d4173... BloXroute Max Profit
13685937 2 3031 1748 +1283 0x8db2a99d... Flashbots
13687770 1 3015 1733 +1282 kelp 0x856b0004... Agnostic Gnosis
13685317 1 3015 1733 +1282 whale_0x3b9e 0xb26f9666... Titan Relay
13689182 1 3015 1733 +1282 nethermind_lido 0xb26f9666... Titan Relay
13688349 3 3045 1763 +1282 0x8527d16c... Ultra Sound
13685789 10 3150 1869 +1281 0xb26f9666... BloXroute Max Profit
13685924 0 2999 1718 +1281 0x88a53ec4... BloXroute Max Profit
13684651 0 2999 1718 +1281 p2porg 0x88a53ec4... BloXroute Regulated
Total anomalies: 393

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