Tue, Mar 10, 2026

Propagation anomalies - 2026-03-10

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

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

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

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

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

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

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

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

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

-- Column arrival timing: first arrival per column, then min/max of those
column_gossip AS (
    SELECT
        slot,
        min(first_seen) AS first_column_first_seen,
        max(first_seen) AS last_column_first_seen
    FROM (
        SELECT
            slot,
            column_index,
            min(event_date_time) AS first_seen
        FROM libp2p_gossipsub_data_column_sidecar
        WHERE meta_network_name = 'mainnet'
          AND slot_start_date_time >= '2026-03-10' AND slot_start_date_time < '2026-03-10'::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,166
MEV blocks: 5,962 (83.2%)
Local blocks: 1,204 (16.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 = 1717.9 + 15.43 × blob_count (R² = 0.011)
Residual σ = 607.6ms
Anomalies (>2σ slow): 467 (6.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
13859744 0 6195 1718 +4477 upbit Local Local
13860640 0 5707 1718 +3989 bridgetower_lido Local Local
13856576 5 5724 1795 +3929 piertwo Local Local
13858768 0 4625 1718 +2907 lido Local Local
13860593 0 4440 1718 +2722 whale_0x8ebd Local Local
13858304 0 4417 1718 +2699 whale_0x8ebd Local Local
13859072 0 4281 1718 +2563 bridgetower_lido Local Local
13860128 0 4053 1718 +2335 ether.fi 0xb67eaa5e... BloXroute Max Profit
13859203 5 4078 1795 +2283 lido Local Local
13862304 0 3999 1718 +2281 blockdaemon Local Local
13857646 0 3977 1718 +2259 lido Local Local
13857798 0 3931 1718 +2213 lido Local Local
13856961 0 3845 1718 +2127 ether.fi Local Local
13856916 0 3771 1718 +2053 coinbase 0x823e0146... Aestus
13860618 0 3723 1718 +2005 rocketpool Local Local
13860384 0 3660 1718 +1942 whale_0x8ebd Local Local
13862574 7 3727 1826 +1901 ether.fi Local Local
13858720 0 3618 1718 +1900 0x852b0070... Ultra Sound
13856844 10 3759 1872 +1887 nethermind_lido 0x8527d16c... Ultra Sound
13857143 3 3639 1764 +1875 lido Local Local
13858839 0 3566 1718 +1848 nethermind_lido 0xa0366397... Ultra Sound
13861149 7 3671 1826 +1845 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13859732 0 3502 1718 +1784 everstake 0x852b0070... Agnostic Gnosis
13856570 7 3607 1826 +1781 whale_0x8ebd 0x855b00e6... BloXroute Max Profit
13862568 5 3569 1795 +1774 blockdaemon_lido 0xb67eaa5e... Titan Relay
13858899 5 3551 1795 +1756 ether.fi 0xb67eaa5e... EthGas
13863472 0 3461 1718 +1743 whale_0x8ebd Local Local
13863036 1 3456 1733 +1723 blockdaemon_lido Local Local
13861320 6 3529 1810 +1719 whale_0x8ebd 0x853b0078... Agnostic Gnosis
13861120 1 3439 1733 +1706 nethermind_lido 0x8db2a99d... Flashbots
13856864 6 3515 1810 +1705 nethermind_lido 0xb67eaa5e... BloXroute Regulated
13858250 0 3422 1718 +1704 blockdaemon 0xb4ce6162... Ultra Sound
13859954 1 3435 1733 +1702 whale_0x8ebd 0xac23f8cc... BloXroute Max Profit
13857432 1 3434 1733 +1701 blockdaemon 0x8a850621... BloXroute Max Profit
13858334 0 3413 1718 +1695 whale_0x15b0 0x82c466b9... Flashbots
13860596 21 3737 2042 +1695 whale_0xdc8d 0xb26f9666... Titan Relay
13858667 0 3407 1718 +1689 blockdaemon_lido 0x8527d16c... Ultra Sound
13857130 4 3466 1780 +1686 whale_0x8ebd 0x8db2a99d... Ultra Sound
13860160 5 3481 1795 +1686 bitstamp 0x88a53ec4... BloXroute Max Profit
13858930 0 3401 1718 +1683 everstake 0x8db2a99d... Aestus
13863443 3 3443 1764 +1679 blockdaemon 0x850b00e0... BloXroute Max Profit
13856767 8 3517 1841 +1676 whale_0x8ebd 0x823e0146... Ultra Sound
13858678 6 3486 1810 +1676 0xb26f9666... Titan Relay
13861281 3 3431 1764 +1667 stader Local Local
13859401 6 3459 1810 +1649 nethermind_lido 0xb26f9666... Aestus
13863071 0 3366 1718 +1648 ether.fi 0x850b00e0... BloXroute Max Profit
13859839 1 3380 1733 +1647 nethermind_lido 0xb26f9666... Titan Relay
13863058 0 3364 1718 +1646 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13858959 1 3379 1733 +1646 whale_0x8ebd 0xb4ce6162... Ultra Sound
13857367 1 3376 1733 +1643 lido 0x855b00e6... BloXroute Max Profit
13858453 3 3402 1764 +1638 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13863337 0 3348 1718 +1630 ether.fi 0xb26f9666... Titan Relay
13862996 10 3494 1872 +1622 blockdaemon Local Local
13859928 1 3355 1733 +1622 blockdaemon 0x8a850621... Titan Relay
13860633 13 3540 1919 +1621 ether.fi 0xb26f9666... EthGas
13862791 1 3352 1733 +1619 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13858388 0 3332 1718 +1614 blockdaemon_lido 0xb26f9666... Titan Relay
13858454 0 3329 1718 +1611 luno 0x852b0070... Ultra Sound
13859190 5 3406 1795 +1611 whale_0x8ebd 0xb4ce6162... Ultra Sound
13861536 4 3388 1780 +1608 p2porg Local Local
13863165 11 3495 1888 +1607 nethermind_lido Local Local
13861061 5 3397 1795 +1602 whale_0xdc8d 0x88a53ec4... BloXroute Regulated
13857421 8 3439 1841 +1598 blockdaemon 0x8527d16c... Ultra Sound
13859637 5 3391 1795 +1596 blockdaemon_lido 0x8527d16c... Ultra Sound
13859362 1 3325 1733 +1592 blockdaemon 0xb7c5e609... BloXroute Max Profit
13861231 13 3506 1919 +1587 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13857760 1 3318 1733 +1585 p2porg 0x8527d16c... Ultra Sound
13863201 0 3302 1718 +1584 luno 0xb26f9666... Titan Relay
13859725 3 3345 1764 +1581 revolut 0xb26f9666... Titan Relay
13862979 0 3296 1718 +1578 blockdaemon Local Local
13858936 0 3295 1718 +1577 whale_0xdc8d 0x91b123d8... BloXroute Regulated
13860022 12 3478 1903 +1575 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
13858642 2 3322 1749 +1573 blockdaemon 0xb26f9666... Titan Relay
13861487 0 3287 1718 +1569 luno Local Local
13859644 1 3301 1733 +1568 whale_0xc541 0x8527d16c... Ultra Sound
13858708 0 3285 1718 +1567 coinbase 0x857b0038... Ultra Sound
13857645 2 3313 1749 +1564 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13857657 6 3369 1810 +1559 blockdaemon 0xb4ce6162... Ultra Sound
13859956 2 3307 1749 +1558 blockdaemon 0xb67eaa5e... BloXroute Max Profit
13856405 5 3351 1795 +1556 whale_0x8ebd 0x8527d16c... Ultra Sound
13859896 5 3350 1795 +1555 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13859125 11 3441 1888 +1553 blockdaemon 0xb67eaa5e... BloXroute Regulated
13858871 0 3268 1718 +1550 blockdaemon 0x8a850621... Titan Relay
13856903 5 3344 1795 +1549 blockdaemon 0x8527d16c... Ultra Sound
13862301 2 3296 1749 +1547 blockdaemon 0x855b00e6... BloXroute Max Profit
13861607 3 3309 1764 +1545 blockdaemon_lido 0xb67eaa5e... Titan Relay
13861111 1 3276 1733 +1543 everstake 0x88a53ec4... BloXroute Regulated
13856885 5 3335 1795 +1540 revolut 0x85fb0503... BloXroute Regulated
13859876 8 3380 1841 +1539 whale_0x8ebd 0x8a850621... Titan Relay
13863180 0 3252 1718 +1534 blockdaemon 0x853b0078... BloXroute Regulated
13858545 0 3249 1718 +1531 blockdaemon_lido 0x851b00b1... BloXroute Max Profit
13859274 2 3273 1749 +1524 ether.fi 0xac23f8cc... Flashbots
13858196 9 3378 1857 +1521 p2porg 0x91b123d8... BloXroute Regulated
13858222 5 3314 1795 +1519 revolut 0xb26f9666... Titan Relay
13857149 1 3252 1733 +1519 blockdaemon 0x850b00e0... BloXroute Regulated
13860545 5 3312 1795 +1517 whale_0xdc8d 0xb26f9666... Titan Relay
13857997 5 3309 1795 +1514 luno 0x8527d16c... Ultra Sound
13861523 2 3262 1749 +1513 nethermind_lido 0xb67eaa5e... BloXroute Regulated
13859198 8 3354 1841 +1513 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13863216 5 3306 1795 +1511 blockdaemon_lido Local Local
13856487 3 3275 1764 +1511 blockdaemon_lido 0xb67eaa5e... Titan Relay
13860457 0 3227 1718 +1509 blockdaemon 0xb26f9666... Titan Relay
13859393 0 3222 1718 +1504 nethermind_lido 0x852b0070... Agnostic Gnosis
13862502 5 3299 1795 +1504 numic_lido 0x8db2a99d... Flashbots
13862116 10 3375 1872 +1503 blockdaemon_lido Local Local
13858815 7 3324 1826 +1498 whale_0x8ebd 0x8527d16c... Ultra Sound
13861026 5 3292 1795 +1497 blockdaemon 0x856b0004... BloXroute Max Profit
13856617 0 3214 1718 +1496 whale_0xdc8d 0xb26f9666... Titan Relay
13861366 7 3321 1826 +1495 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
13862947 5 3286 1795 +1491 nethermind_lido 0x88a53ec4... BloXroute Max Profit
13857687 5 3286 1795 +1491 solo_stakers Local Local
13857526 0 3206 1718 +1488 0x8527d16c... Ultra Sound
13859741 11 3373 1888 +1485 blockdaemon_lido 0x855b00e6... Ultra Sound
13860555 5 3280 1795 +1485 blockdaemon 0x850b00e0... BloXroute Max Profit
13861191 10 3356 1872 +1484 blockdaemon_lido 0xb26f9666... Titan Relay
13857489 0 3195 1718 +1477 blockdaemon_lido 0xa1da2978... Ultra Sound
13860365 0 3194 1718 +1476 blockdaemon_lido 0x853b0078... Titan Relay
13860135 1 3209 1733 +1476 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
13858927 1 3208 1733 +1475 blockdaemon_lido 0xb67eaa5e... Titan Relay
13859074 0 3192 1718 +1474 ether.fi 0x852b0070... BloXroute Max Profit
13860501 0 3188 1718 +1470 whale_0x8ebd 0x851b00b1... BloXroute Max Profit
13858193 0 3186 1718 +1468 revolut 0x850b00e0... BloXroute Regulated
13863474 6 3278 1810 +1468 blockdaemon_lido Local Local
13860595 0 3185 1718 +1467 kiln 0xa412c4b8... Flashbots
13859164 5 3262 1795 +1467 revolut 0xb26f9666... Titan Relay
13856891 6 3273 1810 +1463 whale_0x8ebd 0x853b0078... BloXroute Max Profit
13860064 5 3257 1795 +1462 stakely_lido 0xb26f9666... Titan Relay
13860366 5 3256 1795 +1461 nethermind_lido 0x88a53ec4... BloXroute Max Profit
13858100 12 3364 1903 +1461 blockdaemon_lido 0x853b0078... BloXroute Regulated
13860127 5 3255 1795 +1460 revolut Local Local
13860313 6 3268 1810 +1458 blockdaemon_lido 0xb26f9666... Titan Relay
13859821 8 3294 1841 +1453 revolut 0x856b0004... Ultra Sound
13858237 5 3247 1795 +1452 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13858912 8 3293 1841 +1452 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13861031 11 3332 1888 +1444 luno 0xb26f9666... Titan Relay
13860358 3 3206 1764 +1442 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13860089 0 3159 1718 +1441 stader Local Local
13859758 5 3235 1795 +1440 whale_0x8ebd 0x855b00e6... BloXroute Max Profit
13862345 9 3295 1857 +1438 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
13860599 5 3233 1795 +1438 kiln 0xb26f9666... Aestus
13857841 0 3155 1718 +1437 blockdaemon_lido 0x852b0070... BloXroute Max Profit
13857010 6 3246 1810 +1436 stakingfacilities_lido 0xb67eaa5e... BloXroute Regulated
13861853 0 3153 1718 +1435 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
13859959 6 3245 1810 +1435 nethermind_lido Local Local
13860175 12 3336 1903 +1433 nethermind_lido 0x850b00e0... BloXroute Max Profit
13860588 9 3289 1857 +1432 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13860367 4 3209 1780 +1429 coinbase 0x823e0146... Aestus
13863551 11 3317 1888 +1429 nethermind_lido 0x88a53ec4... BloXroute Regulated
13861610 6 3239 1810 +1429 revolut 0xb26f9666... Titan Relay
13860606 0 3146 1718 +1428 stakingfacilities_lido 0xa412c4b8... Flashbots
13859640 8 3269 1841 +1428 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13863502 7 3253 1826 +1427 blockdaemon_lido 0x855b00e6... BloXroute Max Profit
13859856 6 3237 1810 +1427 blockdaemon_lido 0xb26f9666... Titan Relay
13862004 5 3220 1795 +1425 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13863503 0 3141 1718 +1423 whale_0x7c1b 0xac23f8cc... Aestus
13860912 0 3140 1718 +1422 blockdaemon_lido 0xb26f9666... Titan Relay
13860689 0 3138 1718 +1420 stakingfacilities_lido 0x852b0070... BloXroute Max Profit
13858293 2 3167 1749 +1418 stakingfacilities_lido 0xb67eaa5e... BloXroute Max Profit
13861547 10 3290 1872 +1418 revolut 0xb26f9666... Titan Relay
13862040 1 3150 1733 +1417 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13857024 0 3134 1718 +1416 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
13863009 7 3241 1826 +1415 stakingfacilities_lido Local Local
13857324 5 3210 1795 +1415 whale_0x8ebd 0x857b0038... Ultra Sound
13856957 8 3254 1841 +1413 nethermind_lido 0xb67eaa5e... BloXroute Regulated
13857561 3 3176 1764 +1412 nethermind_lido 0x88a53ec4... BloXroute Max Profit
13858793 0 3128 1718 +1410 blockdaemon 0x852b0070... BloXroute Max Profit
13861570 0 3127 1718 +1409 Local Local
13857157 0 3126 1718 +1408 kiln 0xa412c4b8... Flashbots
13863251 2 3156 1749 +1407 numic_lido 0x8527d16c... Ultra Sound
13863016 0 3124 1718 +1406 p2porg 0x856b0004... Agnostic Gnosis
13858975 2 3153 1749 +1404 kiln 0xb26f9666... BloXroute Max Profit
13857980 9 3260 1857 +1403 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13857778 0 3120 1718 +1402 everstake 0xb26f9666... Titan Relay
13861288 0 3118 1718 +1400 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
13856508 3 3164 1764 +1400 blockdaemon_lido 0x85fb0503... BloXroute Max Profit
13858873 10 3271 1872 +1399 ether.fi 0x88a53ec4... BloXroute Regulated
13860806 8 3239 1841 +1398 figment 0x853b0078... BloXroute Regulated
13862349 6 3208 1810 +1398 kiln 0x823e0146... Aestus
13861516 7 3223 1826 +1397 ether.fi Local Local
13859204 0 3114 1718 +1396 p2porg 0x88857150... Ultra Sound
13860337 5 3191 1795 +1396 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
13858532 6 3205 1810 +1395 kiln 0xb67eaa5e... BloXroute Max Profit
13862846 5 3185 1795 +1390 p2porg Local Local
13861268 0 3106 1718 +1388 p2porg Local Local
13863411 0 3105 1718 +1387 p2porg 0x850b00e0... BloXroute Regulated
13860207 0 3102 1718 +1384 lido 0x852b0070... Agnostic Gnosis
13862751 7 3208 1826 +1382 p2porg 0x850b00e0... BloXroute Max Profit
13859245 5 3176 1795 +1381 p2porg 0x850b00e0... BloXroute Regulated
13861270 10 3253 1872 +1381 blockdaemon Local Local
13860698 5 3174 1795 +1379 blockdaemon_lido 0xb26f9666... Titan Relay
13859453 0 3096 1718 +1378 p2porg 0xb26f9666... Titan Relay
13861679 7 3202 1826 +1376 p2porg 0x88a53ec4... BloXroute Max Profit
13858098 1 3108 1733 +1375 everstake 0x856b0004... Aestus
13859167 5 3168 1795 +1373 p2porg 0x850b00e0... Flashbots
13863279 1 3106 1733 +1373 Local Local
13858485 2 3121 1749 +1372 blockdaemon 0x8527d16c... Ultra Sound
13860927 0 3090 1718 +1372 lido 0xb26f9666... Titan Relay
13860538 0 3090 1718 +1372 coinbase 0xb67eaa5e... Aestus
13857321 8 3213 1841 +1372 nethermind_lido 0x856b0004... BloXroute Max Profit
13858949 2 3120 1749 +1371 p2porg 0x853b0078... BloXroute Regulated
13856471 8 3212 1841 +1371 whale_0x8ebd 0x856b0004... Aestus
13860711 7 3195 1826 +1369 kiln 0x823e0146... Agnostic Gnosis
13859343 5 3163 1795 +1368 0x856b0004... BloXroute Max Profit
13856920 0 3085 1718 +1367 ether.fi 0x8527d16c... Ultra Sound
13858819 2 3115 1749 +1366 whale_0x8ebd 0x856b0004... Ultra Sound
13857072 0 3084 1718 +1366 whale_0x8ebd 0x85fb0503... BloXroute Max Profit
13863005 0 3084 1718 +1366 p2porg 0xb26f9666... Titan Relay
13861332 1 3099 1733 +1366 whale_0x8ebd Local Local
13860342 1 3099 1733 +1366 ether.fi Local Local
13859862 0 3083 1718 +1365 p2porg 0xb67eaa5e... Aestus
13860189 7 3191 1826 +1365 stader Local Local
13859160 5 3159 1795 +1364 ether.fi 0x823e0146... Aestus
13858711 3 3128 1764 +1364 ether.fi 0x823e0146... Aestus
13859193 2 3111 1749 +1362 p2porg 0x850b00e0... BloXroute Regulated
13859189 2 3111 1749 +1362 whale_0x8ebd 0xac23f8cc... BloXroute Max Profit
13863330 1 3095 1733 +1362 stader 0x850b00e0... BloXroute Max Profit
13862595 5 3156 1795 +1361 p2porg Local Local
13862667 1 3094 1733 +1361 lido Local Local
13862919 6 3171 1810 +1361 p2porg 0x850b00e0... BloXroute Regulated
13861617 4 3140 1780 +1360 p2porg 0x855b00e6... Flashbots
13863324 0 3078 1718 +1360 p2porg 0x856b0004... Agnostic Gnosis
13860088 1 3093 1733 +1360 p2porg 0x850b00e0... BloXroute Regulated
13859231 8 3201 1841 +1360 ether.fi 0x8527d16c... Ultra Sound
13856801 5 3154 1795 +1359 p2porg 0x8527d16c... Ultra Sound
13859361 1 3092 1733 +1359 p2porg 0x856b0004... BloXroute Max Profit
13856809 0 3075 1718 +1357 p2porg 0x853b0078... BloXroute Regulated
13859091 0 3074 1718 +1356 p2porg 0x850b00e0... BloXroute Regulated
13856887 13 3271 1919 +1352 stakingfacilities_lido 0x88857150... Ultra Sound
13857189 7 3178 1826 +1352 p2porg 0x853b0078... BloXroute Regulated
13859217 0 3069 1718 +1351 0x852b0070... Aestus
13862492 3 3115 1764 +1351 whale_0x8ebd Local Local
13861209 5 3145 1795 +1350 p2porg 0x850b00e0... BloXroute Regulated
13858199 5 3143 1795 +1348 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13859916 1 3080 1733 +1347 ether.fi 0xac23f8cc... Flashbots
13862472 13 3265 1919 +1346 p2porg 0xb67eaa5e... BloXroute Max Profit
13862940 10 3218 1872 +1346 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13861393 5 3140 1795 +1345 whale_0x8ebd Local Local
13858997 3 3108 1764 +1344 whale_0x8ebd 0xb26f9666... Titan Relay
13860575 5 3137 1795 +1342 everstake 0xb26f9666... Titan Relay
13857209 9 3197 1857 +1340 bitstamp 0x823e0146... Ultra Sound
13861467 12 3243 1903 +1340 kiln 0x855b00e6... Flashbots
13862161 8 3181 1841 +1340 whale_0x8ebd Local Local
13862639 5 3134 1795 +1339 0xb26f9666... BloXroute Max Profit
13856982 1 3071 1733 +1338 kiln 0xb26f9666... Aestus
13862444 0 3055 1718 +1337 whale_0xdd6c Local Local
13861110 6 3146 1810 +1336 kiln 0x8db2a99d... Aestus
13863062 2 3084 1749 +1335 coinbase 0xb67eaa5e... BloXroute Max Profit
13856758 2 3083 1749 +1334 p2porg 0xac23f8cc... Ultra Sound
13862230 0 3052 1718 +1334 kiln Local Local
13860630 0 3051 1718 +1333 everstake 0x851b00b1... BloXroute Max Profit
13858085 0 3051 1718 +1333 0x856b0004... Agnostic Gnosis
13861941 4 3112 1780 +1332 p2porg 0x850b00e0... BloXroute Regulated
13859885 0 3050 1718 +1332 p2porg 0x856b0004... BloXroute Max Profit
13862535 2 3080 1749 +1331 kiln 0x8db2a99d... Flashbots
13858163 6 3140 1810 +1330 p2porg 0x855b00e6... BloXroute Max Profit
13861143 1 3062 1733 +1329 lido 0xac23f8cc... Flashbots
13860557 16 3293 1965 +1328 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
13862648 1 3060 1733 +1327 p2porg Local Local
13860729 1 3060 1733 +1327 kiln 0x88a53ec4... BloXroute Max Profit
13863594 1 3059 1733 +1326 kiln 0x88a53ec4... BloXroute Max Profit
13863060 6 3136 1810 +1326 whale_0x7791 0xb26f9666... Titan Relay
13859937 0 3043 1718 +1325 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13859624 0 3042 1718 +1324 p2porg 0x8527d16c... Ultra Sound
13863405 1 3056 1733 +1323 ether.fi 0xb26f9666... Titan Relay
13856805 1 3056 1733 +1323 everstake 0xb4ce6162... Ultra Sound
13861136 5 3117 1795 +1322 p2porg Local Local
13863057 0 3038 1718 +1320 figment 0x852b0070... BloXroute Max Profit
13856409 2 3068 1749 +1319 whale_0x8ebd 0x856b0004... BloXroute Max Profit
13860245 7 3145 1826 +1319 coinbase 0x853b0078... Aestus
13862059 0 3035 1718 +1317 p2porg 0x852b0070... Agnostic Gnosis
13860126 0 3034 1718 +1316 kiln 0x852b0070... BloXroute Max Profit
13856967 0 3034 1718 +1316 0xb26f9666... BloXroute Max Profit
13856599 3 3080 1764 +1316 whale_0x8ebd 0xb26f9666... Titan Relay
13860296 3 3080 1764 +1316 figment 0xb26f9666... Titan Relay
13861477 5 3110 1795 +1315 whale_0x7791 Local Local
13860147 5 3110 1795 +1315 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13858403 8 3155 1841 +1314 ether.fi 0x8527d16c... Ultra Sound
13860568 0 3031 1718 +1313 staked.us 0x93b11bec... Flashbots
13861218 0 3031 1718 +1313 ether.fi 0x850b00e0... BloXroute Max Profit
13858991 5 3108 1795 +1313 0x8db2a99d... Ultra Sound
13858397 3 3077 1764 +1313 kiln 0x88a53ec4... BloXroute Regulated
13861616 8 3154 1841 +1313 whale_0x8ebd 0x855b00e6... BloXroute Max Profit
13858491 4 3092 1780 +1312 ether.fi 0x8db2a99d... Ultra Sound
13859175 0 3030 1718 +1312 p2porg 0xa412c4b8... Ultra Sound
13856432 6 3122 1810 +1312 everstake 0x853b0078... Agnostic Gnosis
13859714 5 3106 1795 +1311 p2porg 0x8527d16c... Ultra Sound
13862735 10 3183 1872 +1311 blockdaemon 0xb26f9666... Titan Relay
13857853 0 3028 1718 +1310 p2porg 0xb67eaa5e... BloXroute Regulated
13860256 3 3074 1764 +1310 whale_0x8ebd Local Local
13858759 1 3043 1733 +1310 whale_0x8ebd 0xb4ce6162... Ultra Sound
13857874 1 3042 1733 +1309 ether.fi 0x856b0004... Agnostic Gnosis
13857860 1 3042 1733 +1309 p2porg 0x853b0078... Ultra Sound
13857730 0 3025 1718 +1307 everstake 0x8a850621... Titan Relay
13858663 1 3040 1733 +1307 p2porg 0xb67eaa5e... Aestus
13859375 5 3101 1795 +1306 p2porg 0x856b0004... Aestus
13856653 0 3023 1718 +1305 everstake 0x852b0070... BloXroute Max Profit
13859213 0 3022 1718 +1304 everstake 0x8a850621... Titan Relay
13858851 0 3022 1718 +1304 0xb26f9666... BloXroute Max Profit
13857602 5 3099 1795 +1304 everstake 0x8db2a99d... Flashbots
13857090 1 3036 1733 +1303 p2porg 0x823e0146... Ultra Sound
13858594 1 3036 1733 +1303 kiln 0xb26f9666... Aestus
13861734 8 3144 1841 +1303 everstake 0x8c852572... BloXroute Max Profit
13862190 0 3020 1718 +1302 whale_0xedc6 0xb26f9666... BloXroute Max Profit
13862147 5 3097 1795 +1302 everstake 0x856b0004... Aestus
13862442 1 3033 1733 +1300 0x8db2a99d... Flashbots
13858704 0 3017 1718 +1299 p2porg 0xb26f9666... Aestus
13863116 1 3032 1733 +1299 p2porg 0xb26f9666... BloXroute Regulated
13860461 14 3231 1934 +1297 p2porg 0xb26f9666... BloXroute Regulated
13862200 3 3061 1764 +1297 p2porg 0x8db2a99d... Flashbots
13856600 0 3012 1718 +1294 ether.fi 0xb26f9666... Titan Relay
13862439 5 3089 1795 +1294 p2porg 0xb26f9666... BloXroute Max Profit
13860577 6 3104 1810 +1294 nethermind_lido 0x856b0004... BloXroute Max Profit
13861086 9 3150 1857 +1293 blockdaemon_lido 0xb26f9666... Titan Relay
13859315 3 3057 1764 +1293 0x8db2a99d... Aestus
13862411 6 3102 1810 +1292 p2porg 0x853b0078... BloXroute Max Profit
13860008 8 3132 1841 +1291 whale_0x8ebd 0xb26f9666... Titan Relay
13861114 8 3132 1841 +1291 whale_0x8ebd Local Local
13857292 6 3101 1810 +1291 kiln 0x8527d16c... Ultra Sound
13857747 0 3006 1718 +1288 ether.fi 0x856b0004... Agnostic Gnosis
13863225 1 3021 1733 +1288 coinbase 0x8db2a99d... Aestus
13860177 4 3067 1780 +1287 p2porg 0x850b00e0... BloXroute Max Profit
13857122 7 3113 1826 +1287 whale_0xedc6 0x853b0078... Ultra Sound
13861054 10 3159 1872 +1287 0x853b0078... Aestus
13858624 1 3020 1733 +1287 whale_0x8ebd 0x853b0078... Agnostic Gnosis
13862114 1 3020 1733 +1287 0xb67eaa5e... Aestus
13859051 2 3035 1749 +1286 everstake 0x8a850621... Titan Relay
13861759 7 3112 1826 +1286 lido 0xac23f8cc... Flashbots
13858589 5 3081 1795 +1286 everstake 0x857b0038... Ultra Sound
13860648 0 3003 1718 +1285 stakingfacilities_lido Local Local
13861088 0 3003 1718 +1285 whale_0x8ebd 0x856b0004... Aestus
13863169 0 3002 1718 +1284 whale_0x8ebd 0x856b0004... BloXroute Max Profit
13860637 7 3110 1826 +1284 p2porg Local Local
13856985 1 3017 1733 +1284 kiln 0xb26f9666... BloXroute Max Profit
13860513 7 3108 1826 +1282 figment 0xb26f9666... Titan Relay
13859400 5 3077 1795 +1282 whale_0x8ebd 0xb26f9666... Titan Relay
13861098 5 3077 1795 +1282 Local Local
13863516 1 3015 1733 +1282 kiln 0xb26f9666... BloXroute Max Profit
13859643 2 3030 1749 +1281 p2porg 0x856b0004... Agnostic Gnosis
13856898 1 3013 1733 +1280 whale_0x8ebd 0x856b0004... BloXroute Max Profit
13861416 2 3028 1749 +1279 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
13863164 0 2997 1718 +1279 p2porg 0xb67eaa5e... BloXroute Regulated
13860712 5 3073 1795 +1278 kiln 0xb67eaa5e... BloXroute Max Profit
13858335 5 3073 1795 +1278 lido 0x88a53ec4... BloXroute Regulated
13858913 4 3057 1780 +1277 ether.fi 0x853b0078... Ultra Sound
13857312 0 2994 1718 +1276 blockdaemon 0x88a53ec4... BloXroute Regulated
13861109 0 2994 1718 +1276 p2porg 0x823e0146... BloXroute Max Profit
13857218 0 2994 1718 +1276 kiln 0xb26f9666... BloXroute Max Profit
13861041 7 3102 1826 +1276 p2porg Local Local
13857430 5 3071 1795 +1276 whale_0x8ebd 0x8527d16c... Ultra Sound
13862802 1 3009 1733 +1276 everstake 0x88a53ec4... BloXroute Regulated
13862322 5 3070 1795 +1275 whale_0x8ebd Local Local
13863414 0 2992 1718 +1274 kiln 0x8db2a99d... Flashbots
13856799 0 2991 1718 +1273 p2porg 0xb26f9666... BloXroute Max Profit
13858956 7 3099 1826 +1273 whale_0x8ebd Local Local
13862517 7 3099 1826 +1273 whale_0x8ebd 0x8db2a99d... Flashbots
13858228 3 3037 1764 +1273 whale_0x3b9e 0xb26f9666... Titan Relay
13862478 5 3067 1795 +1272 ether.fi 0x8db2a99d... BloXroute Max Profit
13858170 5 3067 1795 +1272 kiln 0x88a53ec4... BloXroute Max Profit
13860693 0 2989 1718 +1271 kiln 0x88a53ec4... BloXroute Regulated
13860098 0 2989 1718 +1271 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
13858741 0 2989 1718 +1271 whale_0xedc6 0xb26f9666... BloXroute Max Profit
13861753 2 3019 1749 +1270 kiln 0x823e0146... Flashbots
13858909 0 2988 1718 +1270 kiln 0x88a53ec4... BloXroute Regulated
13856703 1 3003 1733 +1270 ether.fi 0xb26f9666... Titan Relay
13860119 6 3080 1810 +1270 whale_0x8ebd Local Local
13857431 0 2986 1718 +1268 whale_0x8ebd 0x8527d16c... Ultra Sound
13857361 0 2986 1718 +1268 whale_0x7791 0xb26f9666... Titan Relay
13861549 5 3063 1795 +1268 kiln 0x856b0004... Agnostic Gnosis
13862731 11 3155 1888 +1267 kiln 0xb67eaa5e... BloXroute Regulated
13863067 7 3093 1826 +1267 figment Local Local
13859909 5 3062 1795 +1267 whale_0x8ebd 0x8a850621... Titan Relay
13858325 1 2999 1733 +1266 kiln 0x853b0078... Agnostic Gnosis
13859850 15 3215 1949 +1266 ether.fi 0xb7c5e609... BloXroute Max Profit
13862038 0 2983 1718 +1265 kiln Local Local
13859432 0 2982 1718 +1264 kiln 0x823e0146... Flashbots
13859283 5 3059 1795 +1264 whale_0x8ebd 0xb26f9666... Titan Relay
13862470 1 2997 1733 +1264 whale_0x7791 0x8db2a99d... Flashbots
13860199 8 3105 1841 +1264 p2porg Local Local
13858554 0 2980 1718 +1262 p2porg 0xb26f9666... Aestus
13861634 7 3088 1826 +1262 kiln Local Local
13862578 10 3134 1872 +1262 everstake 0xb26f9666... Titan Relay
13861743 0 2979 1718 +1261 whale_0xedc6 0x852b0070... Agnostic Gnosis
13861542 5 3056 1795 +1261 kiln 0xac23f8cc... Aestus
13857252 0 2978 1718 +1260 everstake 0xb67eaa5e... BloXroute Max Profit
13859434 8 3101 1841 +1260 whale_0x8ebd 0x8527d16c... Ultra Sound
13860770 5 3054 1795 +1259 p2porg 0xb67eaa5e... Aestus
13856948 6 3069 1810 +1259 p2porg 0x853b0078... Ultra Sound
13859402 0 2976 1718 +1258 whale_0x8ebd 0x852b0070... Agnostic Gnosis
13861485 12 3161 1903 +1258 kiln 0xb7c5e609... BloXroute Max Profit
13863374 6 3068 1810 +1258 kiln 0x8db2a99d... Flashbots
13856678 3 3021 1764 +1257 whale_0x8ebd 0x856b0004... BloXroute Max Profit
13861495 10 3129 1872 +1257 figment Local Local
13857855 1 2990 1733 +1257 kiln 0x8db2a99d... Flashbots
13862066 1 2988 1733 +1255 whale_0x8ebd 0xb26f9666... BloXroute Regulated
13858494 0 2972 1718 +1254 kiln 0x8527d16c... Ultra Sound
13859331 1 2985 1733 +1252 whale_0x8ebd 0xb26f9666... BloXroute Regulated
13859281 0 2969 1718 +1251 whale_0xedc6 0xb26f9666... BloXroute Regulated
13856894 0 2969 1718 +1251 everstake 0x8a850621... Titan Relay
13858188 7 3077 1826 +1251 kiln 0x853b0078... Aestus
13858339 5 3046 1795 +1251 ether.fi 0xb26f9666... Titan Relay
13861699 8 3092 1841 +1251 ether.fi 0x853b0078... Titan Relay
13861682 0 2968 1718 +1250 whale_0x7791 0xb26f9666... Titan Relay
13857127 0 2968 1718 +1250 kiln 0xb26f9666... BloXroute Regulated
13857738 0 2968 1718 +1250 kiln 0x8527d16c... Ultra Sound
13863349 1 2982 1733 +1249 everstake 0x853b0078... Aestus
13863087 0 2966 1718 +1248 whale_0x8ebd Local Local
13862363 0 2966 1718 +1248 ether.fi 0x823e0146... Flashbots
13861614 0 2966 1718 +1248 solo_stakers 0x8db2a99d... Aestus
13857866 0 2965 1718 +1247 kiln 0xb26f9666... Aestus
13859570 5 3042 1795 +1247 whale_0x7c1b 0xb26f9666... Titan Relay
13857597 3 3011 1764 +1247 ether.fi 0x856b0004... Agnostic Gnosis
13859782 1 2980 1733 +1247 kiln 0x88a53ec4... BloXroute Max Profit
13863416 6 3057 1810 +1247 kiln 0x88a53ec4... BloXroute Max Profit
13862584 5 3041 1795 +1246 kiln 0xb26f9666... Aestus
13856684 5 3040 1795 +1245 whale_0xedc6 0x856b0004... BloXroute Max Profit
13861101 2 2993 1749 +1244 everstake 0x88a53ec4... BloXroute Max Profit
13859982 0 2962 1718 +1244 kiln 0x852b0070... BloXroute Max Profit
13863449 6 3054 1810 +1244 p2porg Local Local
13858073 0 2961 1718 +1243 everstake 0xb26f9666... Titan Relay
13861644 3 3007 1764 +1243 everstake 0xb67eaa5e... BloXroute Max Profit
13856764 0 2960 1718 +1242 stader 0x8527d16c... Ultra Sound
13860994 0 2960 1718 +1242 whale_0x8ebd 0x852b0070... Agnostic Gnosis
13858519 6 3052 1810 +1242 solo_stakers 0xac23f8cc... BloXroute Max Profit
13859636 0 2959 1718 +1241 kiln 0x8527d16c... Ultra Sound
13859694 0 2959 1718 +1241 kiln 0x856b0004... Agnostic Gnosis
13861525 5 3035 1795 +1240 coinbase Local Local
13860963 5 3034 1795 +1239 kiln 0xb26f9666... BloXroute Max Profit
13860481 0 2956 1718 +1238 0xb211df49... Aestus
13860491 0 2955 1718 +1237 kiln 0xb67eaa5e... BloXroute Regulated
13856849 1 2969 1733 +1236 ether.fi 0x85fb0503... BloXroute Max Profit
13858004 6 3046 1810 +1236 stakingfacilities_lido 0x850b00e0... BloXroute Max Profit
13859172 0 2953 1718 +1235 kiln 0x99dbe3e8... Flashbots
13859662 0 2953 1718 +1235 kiln 0x852b0070... Aestus
13856624 0 2953 1718 +1235 kiln 0x85fb0503... BloXroute Max Profit
13857452 0 2953 1718 +1235 kiln 0x8db2a99d... Flashbots
13860902 0 2952 1718 +1234 kiln 0xa412c4b8... Titan Relay
13862606 5 3029 1795 +1234 0xb26f9666... Titan Relay
13858083 7 3059 1826 +1233 whale_0x8ebd 0x856b0004... Aestus
13862406 1 2966 1733 +1233 whale_0x8ebd 0x823e0146... Flashbots
13858192 6 3042 1810 +1232 kiln 0x8527d16c... Ultra Sound
13858479 6 3042 1810 +1232 everstake 0x853b0078... Aestus
13859923 2 2980 1749 +1231 kiln 0x850b00e0... BloXroute Max Profit
13860321 0 2949 1718 +1231 everstake Local Local
13861906 10 3103 1872 +1231 everstake 0x88a53ec4... BloXroute Regulated
13863215 1 2964 1733 +1231 kiln Local Local
13862524 6 3040 1810 +1230 kiln 0x8db2a99d... BloXroute Max Profit
13857797 4 3009 1780 +1229 kiln 0x8527d16c... Ultra Sound
13862817 9 3086 1857 +1229 coinbase 0x853b0078... Aestus
13862264 11 3116 1888 +1228 0xb26f9666... BloXroute Max Profit
13863557 11 3116 1888 +1228 whale_0xdd6c 0xb26f9666... Titan Relay
13856691 4 3006 1780 +1226 kiln 0x88a53ec4... BloXroute Max Profit
13860832 5 3021 1795 +1226 everstake 0xb26f9666... Titan Relay
13858696 3 2990 1764 +1226 everstake 0x88857150... Ultra Sound
13856935 6 3036 1810 +1226 kiln 0xb26f9666... Aestus
13856647 5 3019 1795 +1224 lido 0x88a53ec4... BloXroute Regulated
13857413 6 3034 1810 +1224 everstake 0x850b00e0... BloXroute Max Profit
13856913 2 2972 1749 +1223 whale_0x8ebd 0x853b0078... Agnostic Gnosis
13857227 12 3126 1903 +1223 ether.fi 0xb26f9666... Titan Relay
13859999 14 3156 1934 +1222 p2porg 0x855b00e6... BloXroute Max Profit
13859486 8 3063 1841 +1222 whale_0x8ebd Local Local
13863491 1 2953 1733 +1220 coinbase 0xb26f9666... BloXroute Max Profit
13857133 1 2950 1733 +1217 whale_0xdd6c 0xb26f9666... BloXroute Regulated
13858263 8 3058 1841 +1217 kiln 0x853b0078... Aestus
13859151 8 3058 1841 +1217 whale_0x8ebd 0x850b00e0... Flashbots
13860260 0 2934 1718 +1216 whale_0x8ebd Local Local
13863554 0 2934 1718 +1216 everstake 0xb26f9666... Titan Relay
13860560 12 3119 1903 +1216 0x850b00e0... BloXroute Max Profit
Total anomalies: 467

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