Thu, Apr 30, 2026

Propagation anomalies - 2026-04-30

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-04-30' AND slot_start_date_time < '2026-04-30'::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-04-30' AND slot_start_date_time < '2026-04-30'::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-04-30' AND slot_start_date_time < '2026-04-30'::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-04-30' AND slot_start_date_time < '2026-04-30'::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-04-30' AND slot_start_date_time < '2026-04-30'::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-04-30' AND slot_start_date_time < '2026-04-30'::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-04-30' AND slot_start_date_time < '2026-04-30'::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-04-30' AND slot_start_date_time < '2026-04-30'::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,190
MEV blocks: 6,749 (93.9%)
Local blocks: 441 (6.1%)

Anomaly detection method

The method:

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

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

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

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

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

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

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

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

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

print(f"Regression: block_ms = {intercept:.1f} + {slope:.2f} × blob_count (R² = {r_value**2:.3f})")
print(f"Residual σ = {residual_std:.1f}ms")
print(f"Anomalies (>2σ slow): {n_anomalies:,} ({pct_anomalies:.1f}%)")
Regression: block_ms = 1694.3 + 19.45 × blob_count (R² = 0.010)
Residual σ = 630.3ms
Anomalies (>2σ slow): 454 (6.3%)
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
14229054 0 11411 1694 +9717 bridgetower_lido Local Local
14228576 0 6869 1694 +5175 upbit Local Local
14227321 0 6674 1694 +4980 rocketpool Local Local
14228544 0 6364 1694 +4670 upbit Local Local
14229184 0 6331 1694 +4637 upbit Local Local
14230465 3 5971 1753 +4218 whale_0xe867 Local Local
14229216 0 5638 1694 +3944 upbit Local Local
14229397 0 5521 1694 +3827 whale_0x2ea9 Local Local
14223968 0 5333 1694 +3639 upbit Local Local
14224864 0 5292 1694 +3598 whale_0x88de Local Local
14228832 0 5270 1694 +3576 blockdaemon_lido Local Local
14223776 0 5006 1694 +3312 upbit Local Local
14224357 0 4207 1694 +2513 ether.fi Local Local
14229504 0 4051 1694 +2357 nodeset Local Local
14226349 1 3960 1714 +2246 kiln 0x857b0038... BloXroute Max Profit
14230752 2 3708 1733 +1975 0x856b0004... BloXroute Max Profit
14230464 1 3676 1714 +1962 whale_0xdc8d 0xb26f9666... Titan Relay
14227696 13 3841 1947 +1894 liquid_collective 0xb26f9666... Titan Relay
14230425 2 3600 1733 +1867 blockdaemon 0x8a850621... Ultra Sound
14227872 0 3560 1694 +1866 revolut 0xb26f9666... Titan Relay
14230016 2 3563 1733 +1830 senseinode_lido 0x850b00e0... Flashbots
14229824 6 3639 1811 +1828 blockdaemon_lido 0x853b0078... BloXroute Max Profit
14229427 11 3726 1908 +1818 kiln 0x857b0038... BloXroute Max Profit
14224685 2 3548 1733 +1815 blockdaemon 0x8a850621... Titan Relay
14224370 9 3666 1869 +1797 coinbase 0x857b0038... BloXroute Max Profit
14227197 1 3467 1714 +1753 whale_0x8ebd 0x857b0038... BloXroute Max Profit
14225859 0 3440 1694 +1746 whale_0xdc8d 0x9129eeb4... Ultra Sound
14223825 16 3748 2005 +1743 kraken 0x8527d16c... EthGas
14224388 0 3430 1694 +1736 blockdaemon 0x857b0038... Ultra Sound
14228764 5 3525 1792 +1733 blockdaemon 0x856b0004... BloXroute Max Profit
14224232 0 3424 1694 +1730 blockdaemon 0x857b0038... BloXroute Max Profit
14224039 1 3427 1714 +1713 ether.fi 0xb26f9666... Titan Relay
14223873 2 3445 1733 +1712 blockdaemon 0x8527d16c... Ultra Sound
14228961 1 3423 1714 +1709 blockdaemon 0x853b0078... BloXroute Max Profit
14225014 8 3557 1850 +1707 blockdaemon 0x8a850621... Titan Relay
14223670 0 3399 1694 +1705 blockdaemon_lido 0x8527d16c... Ultra Sound
14223740 0 3387 1694 +1693 blockdaemon 0xb26f9666... Titan Relay
14228234 6 3500 1811 +1689 blockdaemon 0x8a850621... Titan Relay
14224804 1 3402 1714 +1688 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
14227517 1 3400 1714 +1686 blockdaemon_lido 0xb26f9666... Titan Relay
14225413 0 3379 1694 +1685 0x8527d16c... Ultra Sound
14226840 1 3397 1714 +1683 blockdaemon_lido 0xb26f9666... Titan Relay
14230510 6 3493 1811 +1682 whale_0xdc8d 0xb26f9666... Titan Relay
14227885 0 3375 1694 +1681 blockdaemon_lido 0xb26f9666... Titan Relay
14229144 1 3394 1714 +1680 whale_0x8914 0xa230e2cf... Ultra Sound
14224054 0 3367 1694 +1673 blockdaemon 0x9129eeb4... Ultra Sound
14224063 0 3366 1694 +1672 ether.fi 0x851b00b1... Ultra Sound
14225427 5 3462 1792 +1670 whale_0xdc8d 0x8527d16c... Ultra Sound
14227424 0 3364 1694 +1670 bitstamp 0x851b00b1... BloXroute Max Profit
14226887 7 3499 1830 +1669 whale_0xdc8d 0xb7c5beef... BloXroute Max Profit
14227649 8 3516 1850 +1666 blockdaemon 0x8a850621... Titan Relay
14227449 0 3360 1694 +1666 blockdaemon 0x8527d16c... Ultra Sound
14225843 5 3453 1792 +1661 0x823e0146... Ultra Sound
14224226 6 3469 1811 +1658 blockdaemon 0x88a53ec4... BloXroute Regulated
14229153 0 3351 1694 +1657 blockdaemon 0x8a850621... Titan Relay
14230023 1 3370 1714 +1656 luno 0xb26f9666... Titan Relay
14224519 8 3502 1850 +1652 blockdaemon_lido 0x88a53ec4... BloXroute Regulated
14228536 6 3463 1811 +1652 blockdaemon 0x8a850621... Titan Relay
14224803 7 3478 1830 +1648 blockdaemon 0x8a850621... Titan Relay
14225172 0 3340 1694 +1646 whale_0xdc8d 0x823e0146... Titan Relay
14230631 0 3339 1694 +1645 ether.fi 0x8db2a99d... Flashbots
14227809 0 3336 1694 +1642 blockdaemon_lido 0x88857150... Ultra Sound
14224913 1 3350 1714 +1636 whale_0xfd67 0xac23f8cc... Titan Relay
14227896 7 3465 1830 +1635 blockdaemon 0x850b00e0... BloXroute Max Profit
14229842 5 3426 1792 +1634 ether.fi 0x8527d16c... Ultra Sound
14226153 2 3365 1733 +1632 blockdaemon 0xb67eaa5e... Ultra Sound
14224997 10 3517 1889 +1628 revolut 0x88a53ec4... BloXroute Max Profit
14226037 1 3333 1714 +1619 revolut 0x856b0004... BloXroute Max Profit
14228187 1 3333 1714 +1619 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
14229564 0 3306 1694 +1612 blockdaemon_lido 0x8db2a99d... Titan Relay
14226391 0 3305 1694 +1611 luno 0xb26f9666... Titan Relay
14226292 0 3304 1694 +1610 blockdaemon_lido 0xa965c911... Ultra Sound
14224161 6 3420 1811 +1609 blockdaemon 0x9129eeb4... Ultra Sound
14227935 2 3341 1733 +1608 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14226283 6 3410 1811 +1599 revolut 0x88a53ec4... BloXroute Max Profit
14225824 2 3331 1733 +1598 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
14228314 0 3286 1694 +1592 blockdaemon 0x8db2a99d... Titan Relay
14224331 0 3284 1694 +1590 blockdaemon 0xac23f8cc... Ultra Sound
14228274 6 3400 1811 +1589 blockdaemon 0x850b00e0... BloXroute Max Profit
14227461 2 3321 1733 +1588 blockdaemon 0x88a53ec4... BloXroute Regulated
14230326 2 3320 1733 +1587 blockdaemon 0x88857150... Ultra Sound
14225155 3 3336 1753 +1583 solo_stakers 0x8527d16c... Ultra Sound
14227677 0 3274 1694 +1580 blockdaemon_lido 0xb67eaa5e... Titan Relay
14224072 9 3447 1869 +1578 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
14223789 0 3271 1694 +1577 luno 0xb26f9666... Titan Relay
14228270 1 3290 1714 +1576 ether.fi 0x856b0004... BloXroute Max Profit
14227382 0 3270 1694 +1576 blockdaemon 0x8527d16c... Ultra Sound
14226570 5 3365 1792 +1573 whale_0x331e 0x857b0038... BloXroute Max Profit
14230265 0 3255 1694 +1561 whale_0xf273 0x851b00b1... Ultra Sound
14225057 0 3255 1694 +1561 whale_0x3878 0x851b00b1... Ultra Sound
14229376 0 3255 1694 +1561 nethermind_lido 0x853b0078... BloXroute Max Profit
14228673 0 3254 1694 +1560 blockdaemon_lido 0xb26f9666... Titan Relay
14225555 1 3273 1714 +1559 blockdaemon_lido 0x8db2a99d... BloXroute Max Profit
14227263 5 3349 1792 +1557 blockdaemon_lido 0x8a850621... Ultra Sound
14224689 2 3290 1733 +1557 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
14226597 2 3285 1733 +1552 p2porg 0x850b00e0... Ultra Sound
14225779 6 3361 1811 +1550 whale_0xdc8d 0xb67eaa5e... BloXroute Max Profit
14230523 1 3263 1714 +1549 blockdaemon 0x850b00e0... BloXroute Max Profit
14229179 11 3457 1908 +1549 ether.fi 0x850b00e0... BloXroute Max Profit
14227690 1 3258 1714 +1544 blockdaemon_lido 0x853b0078... BloXroute Max Profit
14227882 3 3295 1753 +1542 blockdaemon 0x8527d16c... Ultra Sound
14224358 0 3236 1694 +1542 whale_0x8914 0x80ad903b... Ultra Sound
14226595 0 3233 1694 +1539 coinbase 0x805e28e6... BloXroute Max Profit
14227572 2 3269 1733 +1536 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
14224288 0 3230 1694 +1536 p2porg 0x853b0078... BloXroute Regulated
14224868 2 3262 1733 +1529 whale_0x3878 0x85fb0503... Ultra Sound
14226849 0 3223 1694 +1529 whale_0xc611 0x851b00b1... Ultra Sound
14224171 10 3417 1889 +1528 whale_0xdc8d 0xb26f9666... Titan Relay
14229359 1 3239 1714 +1525 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
14223612 6 3335 1811 +1524 blockdaemon 0xb26f9666... Titan Relay
14226772 1 3236 1714 +1522 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
14230121 5 3311 1792 +1519 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14228831 2 3250 1733 +1517 whale_0x8ebd 0xb26f9666... Titan Relay
14227419 2 3250 1733 +1517 kiln 0x850b00e0... BloXroute Max Profit
14227343 5 3308 1792 +1516 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
14226785 0 3209 1694 +1515 whale_0x8914 0xb67eaa5e... Ultra Sound
14223912 1 3228 1714 +1514 blockdaemon_lido 0xb26f9666... Titan Relay
14226205 0 3205 1694 +1511 0x8527d16c... Ultra Sound
14226061 5 3302 1792 +1510 0x88857150... Ultra Sound
14224223 5 3302 1792 +1510 blockdaemon_lido 0x88857150... Ultra Sound
14230171 0 3203 1694 +1509 gateway.fmas_lido 0x88a53ec4... BloXroute Regulated
14229298 1 3219 1714 +1505 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14225064 6 3316 1811 +1505 gateway.fmas_lido 0x856b0004... BloXroute Max Profit
14226552 2 3235 1733 +1502 kiln 0xb67eaa5e... BloXroute Regulated
14228489 1 3215 1714 +1501 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14228977 0 3195 1694 +1501 whale_0x8ebd 0x851b00b1... BloXroute Max Profit
14230644 0 3195 1694 +1501 whale_0x8914 0x8527d16c... Ultra Sound
14229807 5 3287 1792 +1495 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
14229514 2 3227 1733 +1494 whale_0x8ebd 0x8527d16c... Ultra Sound
14229140 0 3185 1694 +1491 coinbase 0xb26f9666... Titan Relay
14224222 0 3184 1694 +1490 whale_0x8ebd 0x8527d16c... Ultra Sound
14224834 0 3183 1694 +1489 whale_0xedc6 0x823e0146... Ultra Sound
14225008 0 3182 1694 +1488 blockdaemon 0x88857150... Ultra Sound
14228271 1 3201 1714 +1487 p2porg 0xa965c911... Ultra Sound
14225504 0 3181 1694 +1487 whale_0x8ebd 0xb5a65d00... Ultra Sound
14228598 1 3200 1714 +1486 whale_0x8914 0x856b0004... BloXroute Max Profit
14229554 0 3180 1694 +1486 blockdaemon 0xac23f8cc... Ultra Sound
14229458 5 3277 1792 +1485 p2porg 0x857b0038... BloXroute Max Profit
14224750 0 3178 1694 +1484 whale_0x3878 0xb67eaa5e... Titan Relay
14227462 0 3177 1694 +1483 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
14224799 0 3174 1694 +1480 blockdaemon_lido 0x8527d16c... Ultra Sound
14228292 3 3232 1753 +1479 figment 0x88857150... Ultra Sound
14226431 0 3173 1694 +1479 blockdaemon_lido 0x8db2a99d... BloXroute Max Profit
14228805 1 3191 1714 +1477 blockdaemon_lido 0x8527d16c... Ultra Sound
14230072 0 3171 1694 +1477 figment 0xb26f9666... Titan Relay
14230157 10 3360 1889 +1471 luno 0xb26f9666... Titan Relay
14228128 11 3379 1908 +1471 ether.fi 0x823e0146... BloXroute Max Profit
14230568 0 3165 1694 +1471 whale_0xdc8d 0x856b0004... Ultra Sound
14224600 0 3163 1694 +1469 gateway.fmas_lido 0x8527d16c... Ultra Sound
14228403 2 3201 1733 +1468 whale_0x8914 0x850b00e0... Ultra Sound
14229622 0 3161 1694 +1467 whale_0xfd67 0xb67eaa5e... Titan Relay
14230598 1 3177 1714 +1463 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14223981 1 3177 1714 +1463 0x856b0004... Ultra Sound
14229176 4 3233 1772 +1461 whale_0x8914 0xb67eaa5e... Titan Relay
14224112 0 3155 1694 +1461 whale_0x8914 0x823e0146... Ultra Sound
14225796 2 3193 1733 +1460 gateway.fmas_lido 0x8527d16c... Ultra Sound
14228077 5 3251 1792 +1459 kiln 0xb67eaa5e... BloXroute Max Profit
14224436 1 3173 1714 +1459 revolut 0x9129eeb4... Ultra Sound
14225230 3 3210 1753 +1457 kiln 0xb67eaa5e... BloXroute Regulated
14225635 4 3228 1772 +1456 everstake 0xb67eaa5e... BloXroute Regulated
14230075 9 3325 1869 +1456 blockdaemon_lido 0xb67eaa5e... Titan Relay
14228369 0 3149 1694 +1455 whale_0xfd67 0x823e0146... Titan Relay
14223769 2 3184 1733 +1451 everstake 0x8527d16c... Ultra Sound
14225297 0 3145 1694 +1451 whale_0x4b5e 0x823e0146... Titan Relay
14226560 2 3183 1733 +1450 everstake 0x850b00e0... BloXroute Max Profit
14226451 5 3240 1792 +1448 p2porg 0x850b00e0... BloXroute Regulated
14225272 5 3239 1792 +1447 whale_0x4b5e 0x88a53ec4... BloXroute Regulated
14228208 0 3141 1694 +1447 whale_0xfd67 0x851b00b1... Ultra Sound
14230385 0 3141 1694 +1447 blockdaemon_lido 0xb26f9666... Titan Relay
14225335 7 3276 1830 +1446 blockdaemon_lido 0x856b0004... BloXroute Max Profit
14229649 1 3158 1714 +1444 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14224082 7 3274 1830 +1444 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
14227500 5 3235 1792 +1443 whale_0x8914 0x850b00e0... Ultra Sound
14224793 1 3157 1714 +1443 whale_0x8ebd 0xb26f9666... Titan Relay
14229088 7 3271 1830 +1441 blockdaemon 0xb67eaa5e... BloXroute Max Profit
14226186 1 3153 1714 +1439 blockdaemon 0x8db2a99d... BloXroute Max Profit
14225234 0 3133 1694 +1439 whale_0x8ebd 0x8527d16c... Ultra Sound
14229648 5 3230 1792 +1438 gateway.fmas_lido 0xa230e2cf... Ultra Sound
14227647 2 3170 1733 +1437 p2porg 0xb67eaa5e... Aestus
14230288 0 3131 1694 +1437 gateway.fmas_lido 0x8527d16c... Ultra Sound
14226017 3 3186 1753 +1433 p2porg Local Local
14229693 4 3205 1772 +1433 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
14230446 1 3146 1714 +1432 coinbase 0xb26f9666... Titan Relay
14230381 0 3126 1694 +1432 p2porg 0xb26f9666... Titan Relay
14223720 1 3145 1714 +1431 p2porg 0xb67eaa5e... BloXroute Max Profit
14230676 0 3125 1694 +1431 p2porg 0x850b00e0... BloXroute Regulated
14230100 1 3144 1714 +1430 whale_0x8914 0xa965c911... Ultra Sound
14223819 2 3163 1733 +1430 whale_0x8914 0x8527d16c... Ultra Sound
14229194 0 3124 1694 +1430 0x9129eeb4... Aestus
14230104 5 3221 1792 +1429 whale_0xfd67 0xb67eaa5e... Titan Relay
14229873 1 3142 1714 +1428 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14226692 1 3141 1714 +1427 whale_0xfd67 0xb67eaa5e... BloXroute Regulated
14225506 0 3119 1694 +1425 p2porg 0x9129eeb4... Agnostic Gnosis
14229818 7 3254 1830 +1424 p2porg 0x8527d16c... Ultra Sound
14224574 1 3136 1714 +1422 whale_0x8ebd 0x8527d16c... Ultra Sound
14229869 0 3116 1694 +1422 whale_0x10d5 Local Local
14227439 3 3174 1753 +1421 whale_0x8ebd 0xb26f9666... Titan Relay
14230599 1 3135 1714 +1421 coinbase 0xb7c5e609... BloXroute Max Profit
14229337 0 3113 1694 +1419 gateway.fmas_lido 0x853b0078... BloXroute Max Profit
14225112 1 3130 1714 +1416 kiln 0xb26f9666... BloXroute Max Profit
14227329 1 3129 1714 +1415 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14229911 0 3109 1694 +1415 p2porg 0x850b00e0... BloXroute Regulated
14229539 7 3244 1830 +1414 whale_0x3878 0x853b0078... BloXroute Regulated
14229100 1 3125 1714 +1411 0xb26f9666... Titan Relay
14224945 3 3162 1753 +1409 kiln 0x853b0078... BloXroute Max Profit
14225950 15 3394 1986 +1408 blockdaemon_lido 0x8527d16c... Ultra Sound
14225496 2 3140 1733 +1407 kiln 0xb26f9666... BloXroute Regulated
14228777 5 3197 1792 +1405 p2porg 0x856b0004... BloXroute Max Profit
14225227 14 3371 1967 +1404 blockdaemon_lido 0xb67eaa5e... Titan Relay
14225728 1 3117 1714 +1403 ether.fi 0x850b00e0... BloXroute Max Profit
14228558 5 3192 1792 +1400 everstake 0x856b0004... BloXroute Max Profit
14227191 5 3192 1792 +1400 p2porg 0x823e0146... Flashbots
14227652 11 3308 1908 +1400 figment 0xb7c5e609... BloXroute Max Profit
14230684 2 3132 1733 +1399 figment 0xb26f9666... Titan Relay
14224445 0 3091 1694 +1397 kiln 0xb67eaa5e... Ultra Sound
14228739 7 3227 1830 +1397 whale_0x8914 0x850b00e0... BloXroute Regulated
14229120 6 3207 1811 +1396 whale_0xfd67 0xb67eaa5e... Titan Relay
14229870 5 3186 1792 +1394 p2porg 0xb26f9666... Titan Relay
14226239 7 3223 1830 +1393 p2porg 0x850b00e0... BloXroute Max Profit
14225338 1 3106 1714 +1392 whale_0xc611 0xb67eaa5e... BloXroute Regulated
14228472 3 3144 1753 +1391 whale_0x8ebd 0xb26f9666... Titan Relay
14228286 2 3123 1733 +1390 coinbase 0xb67eaa5e... BloXroute Regulated
14223803 0 3084 1694 +1390 p2porg 0xb26f9666... Titan Relay
14228308 5 3181 1792 +1389 p2porg 0x850b00e0... Titan Relay
14225785 6 3199 1811 +1388 kiln 0xb67eaa5e... BloXroute Max Profit
14228123 0 3082 1694 +1388 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14224154 1 3100 1714 +1386 whale_0x8ebd 0x9129eeb4... Agnostic Gnosis
14229034 0 3079 1694 +1385 kiln 0x8527d16c... Ultra Sound
14228781 1 3098 1714 +1384 kiln 0x9129eeb4... Ultra Sound
14229125 6 3195 1811 +1384 whale_0x8914 0xa965c911... Ultra Sound
14223989 0 3078 1694 +1384 blockdaemon 0x856b0004... Ultra Sound
14226494 7 3214 1830 +1384 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14224317 1 3097 1714 +1383 everstake 0xac23f8cc... Ultra Sound
14224543 0 3076 1694 +1382 whale_0x8ebd 0xb26f9666... Titan Relay
14230646 6 3191 1811 +1380 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
14224247 5 3171 1792 +1379 whale_0x8914 0x8db2a99d... Ultra Sound
14229080 6 3190 1811 +1379 whale_0x8ebd Local Local
14230655 5 3170 1792 +1378 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14227070 8 3228 1850 +1378 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
14229799 1 3091 1714 +1377 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14228010 10 3266 1889 +1377 whale_0x8ebd 0x8527d16c... Ultra Sound
14224671 1 3089 1714 +1375 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14227804 6 3186 1811 +1375 coinbase 0x853b0078... BloXroute Max Profit
14226164 11 3283 1908 +1375 blockdaemon_lido 0x8db2a99d... BloXroute Max Profit
14226316 5 3165 1792 +1373 p2porg 0xb26f9666... Titan Relay
14223706 3 3126 1753 +1373 whale_0x4b5e 0xb67eaa5e... Titan Relay
14228921 1 3087 1714 +1373 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14230039 0 3065 1694 +1371 whale_0x8914 0x88a53ec4... BloXroute Regulated
14227369 5 3161 1792 +1369 whale_0x8914 0x88a53ec4... BloXroute Regulated
14223663 6 3180 1811 +1369 whale_0xfd67 0x85fb0503... Ultra Sound
14226330 5 3160 1792 +1368 kiln 0x850b00e0... BloXroute Max Profit
14229985 3 3121 1753 +1368 coinbase 0x850b00e0... Flashbots
14224507 6 3179 1811 +1368 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14225629 15 3354 1986 +1368 whale_0x8914 0xb67eaa5e... Aestus
14229079 3 3119 1753 +1366 p2porg 0xb26f9666... Titan Relay
14223772 8 3216 1850 +1366 gateway.fmas_lido 0x8db2a99d... Flashbots
14227874 2 3099 1733 +1366 coinbase 0x856b0004... BloXroute Max Profit
14230377 1 3079 1714 +1365 coinbase 0xb26f9666... BloXroute Max Profit
14228387 10 3254 1889 +1365 coinbase 0xb67eaa5e... BloXroute Max Profit
14225104 0 3059 1694 +1365 0xb67eaa5e... BloXroute Regulated
14226796 5 3156 1792 +1364 coinbase 0xb26f9666... BloXroute Max Profit
14224578 1 3078 1714 +1364 kiln 0xb26f9666... BloXroute Max Profit
14228430 6 3175 1811 +1364 whale_0xfd67 0xb67eaa5e... Titan Relay
14227668 6 3175 1811 +1364 coinbase 0xb26f9666... BloXroute Regulated
14225952 0 3058 1694 +1364 coinbase 0xb26f9666... Titan Relay
14223664 0 3058 1694 +1364 p2porg 0x853b0078... BloXroute Max Profit
14226192 3 3116 1753 +1363 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14230467 6 3173 1811 +1362 kiln 0xb5a65d00... Agnostic Gnosis
14226821 0 3056 1694 +1362 p2porg 0xb26f9666... Titan Relay
14229998 7 3191 1830 +1361 gateway.fmas_lido 0x8527d16c... Ultra Sound
14226770 0 3054 1694 +1360 figment 0xb26f9666... Ultra Sound
14225837 3 3112 1753 +1359 coinbase 0xb26f9666... BloXroute Regulated
14228178 5 3150 1792 +1358 whale_0x8ebd 0xb26f9666... Titan Relay
14223693 6 3169 1811 +1358 coinbase 0xb26f9666... BloXroute Regulated
14228440 5 3149 1792 +1357 nethermind_lido 0xb26f9666... Aestus
14225892 5 3149 1792 +1357 coinbase 0xb26f9666... Titan Relay
14223827 10 3245 1889 +1356 whale_0xfd67 0x8527d16c... Ultra Sound
14229787 5 3147 1792 +1355 whale_0x8ebd 0x8db2a99d... Flashbots
14227835 0 3048 1694 +1354 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14227591 1 3067 1714 +1353 coinbase 0xb26f9666... BloXroute Regulated
14227962 1 3065 1714 +1351 0x853b0078... BloXroute Max Profit
14230009 11 3258 1908 +1350 0xb26f9666... BloXroute Regulated
14228771 3 3102 1753 +1349 0xb26f9666... Titan Relay
14225563 0 3043 1694 +1349 kiln 0xb5a65d00... Ultra Sound
14229362 8 3198 1850 +1348 whale_0xfd67 0x850b00e0... Ultra Sound
14225549 1 3060 1714 +1346 kiln 0xb26f9666... BloXroute Max Profit
14225973 2 3079 1733 +1346 whale_0xedc6 0x8527d16c... Ultra Sound
14225159 0 3040 1694 +1346 coinbase 0xb26f9666... BloXroute Max Profit
14225083 1 3059 1714 +1345 everstake 0x88857150... Ultra Sound
14230596 10 3233 1889 +1344 0xb67eaa5e... BloXroute Regulated
14224931 7 3173 1830 +1343 0x850b00e0... BloXroute Max Profit
14228310 3 3095 1753 +1342 whale_0x0000 0x856b0004... BloXroute Max Profit
14224230 1 3055 1714 +1341 everstake 0x88a53ec4... BloXroute Max Profit
14224158 1 3054 1714 +1340 0xb26f9666... Titan Relay
14224464 6 3151 1811 +1340 coinbase 0xb26f9666... BloXroute Regulated
14224476 0 3034 1694 +1340 whale_0x8ebd 0x823e0146... Flashbots
14229060 0 3034 1694 +1340 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14229047 1 3053 1714 +1339 kiln 0x856b0004... BloXroute Max Profit
14225608 9 3208 1869 +1339 blockdaemon_lido 0xb26f9666... Titan Relay
14229041 3 3091 1753 +1338 whale_0x8ebd 0x8527d16c... Ultra Sound
14230332 0 3032 1694 +1338 everstake 0xb26f9666... Titan Relay
14230734 0 3032 1694 +1338 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
14225572 5 3129 1792 +1337 whale_0x8ebd Local Local
14225081 1 3051 1714 +1337 everstake 0xb67eaa5e... BloXroute Regulated
14224852 0 3031 1694 +1337 coinbase 0x8db2a99d... BloXroute Max Profit
14229823 0 3031 1694 +1337 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
14228743 10 3225 1889 +1336 coinbase 0x856b0004... BloXroute Max Profit
14229420 2 3069 1733 +1336 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
14223849 0 3030 1694 +1336 0x85fb0503... Aestus
14230513 0 3030 1694 +1336 kiln 0xb26f9666... Titan Relay
14230230 0 3029 1694 +1335 coinbase 0xb26f9666... BloXroute Regulated
14226042 3 3087 1753 +1334 figment 0x856b0004... BloXroute Max Profit
14226702 0 3027 1694 +1333 p2porg 0xb67eaa5e... Aestus
14226651 7 3161 1830 +1331 p2porg 0xb26f9666... Titan Relay
14229853 6 3141 1811 +1330 coinbase 0x853b0078... BloXroute Max Profit
14224756 2 3062 1733 +1329 p2porg 0xb72cae2f... Ultra Sound
14227310 0 3022 1694 +1328 whale_0xedc6 0x8db2a99d... Ultra Sound
14230339 0 3022 1694 +1328 kiln 0x851b00b1... BloXroute Max Profit
14228949 3 3080 1753 +1327 whale_0xedc6 0xb26f9666... BloXroute Max Profit
14226411 1 3041 1714 +1327 whale_0x8ebd 0xb26f9666... Titan Relay
14229535 0 3021 1694 +1327 everstake 0x851b00b1... BloXroute Max Profit
14230699 7 3157 1830 +1327 kiln 0xb67eaa5e... BloXroute Regulated
14227016 6 3137 1811 +1326 figment 0xb26f9666... BloXroute Max Profit
14225571 2 3058 1733 +1325 kiln Local Local
14229308 3 3076 1753 +1323 coinbase 0xb26f9666... Titan Relay
14228965 1 3037 1714 +1323 coinbase 0x8527d16c... Ultra Sound
14229637 1 3037 1714 +1323 coinbase 0x8527d16c... Ultra Sound
14226091 0 3017 1694 +1323 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14229739 5 3114 1792 +1322 kiln 0xb26f9666... BloXroute Max Profit
14227741 0 3016 1694 +1322 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14229688 1 3034 1714 +1320 everstake 0x8c852572... Aestus
14228038 8 3169 1850 +1319 coinbase 0x850b00e0... BloXroute Max Profit
14225370 0 3013 1694 +1319 whale_0x8ebd 0x8db2a99d... Flashbots
14224837 5 3110 1792 +1318 p2porg 0xb26f9666... Titan Relay
14228223 5 3110 1792 +1318 kiln 0xb67eaa5e... BloXroute Regulated
14230166 5 3110 1792 +1318 p2porg 0xb67eaa5e... BloXroute Regulated
14224590 2 3051 1733 +1318 coinbase 0x8527d16c... Ultra Sound
14225981 0 3012 1694 +1318 kiln 0xb67eaa5e... BloXroute Max Profit
14226625 0 3012 1694 +1318 coinbase 0x8db2a99d... Flashbots
14230570 0 3012 1694 +1318 0x9129eeb4... Aestus
14225959 5 3109 1792 +1317 everstake 0x9129eeb4... Ultra Sound
14225264 1 3031 1714 +1317 everstake 0xb26f9666... Titan Relay
14226676 1 3031 1714 +1317 kiln 0x856b0004... BloXroute Max Profit
14227571 1 3030 1714 +1316 whale_0x8ebd 0x88857150... Ultra Sound
14224346 1 3030 1714 +1316 kiln 0xac23f8cc... Flashbots
14227631 0 3010 1694 +1316 0xb67eaa5e... Aestus
14227787 5 3107 1792 +1315 coinbase 0x856b0004... BloXroute Max Profit
14227437 1 3029 1714 +1315 kiln 0x853b0078... BloXroute Max Profit
14227157 1 3029 1714 +1315 everstake 0xb26f9666... Titan Relay
14229429 1 3029 1714 +1315 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
14225970 5 3106 1792 +1314 kiln 0x856b0004... BloXroute Max Profit
14224523 6 3125 1811 +1314 coinbase 0xb26f9666... Titan Relay
14228103 6 3125 1811 +1314 p2porg 0x856b0004... BloXroute Max Profit
14224797 4 3086 1772 +1314 p2porg 0x8527d16c... Ultra Sound
14230614 0 3008 1694 +1314 coinbase 0x823e0146... Flashbots
14227144 0 3008 1694 +1314 everstake 0xb26f9666... Titan Relay
14223932 0 3008 1694 +1314 coinbase 0x856b0004... BloXroute Max Profit
14227645 0 3008 1694 +1314 ether.fi 0x851b00b1... BloXroute Max Profit
14226868 5 3105 1792 +1313 gateway.fmas_lido 0x8db2a99d... Ultra Sound
14225406 5 3105 1792 +1313 coinbase 0x8527d16c... Ultra Sound
14223914 6 3124 1811 +1313 p2porg 0xb26f9666... Titan Relay
14223788 4 3085 1772 +1313 whale_0x8ebd 0x8527d16c... Ultra Sound
14223727 5 3104 1792 +1312 whale_0x8ebd 0x8527d16c... Ultra Sound
14229027 8 3162 1850 +1312 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14224140 0 3006 1694 +1312 kiln 0xb26f9666... Titan Relay
14226355 5 3103 1792 +1311 kiln 0x8db2a99d... Ultra Sound
14226640 1 3025 1714 +1311 kiln 0xb67eaa5e... BloXroute Max Profit
14229567 1 3025 1714 +1311 stader 0xac23f8cc... Ultra Sound
14225448 0 3005 1694 +1311 everstake 0x88857150... Ultra Sound
14230516 2 3043 1733 +1310 coinbase 0x856b0004... BloXroute Max Profit
14228266 6 3119 1811 +1308 p2porg 0xb26f9666... BloXroute Max Profit
14226358 0 3002 1694 +1308 kiln 0x851b00b1... BloXroute Max Profit
14227927 0 3002 1694 +1308 whale_0x8ebd 0x856b0004... BloXroute Max Profit
14228577 6 3117 1811 +1306 whale_0x8ebd Local Local
14227755 2 3038 1733 +1305 p2porg 0x823e0146... Flashbots
14229239 0 2999 1694 +1305 coinbase 0x850b00e0... BloXroute Max Profit
14229013 1 3018 1714 +1304 nethermind_lido 0x856b0004... BloXroute Max Profit
14224815 7 3133 1830 +1303 Local Local
14230514 6 3113 1811 +1302 coinbase 0xac23f8cc... Flashbots
14230086 3 3054 1753 +1301 coinbase 0xb67eaa5e... Ultra Sound
14226921 10 3190 1889 +1301 whale_0xba40 0x88a53ec4... Aestus
14225405 0 2994 1694 +1300 kiln 0x8527d16c... Ultra Sound
14224782 3 3052 1753 +1299 0x8527d16c... Ultra Sound
14230793 1 3013 1714 +1299 coinbase 0x8527d16c... Ultra Sound
14230663 6 3110 1811 +1299 p2porg 0x9129eeb4... Ultra Sound
14225896 4 3071 1772 +1299 coinbase 0x8527d16c... Ultra Sound
14224744 10 3186 1889 +1297 p2porg 0xb26f9666... Titan Relay
14225276 2 3030 1733 +1297 whale_0x8ebd 0xb26f9666... BloXroute Regulated
14230474 0 2991 1694 +1297 coinbase 0x856b0004... BloXroute Max Profit
14225284 3 3049 1753 +1296 whale_0xedc6 0x856b0004... BloXroute Max Profit
14225630 1 3010 1714 +1296 coinbase 0x8db2a99d... Flashbots
14229759 1 3010 1714 +1296 whale_0x8ebd 0x823e0146... Titan Relay
14228335 8 3146 1850 +1296 kiln 0x823e0146... BloXroute Max Profit
14224228 8 3146 1850 +1296 p2porg 0x856b0004... Ultra Sound
14223977 6 3107 1811 +1296 p2porg 0x856b0004... BloXroute Max Profit
14227721 6 3105 1811 +1294 0x856b0004... BloXroute Max Profit
14224147 0 2988 1694 +1294 coinbase 0xb26f9666... Titan Relay
14228238 3 3044 1753 +1291 coinbase 0xb26f9666... Titan Relay
14226346 3 3044 1753 +1291 whale_0x8ebd 0x8db2a99d... Titan Relay
14229758 4 3062 1772 +1290 coinbase 0xb26f9666... Titan Relay
14227625 0 2984 1694 +1290 0xb26f9666... BloXroute Max Profit
14226958 3 3042 1753 +1289 0xb26f9666... BloXroute Max Profit
14230165 2 3022 1733 +1289 kiln 0x856b0004... BloXroute Max Profit
14227325 0 2983 1694 +1289 coinbase 0x8db2a99d... Ultra Sound
14228717 0 2982 1694 +1288 kiln 0xb67eaa5e... BloXroute Max Profit
14226289 5 3079 1792 +1287 p2porg 0x8db2a99d... Flashbots
14227003 1 3001 1714 +1287 kiln 0x8db2a99d... Titan Relay
14224308 0 2981 1694 +1287 everstake 0xb26f9666... Titan Relay
14228205 0 2981 1694 +1287 kiln 0x851b00b1... BloXroute Max Profit
14224770 8 3134 1850 +1284 kiln 0xb26f9666... BloXroute Regulated
14228683 3 3035 1753 +1282 everstake 0xb67eaa5e... BloXroute Regulated
14229329 2 3015 1733 +1282 coinbase 0x88857150... Ultra Sound
14224537 3 3034 1753 +1281 p2porg 0x85fb0503... Aestus
14227582 4 3053 1772 +1281 0x856b0004... BloXroute Max Profit
14228968 0 2975 1694 +1281 ether.fi 0x851b00b1... BloXroute Max Profit
14230354 5 3071 1792 +1279 kiln 0xb5a65d00... Flashbots
14224490 5 3071 1792 +1279 nethermind_lido 0xb26f9666... Aestus
14229459 1 2993 1714 +1279 kiln 0x853b0078... BloXroute Max Profit
14230282 0 2973 1694 +1279 kiln 0x8527d16c... Ultra Sound
14227826 0 2973 1694 +1279 whale_0x8ebd 0x851b00b1... BloXroute Max Profit
14230315 5 3070 1792 +1278 whale_0x8ebd 0x88857150... Ultra Sound
14226244 10 3167 1889 +1278 gateway.fmas_lido 0x8527d16c... Ultra Sound
14228709 6 3089 1811 +1278 coinbase 0x856b0004... BloXroute Max Profit
14225750 3 3030 1753 +1277 kiln 0x8527d16c... Ultra Sound
14230456 1 2990 1714 +1276 solo_stakers 0x853b0078... BloXroute Max Profit
14223823 1 2990 1714 +1276 coinbase 0xb26f9666... BloXroute Regulated
14225278 0 2970 1694 +1276 kiln 0x88a53ec4... BloXroute Max Profit
14224878 7 3106 1830 +1276 p2porg 0x823e0146... Titan Relay
14228450 1 2989 1714 +1275 kiln Local Local
14225733 0 2969 1694 +1275 everstake 0xb26f9666... Titan Relay
14229446 0 2968 1694 +1274 everstake 0x856b0004... BloXroute Max Profit
14228405 0 2967 1694 +1273 whale_0x8ebd 0x99cba505... BloXroute Max Profit
14227458 0 2966 1694 +1272 whale_0x8ebd 0x8a850621... Ultra Sound
14228820 7 3101 1830 +1271 everstake 0x850b00e0... BloXroute Max Profit
14224369 5 3061 1792 +1269 kiln Local Local
14224854 7 3099 1830 +1269 whale_0x8ebd 0xb26f9666... Titan Relay
14227203 1 2982 1714 +1268 0x856b0004... BloXroute Max Profit
14226315 6 3079 1811 +1268 coinbase 0x8db2a99d... Ultra Sound
14224169 0 2962 1694 +1268 kiln 0xb26f9666... Titan Relay
14228790 5 3059 1792 +1267 whale_0x8ebd 0x8527d16c... Ultra Sound
14228120 1 2980 1714 +1266 kiln Local Local
14226892 0 2960 1694 +1266 kiln 0x8db2a99d... Flashbots
14228111 5 3057 1792 +1265 kiln 0x8527d16c... Ultra Sound
14227104 0 2959 1694 +1265 coinbase 0x853b0078... BloXroute Max Profit
14229479 0 2959 1694 +1265 everstake 0x851b00b1... BloXroute Max Profit
14226665 8 3114 1850 +1264 0xa965c911... Ultra Sound
14226832 0 2958 1694 +1264 kiln 0x8527d16c... Ultra Sound
14226806 1 2977 1714 +1263 kiln 0x853b0078... BloXroute Max Profit
14227606 0 2957 1694 +1263 kiln 0x8527d16c... Ultra Sound
14224008 0 2957 1694 +1263 everstake 0xb26f9666... Titan Relay
14224099 6 3073 1811 +1262 ether.fi 0x823e0146... BloXroute Max Profit
14224899 6 3073 1811 +1262 ether.fi 0x88a53ec4... BloXroute Max Profit
14225213 1 2975 1714 +1261 kiln 0x8db2a99d... BloXroute Max Profit
14224155 1 2975 1714 +1261 kiln 0xb26f9666... BloXroute Regulated
Total anomalies: 454

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