Wed, Mar 11, 2026 Latest

Propagation anomalies

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-11' AND slot_start_date_time < '2026-03-11'::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-11' AND slot_start_date_time < '2026-03-11'::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-11' AND slot_start_date_time < '2026-03-11'::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-11' AND slot_start_date_time < '2026-03-11'::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-11' AND slot_start_date_time < '2026-03-11'::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-11' AND slot_start_date_time < '2026-03-11'::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-11' AND slot_start_date_time < '2026-03-11'::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-11' AND slot_start_date_time < '2026-03-11'::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,172
MEV blocks: 5,967 (83.2%)
Local blocks: 1,205 (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 = 1733.8 + 12.76 × blob_count (R² = 0.006)
Residual σ = 629.6ms
Anomalies (>2σ slow): 401 (5.6%)
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
13867805 0 7208 1734 +5474 whale_0x1980 Local Local
13870004 0 6379 1734 +4645 solo_stakers Local Local
13865337 0 5531 1734 +3797 whale_0xba8f Local Local
13866560 0 5349 1734 +3615 bridgetower_lido Local Local
13869600 0 4995 1734 +3261 upbit Local Local
13870496 0 4723 1734 +2989 upbit Local Local
13867104 0 4568 1734 +2834 upbit Local Local
13866564 0 4243 1734 +2509 lido Local Local
13868334 0 4160 1734 +2426 whale_0x8ebd Local Local
13864160 0 4106 1734 +2372 ether.fi Local Local
13865546 5 3991 1798 +2193 lido 0x88a53ec4... BloXroute Regulated
13866848 0 3855 1734 +2121 whale_0xd5e9 Local Local
13865381 0 3824 1734 +2090 solo_stakers Local Local
13866314 1 3766 1747 +2019 whale_0x8ebd 0x856b0004... Aestus
13869703 1 3766 1747 +2019 whale_0x8ebd 0x855b00e6... BloXroute Max Profit
13867326 0 3753 1734 +2019 ether.fi 0x852b0070... Aestus
13865792 0 3745 1734 +2011 stakingfacilities_lido Local Local
13868469 2 3721 1759 +1962 whale_0x8ebd 0x853b0078... BloXroute Max Profit
13866688 2 3690 1759 +1931 blockdaemon_lido 0x850b00e0... BloXroute Regulated
13870760 0 3654 1734 +1920 lido 0x851b00b1... BloXroute Max Profit
13870234 7 3724 1823 +1901 whale_0x8ebd 0x855b00e6... BloXroute Max Profit
13866794 6 3677 1810 +1867 whale_0x8ebd Local Local
13868339 3 3580 1772 +1808 whale_0xd9e4 0xb67eaa5e... Aestus
13869848 1 3539 1747 +1792 blockdaemon 0x857b0038... Ultra Sound
13869031 0 3512 1734 +1778 whale_0x8ebd 0x8527d16c... Ultra Sound
13863660 3 3540 1772 +1768 stakefish Local Local
13870007 5 3548 1798 +1750 whale_0x8ebd 0xb4ce6162... Ultra Sound
13869735 6 3560 1810 +1750 binance 0xb4ce6162... Ultra Sound
13870719 6 3553 1810 +1743 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13865453 5 3539 1798 +1741 whale_0x8ebd Local Local
13869012 6 3538 1810 +1728 whale_0x8ebd 0x857b0038... Ultra Sound
13869056 0 3460 1734 +1726 whale_0x8713 Local Local
13869548 5 3517 1798 +1719 whale_0x8ebd 0x8a850621... Titan Relay
13865323 5 3515 1798 +1717 blockdaemon Local Local
13870513 1 3447 1747 +1700 whale_0x8ebd 0x8527d16c... Ultra Sound
13866622 3 3471 1772 +1699 blockdaemon 0x850b00e0... BloXroute Max Profit
13870675 5 3490 1798 +1692 binance 0xb4ce6162... Ultra Sound
13868968 4 3475 1785 +1690 blockdaemon 0x850b00e0... BloXroute Max Profit
13865322 4 3473 1785 +1688 nethermind_lido 0xb26f9666... Aestus
13866777 2 3430 1759 +1671 lido Local Local
13868847 5 3468 1798 +1670 binance 0x8a850621... Titan Relay
13869979 0 3402 1734 +1668 whale_0xdd6c 0x8527d16c... Ultra Sound
13866481 6 3473 1810 +1663 whale_0x8ebd Local Local
13865203 5 3455 1798 +1657 nethermind_lido 0xb26f9666... Titan Relay
13863695 5 3454 1798 +1656 blockdaemon 0x8a850621... Titan Relay
13864974 0 3389 1734 +1655 whale_0x8ebd Local Local
13865580 0 3385 1734 +1651 ether.fi 0x851b00b1... BloXroute Max Profit
13865964 8 3484 1836 +1648 lido 0x853b0078... BloXroute Max Profit
13865074 0 3381 1734 +1647 blockdaemon_lido 0x855b00e6... Ultra Sound
13863750 6 3457 1810 +1647 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13869228 1 3391 1747 +1644 nethermind_lido 0xb26f9666... Titan Relay
13869627 3 3410 1772 +1638 binance 0x82c466b9... Ultra Sound
13864890 7 3445 1823 +1622 stakingfacilities_lido 0xb67eaa5e... BloXroute Regulated
13869108 1 3362 1747 +1615 whale_0xdc8d 0x850b00e0... BloXroute Regulated
13869784 12 3502 1887 +1615 blockdaemon 0x855b00e6... BloXroute Max Profit
13865547 8 3442 1836 +1606 0x853b0078... Aestus
13864935 5 3400 1798 +1602 whale_0xdc8d 0xb67eaa5e... BloXroute Regulated
13867578 6 3410 1810 +1600 lido 0xb26f9666... Titan Relay
13867465 5 3394 1798 +1596 coinbase 0x8db2a99d... Aestus
13867538 13 3496 1900 +1596 blockdaemon 0x8a850621... Titan Relay
13866403 0 3329 1734 +1595 solo_stakers Local Local
13869644 6 3405 1810 +1595 whale_0x8ebd 0xb4ce6162... Ultra Sound
13866879 1 3340 1747 +1593 coinbase 0x8db2a99d... Aestus
13863800 1 3335 1747 +1588 lido 0xb67eaa5e... BloXroute Regulated
13869586 1 3333 1747 +1586 whale_0xdc8d 0xb26f9666... Titan Relay
13865471 0 3311 1734 +1577 blockdaemon 0x855b00e6... BloXroute Max Profit
13868498 0 3311 1734 +1577 lido 0x857b0038... Ultra Sound
13867137 7 3400 1823 +1577 whale_0x9212 0x855b00e6... BloXroute Max Profit
13869124 5 3372 1798 +1574 blockdaemon 0x8527d16c... Ultra Sound
13868878 0 3308 1734 +1574 luno 0x852b0070... Ultra Sound
13867669 0 3303 1734 +1569 blockdaemon 0x88857150... Ultra Sound
13869377 0 3302 1734 +1568 blockdaemon_lido 0x851b00b1... BloXroute Max Profit
13869253 1 3312 1747 +1565 blockdaemon 0x853b0078... BloXroute Regulated
13869220 8 3401 1836 +1565 whale_0x8ebd 0xb4ce6162... Ultra Sound
13867856 21 3565 2002 +1563 blockdaemon 0xb67eaa5e... BloXroute Regulated
13870644 5 3360 1798 +1562 luno 0xb26f9666... Titan Relay
13869984 3 3333 1772 +1561 p2porg 0x856b0004... BloXroute Max Profit
13866246 7 3380 1823 +1557 whale_0x8ebd 0x855b00e6... Flashbots
13864427 1 3303 1747 +1556 lido 0xac23f8cc... Aestus
13866648 1 3299 1747 +1552 blockdaemon 0x8a850621... Titan Relay
13866763 5 3350 1798 +1552 blockdaemon_lido 0xb26f9666... Titan Relay
13870380 3 3324 1772 +1552 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
13868040 0 3284 1734 +1550 luno 0x850b00e0... BloXroute Regulated
13864280 6 3359 1810 +1549 luno 0x853b0078... Titan Relay
13866659 0 3281 1734 +1547 blockdaemon 0xb26f9666... Titan Relay
13866989 6 3356 1810 +1546 whale_0xdc8d 0x850b00e0... BloXroute Regulated
13864091 0 3279 1734 +1545 blockdaemon_lido 0xb67eaa5e... Titan Relay
13868551 6 3352 1810 +1542 luno 0xb26f9666... Titan Relay
13870180 0 3275 1734 +1541 0xb67eaa5e... BloXroute Regulated
13867592 5 3335 1798 +1537 blockdaemon 0x8a850621... Titan Relay
13868985 0 3269 1734 +1535 whale_0xdc8d 0x83d6a6ab... Titan Relay
13869229 5 3328 1798 +1530 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13864636 5 3328 1798 +1530 luno 0xb67eaa5e... BloXroute Regulated
13868590 3 3300 1772 +1528 blockdaemon 0xb26f9666... Titan Relay
13869537 5 3325 1798 +1527 blockdaemon 0x855b00e6... BloXroute Max Profit
13865640 0 3261 1734 +1527 0xb67eaa5e... BloXroute Regulated
13864991 3 3297 1772 +1525 0x88a53ec4... BloXroute Regulated
13863653 4 3309 1785 +1524 everstake 0xb67eaa5e... BloXroute Max Profit
13870568 5 3320 1798 +1522 whale_0xdc8d 0x88a53ec4... BloXroute Max Profit
13863712 1 3268 1747 +1521 p2porg 0x853b0078... Aestus
13863862 3 3292 1772 +1520 nethermind_lido 0x850b00e0... BloXroute Max Profit
13865644 0 3250 1734 +1516 0xba003e46... BloXroute Regulated
13866743 0 3247 1734 +1513 luno Local Local
13867180 4 3298 1785 +1513 blockdaemon_lido 0x853b0078... BloXroute Max Profit
13863909 2 3272 1759 +1513 blockdaemon_lido 0xb67eaa5e... Titan Relay
13865910 0 3236 1734 +1502 blockdaemon Local Local
13866048 6 3310 1810 +1500 whale_0x3e69 Local Local
13864544 1 3243 1747 +1496 gateway.fmas_lido 0xac23f8cc... BloXroute Max Profit
13868589 7 3319 1823 +1496 blockdaemon_lido 0x8db2a99d... BloXroute Regulated
13868043 0 3227 1734 +1493 nethermind_lido 0x851b00b1... BloXroute Max Profit
13864715 5 3290 1798 +1492 blockdaemon 0x853b0078... Titan Relay
13866463 5 3290 1798 +1492 lido 0xac23f8cc... BloXroute Max Profit
13866473 3 3264 1772 +1492 whale_0x8ebd Local Local
13864591 6 3302 1810 +1492 luno 0xb26f9666... Titan Relay
13870068 0 3224 1734 +1490 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13869148 6 3300 1810 +1490 blockdaemon_lido 0x853b0078... BloXroute Max Profit
13869279 0 3221 1734 +1487 whale_0xdc8d 0xb26f9666... Titan Relay
13863983 5 3279 1798 +1481 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
13867429 3 3253 1772 +1481 revolut 0x856b0004... Ultra Sound
13869386 6 3290 1810 +1480 kiln 0x88a53ec4... Aestus
13866187 17 3430 1951 +1479 whale_0x8ebd 0x853b0078... BloXroute Max Profit
13869907 3 3249 1772 +1477 p2porg 0x850b00e0... BloXroute Regulated
13866643 6 3286 1810 +1476 blockdaemon Local Local
13867963 0 3207 1734 +1473 nethermind_lido 0x852b0070... BloXroute Max Profit
13868597 5 3270 1798 +1472 gateway.fmas_lido 0x855b00e6... BloXroute Max Profit
13866645 0 3206 1734 +1472 nethermind_lido 0x88a53ec4... BloXroute Max Profit
13870771 0 3204 1734 +1470 nethermind_lido 0x8db2a99d... Flashbots
13865531 1 3216 1747 +1469 everstake 0xac23f8cc... Aestus
13870447 1 3216 1747 +1469 nethermind_lido 0x8db2a99d... Flashbots
13864366 5 3267 1798 +1469 p2porg 0x850b00e0... BloXroute Regulated
13863945 0 3200 1734 +1466 revolut Local Local
13866177 0 3198 1734 +1464 stakingfacilities_lido 0x852b0070... Aestus
13867335 13 3363 1900 +1463 binance 0x8db2a99d... Aestus
13866148 8 3299 1836 +1463 ether.fi 0x850b00e0... BloXroute Max Profit
13868552 0 3196 1734 +1462 blockdaemon_lido 0x853b0078... BloXroute Max Profit
13866171 5 3259 1798 +1461 0xb67eaa5e... Aestus
13868680 0 3195 1734 +1461 blockdaemon_lido 0xa0366397... Ultra Sound
13863607 3 3233 1772 +1461 blockdaemon 0x82c466b9... Titan Relay
13869957 3 3232 1772 +1460 nethermind_lido 0x855b00e6... BloXroute Max Profit
13866968 1 3206 1747 +1459 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
13865974 0 3192 1734 +1458 lido 0xac23f8cc... Aestus
13867240 6 3266 1810 +1456 bitstamp 0x856b0004... BloXroute Max Profit
13863861 10 3316 1861 +1455 kiln 0x8db2a99d... BloXroute Max Profit
13867142 1 3200 1747 +1453 nethermind_lido 0x88a53ec4... BloXroute Max Profit
13868702 11 3327 1874 +1453 revolut 0xac23f8cc... BloXroute Regulated
13867677 6 3263 1810 +1453 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13869506 1 3199 1747 +1452 nethermind_lido 0x853b0078... BloXroute Regulated
13868434 0 3186 1734 +1452 stakingfacilities_lido 0x856b0004... BloXroute Max Profit
13868391 3 3224 1772 +1452 numic_lido 0x8db2a99d... Flashbots
13868445 1 3197 1747 +1450 revolut 0x8527d16c... Ultra Sound
13866296 0 3184 1734 +1450 p2porg 0x99dbe3e8... Agnostic Gnosis
13867316 10 3311 1861 +1450 nethermind_lido 0x856b0004... BloXroute Max Profit
13863677 3 3221 1772 +1449 nethermind_lido 0x88a53ec4... BloXroute Max Profit
13867748 0 3182 1734 +1448 kiln 0xa412c4b8... Flashbots
13865931 1 3193 1747 +1446 blockdaemon_lido 0x853b0078... Titan Relay
13868646 1 3190 1747 +1443 blockdaemon 0x88857150... Ultra Sound
13866359 5 3241 1798 +1443 whale_0x8ebd Local Local
13869028 0 3177 1734 +1443 nethermind_lido 0x823e0146... Ultra Sound
13866515 0 3175 1734 +1441 blockdaemon 0x850b00e0... BloXroute Regulated
13868191 1 3184 1747 +1437 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
13867778 5 3234 1798 +1436 blockdaemon 0x88857150... Ultra Sound
13863732 0 3170 1734 +1436 blockdaemon_lido 0x88a53ec4... BloXroute Max Profit
13868409 2 3195 1759 +1436 p2porg 0x850b00e0... BloXroute Regulated
13868010 1 3181 1747 +1434 whale_0x8ebd 0xb26f9666... Titan Relay
13868593 2 3191 1759 +1432 lido 0x8db2a99d... Flashbots
13864360 6 3242 1810 +1432 p2porg 0x850b00e0... BloXroute Regulated
13865461 1 3177 1747 +1430 kiln 0x8db2a99d... Flashbots
13865246 0 3164 1734 +1430 p2porg 0xac23f8cc... Aestus
13866430 8 3266 1836 +1430 everstake 0x8db2a99d... Aestus
13866477 1 3176 1747 +1429 nethermind_lido 0xac23f8cc... Aestus
13863764 1 3176 1747 +1429 blockdaemon_lido 0x85fb0503... BloXroute Max Profit
13868018 0 3161 1734 +1427 nethermind_lido 0x88a53ec4... BloXroute Max Profit
13869781 5 3224 1798 +1426 p2porg 0x850b00e0... BloXroute Regulated
13864229 8 3262 1836 +1426 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13867647 14 3337 1912 +1425 solo_stakers 0x8527d16c... Ultra Sound
13868817 1 3171 1747 +1424 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13866601 1 3171 1747 +1424 whale_0x8ebd Local Local
13867082 1 3170 1747 +1423 gateway.fmas_lido 0x8527d16c... Ultra Sound
13867315 1 3170 1747 +1423 gateway.fmas_lido 0x856b0004... BloXroute Max Profit
13864415 0 3154 1734 +1420 everstake 0x852b0070... Agnostic Gnosis
13870125 2 3179 1759 +1420 bitstamp 0x856b0004... BloXroute Max Profit
13870733 0 3153 1734 +1419 numic_lido 0x8527d16c... Ultra Sound
13865893 11 3293 1874 +1419 blockdaemon_lido 0xb67eaa5e... Titan Relay
13866850 13 3317 1900 +1417 blockdaemon_lido 0x88857150... Ultra Sound
13864583 7 3239 1823 +1416 p2porg 0x855b00e6... BloXroute Max Profit
13863788 1 3161 1747 +1414 lido 0x85fb0503... BloXroute Max Profit
13865154 2 3173 1759 +1414 whale_0x8ebd 0xac23f8cc... Aestus
13866615 6 3224 1810 +1414 blockdaemon_lido 0xb67eaa5e... Titan Relay
13870491 0 3147 1734 +1413 gateway.fmas_lido 0x8527d16c... Ultra Sound
13864921 0 3144 1734 +1410 nethermind_lido Local Local
13870743 3 3182 1772 +1410 blockdaemon_lido 0x8db2a99d... Ultra Sound
13864623 8 3245 1836 +1409 blockdaemon_lido 0x8527d16c... Ultra Sound
13868183 1 3154 1747 +1407 nethermind_lido 0xac23f8cc... Flashbots
13864161 0 3141 1734 +1407 kraken 0x83d6a6ab... Flashbots
13868894 0 3139 1734 +1405 lido 0xb26f9666... Titan Relay
13866165 13 3304 1900 +1404 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13868700 5 3201 1798 +1403 stakingfacilities_lido 0x853b0078... BloXroute Max Profit
13867172 4 3188 1785 +1403 p2porg 0x850b00e0... BloXroute Regulated
13868767 6 3213 1810 +1403 p2porg 0x853b0078... Titan Relay
13863680 1 3149 1747 +1402 nethermind_lido 0x855b00e6... BloXroute Max Profit
13864230 5 3200 1798 +1402 bitstamp Local Local
13868219 8 3237 1836 +1401 p2porg 0x850b00e0... BloXroute Max Profit
13864073 4 3184 1785 +1399 ether.fi 0x8db2a99d... BloXroute Max Profit
13865347 3 3165 1772 +1393 p2porg 0x850b00e0... BloXroute Max Profit
13866692 0 3125 1734 +1391 gateway.fmas_lido Local Local
13865772 6 3199 1810 +1389 stakingfacilities_lido 0x853b0078... BloXroute Max Profit
13869691 1 3135 1747 +1388 figment 0x855b00e6... BloXroute Max Profit
13863745 6 3198 1810 +1388 p2porg 0x855b00e6... BloXroute Max Profit
13869476 0 3121 1734 +1387 gateway.fmas_lido 0x851b00b1... BloXroute Max Profit
13863692 0 3121 1734 +1387 p2porg 0xb26f9666... Titan Relay
13867352 0 3120 1734 +1386 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13864532 3 3158 1772 +1386 kiln 0xb26f9666... Titan Relay
13866570 0 3119 1734 +1385 lido 0xb26f9666... BloXroute Regulated
13866235 5 3179 1798 +1381 p2porg 0x850b00e0... BloXroute Regulated
13867102 1 3126 1747 +1379 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13867851 5 3177 1798 +1379 kiln 0x88510a78... Flashbots
13866138 6 3189 1810 +1379 nethermind_lido 0x853b0078... BloXroute Max Profit
13863748 6 3187 1810 +1377 kiln 0xb67eaa5e... BloXroute Max Profit
13867411 0 3110 1734 +1376 0xb67eaa5e... BloXroute Regulated
13864556 5 3173 1798 +1375 whale_0x8ebd 0x93b11bec... Flashbots
13867475 0 3106 1734 +1372 p2porg 0x8db2a99d... Aestus
13868361 1 3118 1747 +1371 blockdaemon 0x8db2a99d... BloXroute Max Profit
13864832 4 3156 1785 +1371 blockscape_lido 0xac23f8cc... BloXroute Max Profit
13866082 1 3117 1747 +1370 coinbase Local Local
13867508 0 3103 1734 +1369 0xb67eaa5e... Aestus
13867914 0 3102 1734 +1368 p2porg 0x88a53ec4... BloXroute Max Profit
13863900 8 3203 1836 +1367 p2porg 0x88a53ec4... BloXroute Max Profit
13867092 1 3113 1747 +1366 whale_0xdd6c 0xb26f9666... Titan Relay
13867019 0 3100 1734 +1366 p2porg 0x853b0078... Aestus
13865790 0 3099 1734 +1365 ether.fi 0xac23f8cc... Flashbots
13869265 8 3201 1836 +1365 p2porg 0x850b00e0... BloXroute Regulated
13868796 10 3225 1861 +1364 gateway.fmas_lido 0x88857150... Ultra Sound
13870702 1 3110 1747 +1363 whale_0x8ebd 0x856b0004... Agnostic Gnosis
13863798 10 3224 1861 +1363 p2porg 0xb67eaa5e... BloXroute Max Profit
13866860 5 3159 1798 +1361 whale_0x8ebd Local Local
13866887 0 3095 1734 +1361 whale_0x8ebd Local Local
13869736 1 3107 1747 +1360 p2porg 0xb26f9666... Aestus
13869728 0 3094 1734 +1360 everstake 0xb4ce6162... Ultra Sound
13870198 5 3157 1798 +1359 whale_0x8ebd 0x856b0004... Ultra Sound
13866799 5 3157 1798 +1359 kiln 0x85fb0503... BloXroute Max Profit
13864437 5 3155 1798 +1357 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
13865822 1 3103 1747 +1356 whale_0xd84f 0xac23f8cc... Aestus
13865496 13 3256 1900 +1356 kiln 0x850b00e0... BloXroute Max Profit
13866751 1 3099 1747 +1352 p2porg 0x850b00e0... BloXroute Regulated
13867870 1 3098 1747 +1351 ether.fi 0x8527d16c... Ultra Sound
13864893 9 3200 1849 +1351 kiln 0x856b0004... Aestus
13866825 0 3085 1734 +1351 whale_0x8ebd Local Local
13869894 8 3186 1836 +1350 p2porg 0x850b00e0... BloXroute Max Profit
13870637 1 3096 1747 +1349 figment 0x823e0146... BloXroute Max Profit
13870072 4 3134 1785 +1349 p2porg 0x850b00e0... BloXroute Max Profit
13867481 1 3094 1747 +1347 p2porg 0x8527d16c... Ultra Sound
13869311 5 3145 1798 +1347 p2porg 0xac23f8cc... BloXroute Max Profit
13866657 0 3080 1734 +1346 figment 0xb26f9666... Titan Relay
13863853 1 3092 1747 +1345 whale_0xedc6 0x856b0004... Aestus
13870219 3 3117 1772 +1345 figment 0x8db2a99d... Aestus
13870520 2 3104 1759 +1345 p2porg 0x856b0004... Agnostic Gnosis
13866911 6 3155 1810 +1345 gateway.fmas_lido 0xac23f8cc... Aestus
13865891 6 3155 1810 +1345 p2porg Local Local
13869138 10 3206 1861 +1345 blockdaemon 0x856b0004... BloXroute Max Profit
13870102 3 3115 1772 +1343 whale_0x8ebd 0x823e0146... Ultra Sound
13869722 0 3075 1734 +1341 blockdaemon 0x88857150... Ultra Sound
13868350 1 3087 1747 +1340 p2porg 0x853b0078... Agnostic Gnosis
13867341 4 3125 1785 +1340 ether.fi 0x850b00e0... BloXroute Max Profit
13869844 3 3112 1772 +1340 ether.fi 0xac23f8cc... Ultra Sound
13868289 3 3111 1772 +1339 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13870192 6 3149 1810 +1339 p2porg 0x853b0078... Ultra Sound
13869763 9 3186 1849 +1337 blockdaemon 0x823e0146... Ultra Sound
13864973 0 3071 1734 +1337 p2porg 0x850b00e0... BloXroute Regulated
13869739 8 3173 1836 +1337 gateway.fmas_lido 0x8527d16c... Ultra Sound
13868841 6 3147 1810 +1337 whale_0x8ebd 0x8527d16c... Ultra Sound
13868720 5 3134 1798 +1336 p2porg 0xb26f9666... Titan Relay
13870585 2 3095 1759 +1336 ether.fi 0xb26f9666... Aestus
13866907 1 3081 1747 +1334 p2porg 0xb67eaa5e... Aestus
13864066 0 3068 1734 +1334 everstake 0xac23f8cc... BloXroute Max Profit
13870704 1 3080 1747 +1333 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13866605 5 3130 1798 +1332 whale_0x8ebd 0xb67eaa5e... Aestus
13863724 1 3078 1747 +1331 figment Local Local
13866011 1 3077 1747 +1330 lido Local Local
13865915 5 3128 1798 +1330 whale_0x8ebd Local Local
13867854 0 3064 1734 +1330 ether.fi 0x99dbe3e8... Aestus
13866525 0 3064 1734 +1330 p2porg 0xb26f9666... BloXroute Regulated
13868408 20 3319 1989 +1330 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
13869638 6 3140 1810 +1330 p2porg 0x853b0078... Aestus
13866281 1 3076 1747 +1329 p2porg 0xb26f9666... BloXroute Regulated
13866837 0 3063 1734 +1329 blockdaemon Local Local
13865740 10 3190 1861 +1329 kiln Local Local
13867248 1 3074 1747 +1327 0x853b0078... BloXroute Max Profit
13866962 11 3200 1874 +1326 kiln 0xb67eaa5e... BloXroute Regulated
13868730 6 3136 1810 +1326 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
13864142 2 3083 1759 +1324 figment 0x85fb0503... BloXroute Max Profit
13866708 5 3119 1798 +1321 ether.fi Local Local
13870104 0 3055 1734 +1321 whale_0x7c1b 0x8527d16c... Ultra Sound
13869856 1 3067 1747 +1320 senseinode_lido 0x8527d16c... Ultra Sound
13868058 1 3066 1747 +1319 p2porg 0x856b0004... Aestus
13869298 5 3117 1798 +1319 p2porg 0x856b0004... BloXroute Max Profit
13869743 7 3142 1823 +1319 whale_0xedc6 0x856b0004... Aestus
13864420 1 3064 1747 +1317 lido Local Local
13869694 5 3114 1798 +1316 bitstamp 0x8527d16c... Ultra Sound
13866012 5 3113 1798 +1315 kiln Local Local
13866510 4 3100 1785 +1315 kiln 0x853b0078... Aestus
13868978 0 3048 1734 +1314 solo_stakers 0xb67eaa5e... Aestus
13865764 3 3086 1772 +1314 ether.fi Local Local
13866313 5 3110 1798 +1312 coinbase 0x8db2a99d... Aestus
13864616 6 3121 1810 +1311 whale_0x8ebd Local Local
13868812 5 3108 1798 +1310 whale_0x8ebd 0xb4ce6162... Ultra Sound
13869487 5 3107 1798 +1309 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13870798 0 3042 1734 +1308 whale_0xdd6c 0xb26f9666... Titan Relay
13867147 5 3105 1798 +1307 whale_0x8ebd 0x8db2a99d... Ultra Sound
13863997 0 3041 1734 +1307 p2porg Local Local
13864488 2 3066 1759 +1307 figment Local Local
13867371 6 3117 1810 +1307 ether.fi 0x8527d16c... Ultra Sound
13863659 6 3117 1810 +1307 everstake 0x88a53ec4... BloXroute Max Profit
13869021 4 3091 1785 +1306 whale_0x8ebd 0x853b0078... Aestus
13869288 3 3078 1772 +1306 p2porg 0x853b0078... Aestus
13869719 6 3116 1810 +1306 whale_0x8ebd 0xb26f9666... Titan Relay
13866773 0 3039 1734 +1305 p2porg 0xb67eaa5e... Aestus
13864163 8 3141 1836 +1305 p2porg 0xb26f9666... Titan Relay
13870751 3 3077 1772 +1305 ether.fi 0x8db2a99d... Aestus
13870551 6 3115 1810 +1305 ether.fi 0x85fb0503... BloXroute Max Profit
13865918 6 3115 1810 +1305 whale_0x8ebd Local Local
13866921 5 3102 1798 +1304 solo_stakers Local Local
13863999 9 3153 1849 +1304 figment 0xb26f9666... Titan Relay
13870533 2 3063 1759 +1304 0x85fb0503... BloXroute Max Profit
13865422 5 3101 1798 +1303 p2porg 0x853b0078... Aestus
13866208 4 3085 1785 +1300 ether.fi 0x853b0078... Aestus
13866295 0 3033 1734 +1299 ether.fi 0x852b0070... Aestus
13867801 0 3033 1734 +1299 whale_0x8ebd 0x856b0004... Ultra Sound
13867181 1 3044 1747 +1297 0x8527d16c... Ultra Sound
13870580 0 3031 1734 +1297 everstake 0xb4ce6162... Ultra Sound
13863962 0 3030 1734 +1296 p2porg 0x852b0070... Aestus
13867556 0 3030 1734 +1296 kiln 0xac23f8cc... Aestus
13866558 0 3028 1734 +1294 p2porg 0xb26f9666... BloXroute Max Profit
13865111 0 3028 1734 +1294 p2porg 0xb67eaa5e... BloXroute Max Profit
13866551 7 3117 1823 +1294 whale_0x8ebd Local Local
13869594 1 3040 1747 +1293 everstake 0x850b00e0... BloXroute Max Profit
13870396 1 3040 1747 +1293 everstake 0x823e0146... Aestus
13868027 5 3091 1798 +1293 ether.fi 0xb26f9666... Titan Relay
13869554 0 3027 1734 +1293 lido 0xb26f9666... Titan Relay
13865022 1 3039 1747 +1292 Local Local
13865671 3 3064 1772 +1292 whale_0x8ebd 0xb26f9666... Titan Relay
13869925 9 3140 1849 +1291 kiln 0x88a53ec4... BloXroute Regulated
13866360 4 3076 1785 +1291 p2porg 0x88a53ec4... Aestus
13870677 0 3024 1734 +1290 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13866289 4 3075 1785 +1290 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13867249 0 3023 1734 +1289 0x823e0146... Aestus
13863952 2 3048 1759 +1289 ether.fi 0x85fb0503... BloXroute Max Profit
13867265 1 3035 1747 +1288 ether.fi 0xb26f9666... Titan Relay
13869002 9 3137 1849 +1288 whale_0x8ebd 0x823e0146... Ultra Sound
13867663 12 3175 1887 +1288 0xb26f9666... BloXroute Max Profit
13867228 0 3021 1734 +1287 p2porg 0x8527d16c... Ultra Sound
13867416 6 3097 1810 +1287 p2porg 0x856b0004... Aestus
13869316 5 3084 1798 +1286 whale_0xedc6 0x856b0004... Aestus
13865000 4 3071 1785 +1286 kiln 0xb26f9666... BloXroute Max Profit
13870319 5 3083 1798 +1285 everstake 0x8527d16c... Ultra Sound
13868882 0 3017 1734 +1283 ether.fi 0x8527d16c... Ultra Sound
13870020 0 3017 1734 +1283 ether.fi 0xb26f9666... Titan Relay
13870008 6 3093 1810 +1283 whale_0x8ebd 0x856b0004... Aestus
13870747 0 3015 1734 +1281 whale_0x8ebd 0xb4ce6162... Ultra Sound
13864639 0 3015 1734 +1281 everstake Local Local
13865819 5 3077 1798 +1279 stader Local Local
13866431 8 3115 1836 +1279 kiln 0xb26f9666... Titan Relay
13865484 0 3012 1734 +1278 kiln 0xb67eaa5e... BloXroute Regulated
13866508 2 3037 1759 +1278 kiln 0xb26f9666... Aestus
13866055 7 3100 1823 +1277 0xb26f9666... BloXroute Regulated
13864614 2 3036 1759 +1277 kiln 0x88a53ec4... BloXroute Max Profit
13869397 5 3074 1798 +1276 p2porg 0x88857150... Ultra Sound
13868724 5 3074 1798 +1276 whale_0x8ebd Local Local
13869958 5 3074 1798 +1276 p2porg 0x856b0004... Ultra Sound
13868240 3 3048 1772 +1276 coinbase 0x88a53ec4... Aestus
13866279 5 3073 1798 +1275 whale_0x8ebd Local Local
13870625 3 3047 1772 +1275 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13870169 2 3033 1759 +1274 kiln 0xb26f9666... Aestus
13865867 4 3058 1785 +1273 solo_stakers 0x850b00e0... BloXroute Max Profit
13864751 8 3109 1836 +1273 lido 0x853b0078... Aestus
13866627 6 3082 1810 +1272 whale_0x8ebd 0x853b0078... BloXroute Max Profit
13870001 5 3069 1798 +1271 kiln 0x850b00e0... BloXroute Max Profit
13864301 6 3081 1810 +1271 kiln 0x823e0146... BloXroute Max Profit
13863810 0 3004 1734 +1270 whale_0x8ebd Local Local
13864593 0 3004 1734 +1270 whale_0x7791 0xb26f9666... Titan Relay
13863993 0 3004 1734 +1270 kiln 0x852b0070... BloXroute Max Profit
13868768 8 3106 1836 +1270 ether.fi 0xb26f9666... BloXroute Regulated
13870619 2 3029 1759 +1270 ether.fi 0xb26f9666... Titan Relay
13868763 1 3015 1747 +1268 whale_0x8ebd 0x856b0004... BloXroute Max Profit
13867746 0 3001 1734 +1267 gateway.fmas_lido 0xa9bd259c... Ultra Sound
13869908 3 3039 1772 +1267 ether.fi 0xb26f9666... Titan Relay
13870495 0 3000 1734 +1266 kiln 0x851b00b1... BloXroute Max Profit
13870183 8 3102 1836 +1266 abyss_finance 0x855b00e6... BloXroute Max Profit
13870566 2 3025 1759 +1266 kiln 0xb26f9666... Titan Relay
13868944 5 3063 1798 +1265 kiln 0x88a53ec4... BloXroute Max Profit
13863757 0 2999 1734 +1265 ether.fi 0x851b00b1... BloXroute Max Profit
13869191 0 2999 1734 +1265 solo_stakers 0x88a53ec4... BloXroute Max Profit
13870113 1 3011 1747 +1264 everstake 0x850b00e0... BloXroute Max Profit
13867408 1 3011 1747 +1264 ether.fi 0x856b0004... Aestus
13869863 0 2997 1734 +1263 whale_0x8ebd 0xb4ce6162... Ultra Sound
13865678 1 3009 1747 +1262 everstake Local Local
13867251 0 2996 1734 +1262 kiln 0xa0366397... Ultra Sound
13863696 0 2995 1734 +1261 kiln 0x856b0004... Agnostic Gnosis
13867407 6 3071 1810 +1261 whale_0x8ebd 0xb4ce6162... Ultra Sound
13867059 1 3007 1747 +1260 everstake Local Local
13868329 0 2994 1734 +1260 kiln 0xb67eaa5e... BloXroute Max Profit
13870175 0 2994 1734 +1260 whale_0x8ebd 0xb4ce6162... Ultra Sound
Total anomalies: 401

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