Thu, Mar 12, 2026

Propagation anomalies - 2026-03-12

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-12' AND slot_start_date_time < '2026-03-12'::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-12' AND slot_start_date_time < '2026-03-12'::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-12' AND slot_start_date_time < '2026-03-12'::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-12' AND slot_start_date_time < '2026-03-12'::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-12' AND slot_start_date_time < '2026-03-12'::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-12' AND slot_start_date_time < '2026-03-12'::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-12' AND slot_start_date_time < '2026-03-12'::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-12' AND slot_start_date_time < '2026-03-12'::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,175
MEV blocks: 6,650 (92.7%)
Local blocks: 525 (7.3%)

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 = 1752.0 + 11.45 × blob_count (R² = 0.005)
Residual σ = 633.4ms
Anomalies (>2σ slow): 404 (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
13871712 0 7057 1752 +5305 piertwo Local Local
13871136 0 6519 1752 +4767 upbit Local Local
13875298 0 5814 1752 +4062 blockdaemon Local Local
13877344 0 5477 1752 +3725 upbit Local Local
13871395 0 5079 1752 +3327 lido Local Local
13874880 0 4934 1752 +3182 upbit Local Local
13872136 0 4813 1752 +3061 lido Local Local
13877151 1 4406 1763 +2643 whale_0x8ebd 0x8527d16c... Ultra Sound
13872572 0 4394 1752 +2642 whale_0x1980 Local Local
13875861 0 4258 1752 +2506 Local Local
13875489 0 4218 1752 +2466 lido Local Local
13877142 1 4049 1763 +2286 coinbase 0x857b0038... Ultra Sound
13877001 0 4036 1752 +2284 blockdaemon Local Local
13877514 5 4085 1809 +2276 whale_0x8ebd 0x88857150... Ultra Sound
13877589 0 4014 1752 +2262 whale_0x8ebd Local Local
13877820 0 4010 1752 +2258 coinbase Local Local
13877805 0 3974 1752 +2222 nethermind_lido Local Local
13871739 1 3897 1763 +2134 whale_0x8ebd 0x856b0004... Ultra Sound
13877857 1 3808 1763 +2045 nethermind_lido 0x8527d16c... Ultra Sound
13876854 0 3766 1752 +2014 nethermind_lido 0xb26f9666... Titan Relay
13877111 3 3777 1786 +1991 blockdaemon_lido 0x88857150... Ultra Sound
13877005 8 3797 1844 +1953 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13872337 1 3709 1763 +1946 lido 0x850b00e0... BloXroute Max Profit
13877104 0 3694 1752 +1942 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13876876 1 3688 1763 +1925 whale_0x8ebd 0x823e0146... Flashbots
13876896 5 3729 1809 +1920 senseinode_lido 0xb4ce6162... Ultra Sound
13877188 0 3600 1752 +1848 lido 0x88a53ec4... Aestus
13875377 14 3754 1912 +1842 solo_stakers 0x8db2a99d... Aestus
13873139 0 3593 1752 +1841 whale_0x8ebd 0xb4ce6162... Ultra Sound
13877029 5 3650 1809 +1841 whale_0x8ebd 0x855b00e6... BloXroute Max Profit
13875647 11 3710 1878 +1832 whale_0xdd6c 0xb26f9666... Titan Relay
13875185 1 3553 1763 +1790 nethermind_lido 0x823e0146... Flashbots
13877389 0 3537 1752 +1785 lido 0x852b0070... Ultra Sound
13873667 1 3538 1763 +1775 binance 0x857b0038... Ultra Sound
13877281 5 3578 1809 +1769 whale_0x8ebd Local Local
13876484 1 3528 1763 +1765 whale_0x8ebd 0x856b0004... BloXroute Max Profit
13871483 2 3526 1775 +1751 solo_stakers 0x823e0146... Aestus
13873440 5 3551 1809 +1742 blockdaemon 0x8527d16c... Ultra Sound
13872184 5 3548 1809 +1739 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13875692 2 3511 1775 +1736 nethermind_lido 0xb26f9666... Titan Relay
13875826 1 3498 1763 +1735 whale_0x8ebd 0x853b0078... Agnostic Gnosis
13877216 0 3484 1752 +1732 bridgetower_lido Local Local
13871962 0 3470 1752 +1718 nethermind_lido 0xb26f9666... Titan Relay
13872078 0 3468 1752 +1716 whale_0x8ebd 0x88857150... Ultra Sound
13873055 1 3473 1763 +1710 coinbase 0xb67eaa5e... Aestus
13871040 1 3470 1763 +1707 stakingfacilities_lido 0x850b00e0... BloXroute Max Profit
13873231 6 3520 1821 +1699 binance 0xb4ce6162... Ultra Sound
13875237 6 3505 1821 +1684 nethermind_lido 0x853b0078... Aestus
13872920 0 3432 1752 +1680 whale_0x8ebd 0x853b0078... Aestus
13877584 2 3451 1775 +1676 kraken 0xb26f9666... EthGas
13877855 12 3563 1889 +1674 coinbase 0x8a850621... Titan Relay
13876799 6 3494 1821 +1673 whale_0x2cb6 0x823e0146... Aestus
13871264 0 3423 1752 +1671 stakingfacilities_lido 0xb67eaa5e... BloXroute Max Profit
13877402 0 3422 1752 +1670 stader 0x856b0004... Aestus
13877302 0 3420 1752 +1668 whale_0x8ebd 0x8527d16c... Ultra Sound
13877215 5 3468 1809 +1659 whale_0x8ebd 0x8527d16c... Ultra Sound
13877541 6 3476 1821 +1655 everstake 0x856b0004... BloXroute Max Profit
13876400 0 3403 1752 +1651 ether.fi 0xb67eaa5e... EthGas
13876990 1 3412 1763 +1649 blockdaemon_lido 0x856b0004... BloXroute Max Profit
13872805 0 3398 1752 +1646 lido 0x85fb0503... BloXroute Max Profit
13876904 3 3422 1786 +1636 kraken 0x88510a78... Flashbots
13875452 5 3438 1809 +1629 nethermind_lido 0xb26f9666... Aestus
13876216 2 3403 1775 +1628 blockdaemon_lido 0x856b0004... BloXroute Max Profit
13874219 0 3376 1752 +1624 blockdaemon 0x8a850621... Titan Relay
13877689 2 3398 1775 +1623 lido Local Local
13873536 0 3374 1752 +1622 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
13876672 5 3426 1809 +1617 nethermind_lido 0x850b00e0... BloXroute Max Profit
13876175 0 3362 1752 +1610 blockdaemon_lido 0xb67eaa5e... Titan Relay
13874914 2 3384 1775 +1609 whale_0x8ebd 0x93b11bec... Flashbots
13875932 9 3457 1855 +1602 whale_0x8ebd 0x856b0004... Ultra Sound
13877579 5 3410 1809 +1601 whale_0x8ebd 0x8527d16c... Ultra Sound
13871076 5 3408 1809 +1599 blockdaemon 0x853b0078... BloXroute Max Profit
13873781 1 3358 1763 +1595 0x853b0078... Ultra Sound
13876944 8 3436 1844 +1592 0xb26f9666... EthGas
13877430 5 3401 1809 +1592 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13873152 5 3396 1809 +1587 bitstamp 0x8527d16c... Ultra Sound
13871287 4 3383 1798 +1585 0x855b00e6... BloXroute Max Profit
13873475 3 3369 1786 +1583 binance 0x8a850621... Titan Relay
13877632 1 3346 1763 +1583 lido 0x8527d16c... Ultra Sound
13874629 6 3403 1821 +1582 numic_lido 0x853b0078... BloXroute Max Profit
13874394 5 3387 1809 +1578 blockdaemon 0x8a850621... Titan Relay
13872869 10 3444 1866 +1578 ether.fi Local Local
13875586 5 3383 1809 +1574 numic_lido 0x8db2a99d... Titan Relay
13877220 6 3392 1821 +1571 kiln 0x8527d16c... Ultra Sound
13875439 5 3377 1809 +1568 coinbase 0x8db2a99d... Aestus
13874496 1 3329 1763 +1566 lido 0x855b00e6... BloXroute Max Profit
13872359 5 3370 1809 +1561 luno 0x88a53ec4... BloXroute Regulated
13874863 8 3404 1844 +1560 blockdaemon 0x855b00e6... BloXroute Max Profit
13876942 3 3344 1786 +1558 whale_0xdc8d 0x8db2a99d... BloXroute Max Profit
13870951 4 3355 1798 +1557 luno 0xb26f9666... Titan Relay
13876568 2 3327 1775 +1552 blockdaemon 0x853b0078... BloXroute Max Profit
13877031 0 3304 1752 +1552 whale_0x7791 0x88857150... Ultra Sound
13871709 10 3418 1866 +1552 whale_0xdc8d 0xb67eaa5e... BloXroute Max Profit
13877670 1 3312 1763 +1549 blockdaemon 0xb26f9666... Titan Relay
13876312 0 3299 1752 +1547 blockdaemon_lido 0xa9bd259c... Ultra Sound
13871389 3 3333 1786 +1547 blockdaemon 0xb26f9666... Titan Relay
13875109 2 3321 1775 +1546 blockdaemon_lido 0x856b0004... BloXroute Max Profit
13877439 1 3306 1763 +1543 lido 0x8527d16c... Ultra Sound
13877286 10 3409 1866 +1543 ether.fi 0xb67eaa5e... EthGas
13871202 10 3409 1866 +1543 stakefish_lido 0x856b0004... BloXroute Max Profit
13872461 0 3294 1752 +1542 everstake 0xac23f8cc... BloXroute Max Profit
13871909 1 3304 1763 +1541 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13876988 0 3291 1752 +1539 blockdaemon 0x8527d16c... Ultra Sound
13874950 0 3291 1752 +1539 coinbase 0x88a53ec4... Aestus
13874961 6 3357 1821 +1536 blockdaemon 0x853b0078... BloXroute Regulated
13872690 5 3344 1809 +1535 luno 0x85fb0503... BloXroute Regulated
13877348 1 3297 1763 +1534 whale_0x5cd0 0x853b0078... Titan Relay
13876525 5 3340 1809 +1531 whale_0x8ebd 0x853b0078... BloXroute Max Profit
13877619 7 3359 1832 +1527 gateway.fmas_lido 0x853b0078... Agnostic Gnosis
13876518 1 3290 1763 +1527 coinbase 0x857b0038... Ultra Sound
13871651 1 3290 1763 +1527 luno 0x88a53ec4... BloXroute Regulated
13874825 3 3311 1786 +1525 0x88a53ec4... BloXroute Regulated
13871071 1 3287 1763 +1524 luno 0xb26f9666... Titan Relay
13871163 8 3366 1844 +1522 lido 0x8db2a99d... BloXroute Max Profit
13876488 1 3280 1763 +1517 blockdaemon_lido 0x853b0078... BloXroute Max Profit
13875721 6 3336 1821 +1515 blockdaemon_lido 0x853b0078... BloXroute Max Profit
13876501 0 3267 1752 +1515 everstake 0xb211df49... Aestus
13877912 0 3266 1752 +1514 blockdaemon 0x853b0078... Ultra Sound
13871680 2 3288 1775 +1513 p2porg 0x850b00e0... Flashbots
13877158 6 3333 1821 +1512 blockdaemon 0x8527d16c... Ultra Sound
13875878 5 3321 1809 +1512 blockdaemon 0xb26f9666... Titan Relay
13875350 0 3262 1752 +1510 numic_lido 0x823e0146... Aestus
13875971 0 3260 1752 +1508 blockdaemon 0x8db2a99d... BloXroute Regulated
13876063 8 3350 1844 +1506 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13871832 9 3358 1855 +1503 nethermind_lido 0xb67eaa5e... BloXroute Regulated
13877296 8 3345 1844 +1501 nethermind_lido 0x853b0078... Agnostic Gnosis
13871266 6 3320 1821 +1499 blockdaemon 0xb26f9666... Titan Relay
13874423 1 3260 1763 +1497 luno 0x8527d16c... Ultra Sound
13876775 7 3327 1832 +1495 nethermind_lido 0x853b0078... BloXroute Max Profit
13876558 5 3304 1809 +1495 ether.fi 0xb67eaa5e... EthGas
13876346 0 3245 1752 +1493 blockdaemon 0xb67eaa5e... BloXroute Regulated
13873546 1 3256 1763 +1493 blockdaemon 0x8527d16c... Ultra Sound
13877859 11 3369 1878 +1491 everstake 0x850b00e0... BloXroute Max Profit
13877721 0 3243 1752 +1491 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13874723 10 3357 1866 +1491 0x850b00e0... BloXroute Regulated
13871392 2 3264 1775 +1489 whale_0xedc6 0x85fb0503... BloXroute Max Profit
13875813 3 3273 1786 +1487 revolut 0x823e0146... Ultra Sound
13874750 10 3353 1866 +1487 luno 0x8527d16c... Ultra Sound
13871713 0 3237 1752 +1485 blockdaemon 0xa1da2978... Ultra Sound
13870895 5 3294 1809 +1485 blockdaemon_lido 0x88857150... Ultra Sound
13877671 2 3259 1775 +1484 p2porg 0x850b00e0... BloXroute Regulated
13876003 11 3362 1878 +1484 kraken 0xb26f9666... EthGas
13874531 7 3315 1832 +1483 blockdaemon 0x8527d16c... Ultra Sound
13876791 3 3268 1786 +1482 blockscape_lido 0xac23f8cc... Aestus
13877763 6 3301 1821 +1480 nethermind_lido 0x850b00e0... BloXroute Max Profit
13873913 0 3230 1752 +1478 whale_0xdc8d 0xb26f9666... Titan Relay
13877110 7 3310 1832 +1478 gateway.fmas_lido 0x856b0004... BloXroute Max Profit
13877601 3 3264 1786 +1478 whale_0x8ebd 0x853b0078... BloXroute Max Profit
13876157 5 3286 1809 +1477 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13872015 3 3263 1786 +1477 whale_0x8ebd 0xac23f8cc... Aestus
13871686 2 3250 1775 +1475 blockdaemon_lido 0x8527d16c... Ultra Sound
13876051 5 3281 1809 +1472 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
13871638 8 3315 1844 +1471 blockdaemon_lido 0xb26f9666... Titan Relay
13877072 11 3349 1878 +1471 everstake 0xb26f9666... Titan Relay
13872712 0 3222 1752 +1470 blockdaemon_lido 0x926b7905... BloXroute Max Profit
13876615 5 3279 1809 +1470 blockdaemon_lido 0x88857150... Ultra Sound
13876172 6 3290 1821 +1469 blockdaemon 0xb26f9666... Titan Relay
13877241 8 3311 1844 +1467 whale_0x8ebd 0x8527d16c... Ultra Sound
13875084 1 3229 1763 +1466 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13877517 5 3274 1809 +1465 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13874876 21 3457 1992 +1465 p2porg 0x850b00e0... BloXroute Regulated
13876744 5 3273 1809 +1464 whale_0x8ebd 0x8527d16c... Ultra Sound
13876749 12 3351 1889 +1462 whale_0x8e76 0x850b00e0... BloXroute Regulated
13874635 3 3247 1786 +1461 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
13877337 2 3234 1775 +1459 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13877249 0 3211 1752 +1459 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
13873771 0 3209 1752 +1457 coinbase 0x88a53ec4... Aestus
13876130 8 3300 1844 +1456 p2porg 0xb7c5fbdd... BloXroute Regulated
13873486 3 3242 1786 +1456 nethermind_lido 0x88a53ec4... BloXroute Max Profit
13871221 1 3218 1763 +1455 ether.fi 0x853b0078... Aestus
13872767 10 3319 1866 +1453 gateway.fmas_lido 0xb67eaa5e... BloXroute Regulated
13876266 0 3203 1752 +1451 ether.fi 0xb26f9666... Titan Relay
13876650 5 3258 1809 +1449 everstake 0x8a850621... Titan Relay
13871531 0 3199 1752 +1447 nethermind_lido 0xac23f8cc... BloXroute Max Profit
13873287 7 3275 1832 +1443 nethermind_lido 0xb7c5fbdd... BloXroute Max Profit
13877798 7 3275 1832 +1443 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13874718 0 3192 1752 +1440 numic_lido 0xb67eaa5e... BloXroute Regulated
13877245 3 3226 1786 +1440 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13876766 1 3203 1763 +1440 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
13876236 7 3271 1832 +1439 whale_0x8ebd 0x853b0078... Aestus
13876627 1 3200 1763 +1437 blockdaemon_lido 0x8db2a99d... BloXroute Max Profit
13874125 6 3256 1821 +1435 kiln 0xb67eaa5e... BloXroute Max Profit
13874370 1 3198 1763 +1435 nethermind_lido 0x853b0078... BloXroute Max Profit
13873109 0 3186 1752 +1434 revolut 0xb26f9666... Titan Relay
13877834 0 3186 1752 +1434 whale_0x8ebd 0x8db2a99d... Flashbots
13874048 0 3186 1752 +1434 binance Local Local
13877654 8 3276 1844 +1432 stakingfacilities_lido 0x8527d16c... Ultra Sound
13875877 5 3241 1809 +1432 gateway.fmas_lido 0xb67eaa5e... BloXroute Max Profit
13871628 0 3183 1752 +1431 gateway.fmas_lido 0xac23f8cc... Aestus
13877515 4 3228 1798 +1430 kraken 0xb26f9666... EthGas
13876564 6 3250 1821 +1429 nethermind_lido 0x850b00e0... BloXroute Max Profit
13872866 15 3353 1924 +1429 nethermind_lido 0x850b00e0... BloXroute Max Profit
13875819 1 3192 1763 +1429 stakingfacilities_lido 0x850b00e0... BloXroute Max Profit
13874544 1 3190 1763 +1427 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13876787 1 3189 1763 +1426 ether.fi 0xb26f9666... EthGas
13873724 0 3176 1752 +1424 abyss_finance 0xa0366397... Ultra Sound
13875314 0 3175 1752 +1423 numic_lido 0x851b00b1... Flashbots
13875778 5 3232 1809 +1423 blockdaemon_lido 0x855b00e6... BloXroute Max Profit
13874959 0 3174 1752 +1422 solo_stakers Local Local
13873173 6 3242 1821 +1421 coinbase 0xac23f8cc... Aestus
13877166 18 3379 1958 +1421 coinbase 0x8db2a99d... Ultra Sound
13871198 4 3218 1798 +1420 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
13876180 18 3378 1958 +1420 everstake 0x8db2a99d... Aestus
13872002 1 3183 1763 +1420 whale_0x8ebd 0x88857150... Ultra Sound
13872911 6 3240 1821 +1419 blockdaemon_lido 0x855b00e6... BloXroute Max Profit
13876669 0 3170 1752 +1418 blockdaemon 0xb26f9666... Titan Relay
13874877 18 3375 1958 +1417 p2porg 0xb7c5fbdd... BloXroute Max Profit
13871872 1 3179 1763 +1416 bridgetower_lido 0xb4ce6162... Ultra Sound
13872504 5 3222 1809 +1413 blockdaemon_lido 0xb67eaa5e... Titan Relay
13874070 5 3222 1809 +1413 coinbase 0x88a53ec4... Aestus
13876943 0 3162 1752 +1410 kraken 0xb26f9666... EthGas
13876502 8 3252 1844 +1408 kraken 0xb26f9666... EthGas
13876585 0 3160 1752 +1408 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13877221 0 3160 1752 +1408 blockdaemon_lido 0x856b0004... BloXroute Max Profit
13876816 6 3228 1821 +1407 ether.fi 0xb26f9666... EthGas
13871457 2 3182 1775 +1407 gateway.fmas_lido 0x88857150... Ultra Sound
13873698 0 3158 1752 +1406 everstake 0x8527d16c... Ultra Sound
13877365 0 3155 1752 +1403 solo_stakers 0xb26f9666... EthGas
13872044 0 3154 1752 +1402 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
13871901 1 3165 1763 +1402 whale_0x8ebd 0xb4ce6162... Ultra Sound
13877478 5 3209 1809 +1400 kiln 0x853b0078... BloXroute Max Profit
13873607 2 3174 1775 +1399 blockdaemon_lido 0x88857150... Ultra Sound
13874992 1 3162 1763 +1399 whale_0x8ebd 0x8db2a99d... Ultra Sound
13876986 0 3148 1752 +1396 bitstamp 0x83d6a6ab... Flashbots
13876482 0 3147 1752 +1395 kraken 0xb26f9666... EthGas
13876610 0 3146 1752 +1394 gateway.fmas_lido 0x88a53ec4... BloXroute Max Profit
13876653 11 3271 1878 +1393 nethermind_lido 0x855b00e6... BloXroute Max Profit
13871346 0 3144 1752 +1392 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
13875508 13 3292 1901 +1391 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
13877279 1 3154 1763 +1391 blockdaemon 0x88857150... Ultra Sound
13874286 8 3234 1844 +1390 gateway.fmas_lido 0x856b0004... BloXroute Max Profit
13874766 6 3211 1821 +1390 lido 0x8db2a99d... Aestus
13873429 2 3165 1775 +1390 bitstamp 0x8db2a99d... BloXroute Max Profit
13874141 7 3222 1832 +1390 p2porg 0x8db2a99d... BloXroute Max Profit
13877621 1 3153 1763 +1390 gateway.fmas_lido 0x8527d16c... Ultra Sound
13874472 10 3254 1866 +1388 0x850b00e0... BloXroute Max Profit
13877911 2 3162 1775 +1387 kiln 0x823e0146... Flashbots
13877876 0 3138 1752 +1386 blockdaemon 0xb67eaa5e... BloXroute Max Profit
13877709 0 3138 1752 +1386 stakingfacilities_lido 0xb26f9666... Aestus
13874274 1 3149 1763 +1386 coinbase 0x823e0146... Aestus
13873789 0 3135 1752 +1383 gateway.fmas_lido 0xba003e46... BloXroute Max Profit
13877879 6 3203 1821 +1382 solo_stakers 0x853b0078... Agnostic Gnosis
13875879 4 3179 1798 +1381 0x8db2a99d... Aestus
13877043 8 3223 1844 +1379 ether.fi 0xb7c5beef... BloXroute Max Profit
13877753 3 3165 1786 +1379 stakingfacilities_lido 0x850b00e0... BloXroute Max Profit
13877375 1 3142 1763 +1379 everstake 0xb26f9666... Titan Relay
13875706 13 3278 1901 +1377 p2porg 0x88a53ec4... BloXroute Max Profit
13870907 0 3129 1752 +1377 whale_0x7791 0x88857150... Ultra Sound
13877367 3 3163 1786 +1377 bitstamp 0x8527d16c... Ultra Sound
13876392 0 3128 1752 +1376 blockdaemon 0x853b0078... Ultra Sound
13875868 0 3128 1752 +1376 p2porg 0x852b0070... Agnostic Gnosis
13877581 8 3219 1844 +1375 p2porg 0xb26f9666... BloXroute Max Profit
13877371 0 3125 1752 +1373 stakingfacilities_lido 0x88a53ec4... BloXroute Max Profit
13876855 9 3228 1855 +1373 whale_0x8ebd 0x856b0004... BloXroute Max Profit
13872628 6 3193 1821 +1372 nethermind_lido 0x85fb0503... BloXroute Max Profit
13877271 2 3147 1775 +1372 0x8db2a99d... Aestus
13873418 3 3157 1786 +1371 whale_0x8ebd 0x88857150... Ultra Sound
13877384 10 3237 1866 +1371 everstake 0xb26f9666... Titan Relay
13876481 4 3168 1798 +1370 gateway.fmas_lido 0x8db2a99d... Ultra Sound
13877608 2 3144 1775 +1369 whale_0xedc6 0x8db2a99d... Ultra Sound
13877139 0 3121 1752 +1369 bitstamp 0x855b00e6... BloXroute Max Profit
13872312 2 3143 1775 +1368 blockdaemon 0x8527d16c... Ultra Sound
13873575 0 3120 1752 +1368 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13875918 1 3131 1763 +1368 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13875248 3 3153 1786 +1367 figment 0x855b00e6... BloXroute Max Profit
13872070 1 3129 1763 +1366 figment 0x856b0004... Ultra Sound
13872280 0 3117 1752 +1365 p2porg 0xb26f9666... Titan Relay
13877574 0 3116 1752 +1364 p2porg 0x851b00b1... BloXroute Max Profit
13873696 0 3116 1752 +1364 lido 0x852b0070... Ultra Sound
13876770 5 3173 1809 +1364 kiln 0xb26f9666... Titan Relay
13876658 6 3182 1821 +1361 everstake 0xb26f9666... Titan Relay
13871137 0 3113 1752 +1361 everstake 0xa1da2978... Ultra Sound
13872599 0 3111 1752 +1359 nethermind_lido 0x88a53ec4... BloXroute Max Profit
13877564 6 3179 1821 +1358 everstake 0xb26f9666... Titan Relay
13876565 5 3167 1809 +1358 p2porg 0x823e0146... BloXroute Max Profit
13873204 0 3108 1752 +1356 coinbase 0xb67eaa5e... Aestus
13876196 9 3211 1855 +1356 gateway.fmas_lido 0x856b0004... BloXroute Max Profit
13871385 3 3141 1786 +1355 whale_0x8ebd 0x88857150... Ultra Sound
13871822 1 3118 1763 +1355 whale_0x8ebd 0xb26f9666... Titan Relay
13875522 0 3105 1752 +1353 p2porg 0x852b0070... Agnostic Gnosis
13877094 7 3185 1832 +1353 p2porg 0x856b0004... BloXroute Max Profit
13875171 5 3161 1809 +1352 p2porg 0xb26f9666... Titan Relay
13877000 0 3102 1752 +1350 abyss_finance 0x8db2a99d... Ultra Sound
13873693 0 3102 1752 +1350 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13876763 5 3158 1809 +1349 whale_0x8ebd 0xb26f9666... BloXroute Regulated
13876835 5 3158 1809 +1349 bitstamp 0x8527d16c... Ultra Sound
13875053 8 3192 1844 +1348 gateway.fmas_lido 0x853b0078... BloXroute Max Profit
13875289 7 3180 1832 +1348 coinbase 0x93b11bec... Flashbots
13876674 5 3157 1809 +1348 blockdaemon_lido 0x823e0146... Ultra Sound
13873200 1 3109 1763 +1346 p2porg 0x856b0004... BloXroute Max Profit
13871875 0 3097 1752 +1345 whale_0x8ebd 0xb26f9666... Titan Relay
13877897 0 3096 1752 +1344 whale_0x8ebd 0x852b0070... Ultra Sound
13871863 2 3117 1775 +1342 whale_0x8ebd 0x856b0004... Aestus
13876443 2 3116 1775 +1341 whale_0x8ebd 0x88857150... Ultra Sound
13877297 2 3116 1775 +1341 p2porg 0x853b0078... BloXroute Regulated
13877379 1 3103 1763 +1340 whale_0x8ebd 0xb26f9666... BloXroute Regulated
13877898 0 3091 1752 +1339 p2porg 0x88857150... Ultra Sound
13876337 0 3091 1752 +1339 p2porg 0x8527d16c... Ultra Sound
13876551 3 3125 1786 +1339 bitstamp 0x856b0004... BloXroute Max Profit
13873649 0 3089 1752 +1337 blockdaemon_lido 0xb26f9666... Titan Relay
13872896 5 3145 1809 +1336 lido 0x88a53ec4... BloXroute Regulated
13877717 0 3087 1752 +1335 whale_0x8ebd 0xb26f9666... BloXroute Max Profit
13877237 5 3144 1809 +1335 everstake 0x850b00e0... BloXroute Max Profit
13876800 0 3086 1752 +1334 whale_0x9212 0x8527d16c... Ultra Sound
13876897 0 3084 1752 +1332 whale_0x8ebd 0xb26f9666... Titan Relay
13876053 0 3084 1752 +1332 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13872810 0 3083 1752 +1331 whale_0x8ebd 0x8527d16c... Ultra Sound
13875607 1 3094 1763 +1331 lido 0x8527d16c... Ultra Sound
13872540 8 3174 1844 +1330 gateway.fmas_lido 0x8527d16c... Ultra Sound
13870829 0 3081 1752 +1329 blockdaemon_lido 0xb26f9666... Titan Relay
13877633 0 3081 1752 +1329 everstake 0xb26f9666... Titan Relay
13874331 1 3092 1763 +1329 whale_0x8ebd 0xb7c5e609... BloXroute Max Profit
13874506 6 3148 1821 +1327 blockdaemon_lido 0xb26f9666... Titan Relay
13877882 0 3079 1752 +1327 p2porg 0x851b00b1... Flashbots
13875661 0 3079 1752 +1327 whale_0x8ebd 0x8db2a99d... BloXroute Regulated
13871458 10 3193 1866 +1327 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13876401 3 3111 1786 +1325 whale_0xedc6 0x856b0004... BloXroute Max Profit
13876359 0 3076 1752 +1324 p2porg 0x88a53ec4... BloXroute Max Profit
13873182 9 3179 1855 +1324 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13876153 0 3075 1752 +1323 0x8a850621... Titan Relay
13874184 7 3155 1832 +1323 bitstamp 0x8db2a99d... Ultra Sound
13874962 6 3143 1821 +1322 whale_0x8ebd 0x8527d16c... Ultra Sound
13877561 2 3097 1775 +1322 p2porg 0x855b00e6... Flashbots
13873326 0 3074 1752 +1322 p2porg 0x856b0004... Ultra Sound
13877290 3 3108 1786 +1322 p2porg 0x8db2a99d... BloXroute Regulated
13870998 1 3085 1763 +1322 everstake 0x8a850621... Titan Relay
13877010 8 3165 1844 +1321 everstake 0x8527d16c... Ultra Sound
13875614 6 3140 1821 +1319 ether.fi 0x8527d16c... Ultra Sound
13871079 3 3104 1786 +1318 p2porg 0x8db2a99d... Ultra Sound
13871316 6 3138 1821 +1317 kiln 0xac23f8cc... Flashbots
13876547 1 3078 1763 +1315 kiln 0x88a53ec4... BloXroute Regulated
13875227 4 3112 1798 +1314 kiln 0x855b00e6... BloXroute Max Profit
13875036 0 3066 1752 +1314 p2porg 0xa0366397... Ultra Sound
13874163 0 3066 1752 +1314 p2porg 0x852b0070... Ultra Sound
13871755 5 3123 1809 +1314 kiln 0xb67eaa5e... BloXroute Max Profit
13874432 8 3157 1844 +1313 ether.fi 0x8db2a99d... Aestus
13876781 0 3064 1752 +1312 p2porg 0xb26f9666... BloXroute Max Profit
13876815 5 3121 1809 +1312 0xb67eaa5e... BloXroute Regulated
13877516 2 3083 1775 +1308 everstake 0x853b0078... BloXroute Max Profit
13873991 2 3082 1775 +1307 ether.fi 0x855b00e6... BloXroute Max Profit
13874388 0 3059 1752 +1307 blockdaemon 0x852b0070... BloXroute Max Profit
13872623 0 3059 1752 +1307 figment 0x88a53ec4... BloXroute Regulated
13872914 1 3070 1763 +1307 p2porg 0x88857150... Ultra Sound
13871930 10 3173 1866 +1307 ether.fi 0x88a53ec4... BloXroute Max Profit
13873993 5 3114 1809 +1305 ether.fi 0x8527d16c... Ultra Sound
13874107 3 3091 1786 +1305 coinbase 0x856b0004... Agnostic Gnosis
13871349 9 3159 1855 +1304 blockdaemon 0x8527d16c... Ultra Sound
13875196 1 3067 1763 +1304 whale_0x8ebd 0x856b0004... BloXroute Max Profit
13877472 4 3101 1798 +1303 whale_0x8ebd 0x853b0078... Agnostic Gnosis
13877050 0 3055 1752 +1303 gateway.fmas_lido 0xb67eaa5e... Ultra Sound
13875818 0 3054 1752 +1302 everstake 0xb26f9666... BloXroute Regulated
13871304 5 3111 1809 +1302 ether.fi 0x88857150... Ultra Sound
13876715 0 3053 1752 +1301 ether.fi 0xb26f9666... Titan Relay
13877247 7 3133 1832 +1301 kiln 0x855b00e6... BloXroute Max Profit
13877642 1 3064 1763 +1301 everstake 0x8527d16c... Ultra Sound
13876997 7 3132 1832 +1300 kraken 0x88857150... Ultra Sound
13874957 3 3086 1786 +1300 p2porg 0x853b0078... Agnostic Gnosis
13876783 0 3051 1752 +1299 0x852b0070... BloXroute Max Profit
13877735 4 3095 1798 +1297 kiln 0x88a53ec4... BloXroute Regulated
13870919 0 3049 1752 +1297 p2porg 0xb67eaa5e... Aestus
13870812 4 3094 1798 +1296 whale_0x8ebd 0x85fb0503... BloXroute Max Profit
13873014 0 3048 1752 +1296 p2porg 0x852b0070... BloXroute Max Profit
13875523 8 3136 1844 +1292 bitstamp 0x853b0078... BloXroute Max Profit
13875565 0 3044 1752 +1292 kiln 0x8db2a99d... Aestus
13875851 0 3044 1752 +1292 ether.fi 0x8db2a99d... BloXroute Regulated
13870909 3 3076 1786 +1290 p2porg 0x8527d16c... Ultra Sound
13871522 1 3053 1763 +1290 ether.fi 0x88a53ec4... BloXroute Max Profit
13873449 0 3041 1752 +1289 whale_0x23be 0xb26f9666... BloXroute Max Profit
13873893 8 3131 1844 +1287 0x853b0078... Agnostic Gnosis
13872528 5 3096 1809 +1287 p2porg 0x8527d16c... Ultra Sound
13874182 1 3049 1763 +1286 ether.fi 0x850b00e0... BloXroute Max Profit
13871486 0 3037 1752 +1285 coinbase 0x8db2a99d... Aestus
13875349 3 3071 1786 +1285 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13872984 1 3047 1763 +1284 whale_0x8ebd 0x856b0004... Aestus
13871999 0 3035 1752 +1283 p2porg 0xb26f9666... BloXroute Max Profit
13874237 9 3138 1855 +1283 blockdaemon 0x8527d16c... Ultra Sound
13877874 4 3080 1798 +1282 kiln 0x88857150... Ultra Sound
13871530 5 3091 1809 +1282 p2porg 0x8527d16c... Ultra Sound
13874855 1 3045 1763 +1282 kiln 0xb67eaa5e... BloXroute Max Profit
13874569 1 3045 1763 +1282 whale_0xedc6 0x8527d16c... Ultra Sound
13875892 2 3056 1775 +1281 p2porg 0x8db2a99d... Aestus
13872430 0 3033 1752 +1281 ether.fi 0xb26f9666... Titan Relay
13875656 4 3077 1798 +1279 p2porg 0x8db2a99d... BloXroute Max Profit
13875801 7 3111 1832 +1279 coinbase 0xac23f8cc... Aestus
13877899 5 3088 1809 +1279 whale_0xdd6c 0xb26f9666... Titan Relay
13870960 0 3030 1752 +1278 whale_0xad3b 0x8527d16c... Ultra Sound
13874510 5 3087 1809 +1278 whale_0x8ebd 0x8527d16c... Ultra Sound
13876277 6 3098 1821 +1277 p2porg 0xb26f9666... Titan Relay
13874759 5 3086 1809 +1277 whale_0x8ebd 0xb7c5c39a... BloXroute Max Profit
13877258 1 3040 1763 +1277 p2porg 0xb26f9666... BloXroute Max Profit
13870802 11 3154 1878 +1276 whale_0x8ebd 0x88857150... Ultra Sound
13876500 14 3187 1912 +1275 nethermind_lido 0x853b0078... BloXroute Max Profit
13875143 9 3128 1855 +1273 p2porg 0x823e0146... BloXroute Max Profit
13872929 5 3082 1809 +1273 whale_0x8ebd 0x8527d16c... Ultra Sound
13877981 0 3024 1752 +1272 p2porg 0x8db2a99d... Ultra Sound
13873518 0 3024 1752 +1272 lido 0x853b0078... Agnostic Gnosis
13875184 16 3207 1935 +1272 p2porg 0x853b0078... BloXroute Regulated
13876154 5 3081 1809 +1272 p2porg 0x8527d16c... Ultra Sound
13876332 0 3023 1752 +1271 kiln 0x88a53ec4... BloXroute Max Profit
13872791 0 3023 1752 +1271 p2porg 0xb26f9666... BloXroute Regulated
13872433 5 3080 1809 +1271 everstake 0x88857150... Ultra Sound
13872217 17 3217 1947 +1270 coinbase 0xb26f9666... Titan Relay
13872841 5 3079 1809 +1270 p2porg 0x8527d16c... Ultra Sound
13871982 4 3067 1798 +1269 p2porg 0xb26f9666... BloXroute Max Profit
Total anomalies: 404

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