Fri, Mar 6, 2026

Propagation anomalies - 2026-03-06

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-06' AND slot_start_date_time < '2026-03-06'::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-06' AND slot_start_date_time < '2026-03-06'::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-06' AND slot_start_date_time < '2026-03-06'::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-06' AND slot_start_date_time < '2026-03-06'::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-06' AND slot_start_date_time < '2026-03-06'::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-06' AND slot_start_date_time < '2026-03-06'::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-06' AND slot_start_date_time < '2026-03-06'::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-06' AND slot_start_date_time < '2026-03-06'::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,165
MEV blocks: 6,655 (92.9%)
Local blocks: 510 (7.1%)

Anomaly detection method

The method:

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

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

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

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

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

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

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

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

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

print(f"Regression: block_ms = {intercept:.1f} + {slope:.2f} × blob_count (R² = {r_value**2:.3f})")
print(f"Residual σ = {residual_std:.1f}ms")
print(f"Anomalies (>2σ slow): {n_anomalies:,} ({pct_anomalies:.1f}%)")
Regression: block_ms = 1759.3 + 18.98 × blob_count (R² = 0.014)
Residual σ = 649.0ms
Anomalies (>2σ slow): 361 (5.0%)
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
13832667 0 6620 1759 +4861 csm_operator162_lido Local Local
13832055 0 6348 1759 +4589 whale_0x3212 Local Local
13832608 0 5639 1759 +3880 upbit Local Local
13831128 6 4721 1873 +2848 whale_0xba8f Local Local
13829728 0 4568 1759 +2809 upbit Local Local
13827616 0 4259 1759 +2500 stakefish Local Local
13834213 0 4180 1759 +2421 whale_0x8ebd 0x857b0038... Ultra Sound
13833093 7 4238 1892 +2346 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13834528 0 3972 1759 +2213 whale_0x37c1 Local Local
13832974 0 3935 1759 +2176 everstake 0x99dbe3e8... Titan Relay
13833651 1 3930 1778 +2152 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
13833645 0 3901 1759 +2142 Local Local
13832547 0 3863 1759 +2104 nethermind_lido Local Local
13833480 0 3853 1759 +2094 nethermind_lido Local Local
13832935 0 3833 1759 +2074 whale_0x8ebd Local Local
13833825 2 3840 1797 +2043 whale_0x8ebd 0x850b00e0... BloXroute Max Profit
13830036 0 3791 1759 +2032 whale_0x8ebd Local Local
13829224 0 3787 1759 +2028 whale_0x8ebd 0x8a850621... Titan Relay
13829404 3 3834 1816 +2018 0xb26f9666... Titan Relay
13832640 0 3757 1759 +1998 whale_0x1435 Local Local
13828124 0 3751 1759 +1992 nethermind_lido 0xb26f9666... Titan Relay
13832864 0 3743 1759 +1984 blockdaemon_lido 0x851b00b1... Ultra Sound
13833935 0 3734 1759 +1975 whale_0x8ebd 0x88857150... Ultra Sound
13833824 0 3727 1759 +1968 everstake_lido 0x8527d16c... Ultra Sound
13832421 7 3858 1892 +1966 everstake 0x8db2a99d... Flashbots
13828630 0 3721 1759 +1962 nethermind_lido 0xb26f9666... Titan Relay
13830662 0 3696 1759 +1937 solo_stakers Local Local
13829385 15 3976 2044 +1932 stakefish Local Local
13834626 0 3690 1759 +1931 nethermind_lido 0x850b00e0... Flashbots
13834784 8 3841 1911 +1930 nethermind_lido 0x88a53ec4... BloXroute Max Profit
13832069 1 3708 1778 +1930 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13834498 1 3703 1778 +1925 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13831519 1 3701 1778 +1923 whale_0x8ebd 0x857b0038... Ultra Sound
13834502 0 3682 1759 +1923 whale_0x8ebd Local Local
13833441 6 3789 1873 +1916 blockdaemon_lido 0xb26f9666... Titan Relay
13830810 0 3647 1759 +1888 whale_0x8ebd 0x8527d16c... Ultra Sound
13831493 5 3728 1854 +1874 nethermind_lido 0xb26f9666... Titan Relay
13832203 3 3688 1816 +1872 stakefish_lido 0x855b00e6... BloXroute Max Profit
13829440 5 3706 1854 +1852 liquid_collective 0xb26f9666... Titan Relay
13831557 0 3611 1759 +1852 whale_0x8ebd 0xb4ce6162... Ultra Sound
13833412 5 3705 1854 +1851 solo_stakers 0x8527d16c... Ultra Sound
13831619 2 3648 1797 +1851 stakefish Local Local
13834147 0 3610 1759 +1851 everstake 0x8527d16c... Ultra Sound
13831105 11 3805 1968 +1837 whale_0x8ebd 0x8527d16c... Ultra Sound
13834087 5 3690 1854 +1836 nethermind_lido 0x850b00e0... BloXroute Max Profit
13830331 1 3609 1778 +1831 stakefish Local Local
13832951 1 3607 1778 +1829 kiln 0xb26f9666... Titan Relay
13828028 5 3679 1854 +1825 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13831532 13 3828 2006 +1822 stakely_lido 0xb26f9666... Titan Relay
13834458 4 3651 1835 +1816 everstake 0x850b00e0... BloXroute Max Profit
13834234 3 3632 1816 +1816 everstake 0x857b0038... Ultra Sound
13834677 4 3642 1835 +1807 luno 0xb26f9666... Titan Relay
13828032 2 3604 1797 +1807 stakefish Local Local
13834714 0 3563 1759 +1804 everstake 0xa0366397... Ultra Sound
13833004 0 3555 1759 +1796 coinbase 0x852b0070... Agnostic Gnosis
13831572 9 3725 1930 +1795 stakefish Local Local
13834131 6 3668 1873 +1795 whale_0x8ebd 0x88857150... Ultra Sound
13832880 0 3547 1759 +1788 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13833252 3 3601 1816 +1785 whale_0xdc8d 0xb26f9666... Titan Relay
13832997 1 3562 1778 +1784 everstake 0x8db2a99d... Flashbots
13827957 1 3559 1778 +1781 nethermind_lido 0xb67eaa5e... BloXroute Regulated
13831019 5 3629 1854 +1775 whale_0x8ebd 0x8527d16c... Ultra Sound
13829808 2 3568 1797 +1771 blockdaemon 0x857b0038... Ultra Sound
13833940 3 3581 1816 +1765 everstake 0x8527d16c... Ultra Sound
13834450 5 3618 1854 +1764 everstake 0x823e0146... BloXroute Max Profit
13834106 0 3523 1759 +1764 stakefish Local Local
13831808 19 3867 2120 +1747 whale_0x8ebd 0x8527d16c... Ultra Sound
13834160 7 3638 1892 +1746 everstake 0x853b0078... BloXroute Max Profit
13829482 0 3505 1759 +1746 nethermind_lido 0x823e0146... BloXroute Max Profit
13832958 0 3505 1759 +1746 kraken 0xb26f9666... EthGas
13831330 3 3549 1816 +1733 stakefish Local Local
13832060 4 3563 1835 +1728 solo_stakers Local Local
13832507 5 3579 1854 +1725 nethermind_lido 0x850b00e0... BloXroute Max Profit
13831892 0 3480 1759 +1721 lido 0xb26f9666... Aestus
13833600 6 3588 1873 +1715 bitstamp 0x8527d16c... Ultra Sound
13827891 7 3601 1892 +1709 whale_0x8ebd 0x88857150... Ultra Sound
13828089 6 3582 1873 +1709 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13834471 1 3481 1778 +1703 blockdaemon_lido 0x82c466b9... BloXroute Regulated
13834080 0 3459 1759 +1700 whale_0x8ebd 0x8a850621... Titan Relay
13829378 2 3496 1797 +1699 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
13833601 5 3550 1854 +1696 whale_0x8ebd 0xb26f9666... Titan Relay
13833192 3 3512 1816 +1696 ether.fi 0xb26f9666... EthGas
13830001 11 3659 1968 +1691 whale_0x8f33 Local Local
13832924 6 3560 1873 +1687 whale_0x8ebd Local Local
13830741 4 3521 1835 +1686 nethermind_lido 0xac23f8cc... Flashbots
13832217 11 3653 1968 +1685 nethermind_lido 0x88a53ec4... BloXroute Max Profit
13828650 5 3536 1854 +1682 nethermind_lido 0xb7c5e609... BloXroute Max Profit
13827793 1 3460 1778 +1682 blockdaemon 0x8a850621... Titan Relay
13829932 0 3438 1759 +1679 stakely_lido 0xb26f9666... Titan Relay
13833965 10 3626 1949 +1677 blockdaemon_lido 0xb26f9666... Titan Relay
13827769 2 3469 1797 +1672 blockdaemon_lido 0x85fb0503... BloXroute Max Profit
13832054 0 3426 1759 +1667 dappnode 0x8527d16c... Ultra Sound
13830813 0 3423 1759 +1664 whale_0x8ebd 0x852b0070... Ultra Sound
13831522 11 3627 1968 +1659 whale_0x8ebd 0x853b0078... Aestus
13833038 1 3436 1778 +1658 whale_0xdc8d 0x853b0078... BloXroute Regulated
13827674 5 3501 1854 +1647 blockdaemon 0x8a850621... Titan Relay
13830565 10 3589 1949 +1640 whale_0xad1d Local Local
13830925 1 3416 1778 +1638 whale_0xad1d Local Local
13829025 9 3564 1930 +1634 whale_0x4685 0x856b0004... Agnostic Gnosis
13832979 5 3487 1854 +1633 whale_0xdc8d 0x8527d16c... Ultra Sound
13828736 3 3448 1816 +1632 bitstamp 0x8527d16c... Ultra Sound
13834569 3 3448 1816 +1632 blockdaemon_lido 0x88857150... Ultra Sound
13831750 1 3409 1778 +1631 everstake 0x88a53ec4... BloXroute Regulated
13833018 6 3503 1873 +1630 everstake 0xb26f9666... Aestus
13832646 0 3385 1759 +1626 blockdaemon 0x82c466b9... Ultra Sound
13833955 8 3535 1911 +1624 whale_0xc541 0x8527d16c... Ultra Sound
13830204 6 3494 1873 +1621 nethermind_lido 0xb67eaa5e... BloXroute Max Profit
13832810 8 3530 1911 +1619 blockdaemon_lido 0x88857150... Ultra Sound
13833174 5 3473 1854 +1619 kraken 0xb26f9666... EthGas
13834708 5 3471 1854 +1617 everstake 0x88a53ec4... BloXroute Regulated
13832413 3 3430 1816 +1614 blockdaemon 0x88510a78... Ultra Sound
13834274 1 3389 1778 +1611 blockdaemon_lido 0x8527d16c... Ultra Sound
13830806 13 3616 2006 +1610 blockdaemon 0x8527d16c... Ultra Sound
13828155 12 3597 1987 +1610 stakefish Local Local
13830167 0 3369 1759 +1610 stader 0xba003e46... BloXroute Max Profit
13831644 0 3366 1759 +1607 blockdaemon_lido 0x8db2a99d... Ultra Sound
13829984 0 3350 1759 +1591 gateway.fmas_lido 0x8527d16c... Ultra Sound
13834414 8 3500 1911 +1589 whale_0x8ebd 0x88857150... Ultra Sound
13828996 3 3404 1816 +1588 p2porg 0x8527d16c... Ultra Sound
13833821 0 3346 1759 +1587 kiln 0xb26f9666... Titan Relay
13830522 5 3436 1854 +1582 blockdaemon 0x8a850621... Titan Relay
13832354 0 3339 1759 +1580 everstake 0xb26f9666... Titan Relay
13833934 0 3337 1759 +1578 blockdaemon_lido 0x88857150... Ultra Sound
13832879 5 3431 1854 +1577 stakefish Local Local
13829095 0 3330 1759 +1571 ether.fi 0xb26f9666... Titan Relay
13832007 8 3478 1911 +1567 blockdaemon_lido 0x853b0078... BloXroute Regulated
13829236 3 3383 1816 +1567 whale_0xdc8d 0x853b0078... BloXroute Regulated
13833201 6 3438 1873 +1565 whale_0x8ebd 0x8527d16c... Ultra Sound
13828231 5 3415 1854 +1561 everstake 0x88a53ec4... BloXroute Regulated
13831543 10 3508 1949 +1559 luno 0xb26f9666... Titan Relay
13832067 0 3317 1759 +1558 blockdaemon 0xb26f9666... Titan Relay
13829614 6 3422 1873 +1549 everstake 0xb26f9666... Aestus
13831793 5 3403 1854 +1549 blockdaemon 0xb67eaa5e... BloXroute Regulated
13828619 0 3305 1759 +1546 blockdaemon 0xb4ce6162... Ultra Sound
13831213 6 3418 1873 +1545 coinbase 0xac23f8cc... Aestus
13829930 0 3304 1759 +1545 blockdaemon 0xb26f9666... Titan Relay
13829472 4 3378 1835 +1543 whale_0x8ebd Local Local
13827927 6 3413 1873 +1540 revolut 0xb67eaa5e... BloXroute Regulated
13834774 6 3412 1873 +1539 stakefish Local Local
13832408 0 3298 1759 +1539 blockdaemon_lido 0x852b0070... BloXroute Max Profit
13828893 5 3391 1854 +1537 blockdaemon_lido 0x8db2a99d... Ultra Sound
13827840 0 3296 1759 +1537 figment 0x852b0070... Agnostic Gnosis
13831410 12 3517 1987 +1530 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13834689 1 3304 1778 +1526 blockdaemon 0x853b0078... Ultra Sound
13830466 5 3379 1854 +1525 luno 0xb26f9666... Titan Relay
13831307 0 3282 1759 +1523 blockdaemon_lido 0x8db2a99d... BloXroute Max Profit
13830695 8 3430 1911 +1519 blockdaemon 0x8a850621... Titan Relay
13831776 5 3369 1854 +1515 stakingfacilities_lido 0x8527d16c... Ultra Sound
13834216 3 3330 1816 +1514 kraken 0xb26f9666... EthGas
13828039 0 3272 1759 +1513 everstake 0xb67eaa5e... BloXroute Max Profit
13833892 1 3290 1778 +1512 0xb67eaa5e... BloXroute Regulated
13833368 0 3270 1759 +1511 whale_0xa7d9 0xb67eaa5e... BloXroute Max Profit
13828419 2 3307 1797 +1510 blockdaemon_lido 0x853b0078... BloXroute Max Profit
13834473 11 3475 1968 +1507 blockdaemon_lido 0x8527d16c... Ultra Sound
13832765 18 3606 2101 +1505 nethermind_lido 0x8db2a99d... Ultra Sound
13830154 5 3358 1854 +1504 everstake 0xb26f9666... Titan Relay
13832966 5 3357 1854 +1503 ether.fi 0xb67eaa5e... EthGas
13829152 0 3262 1759 +1503 p2porg 0xb26f9666... BloXroute Max Profit
13827849 2 3299 1797 +1502 whale_0xad1d Local Local
13834361 5 3355 1854 +1501 everstake 0xb26f9666... Titan Relay
13831796 10 3448 1949 +1499 everstake 0xb67eaa5e... BloXroute Regulated
13831547 10 3448 1949 +1499 everstake 0xb7c5e609... BloXroute Max Profit
13831781 0 3258 1759 +1499 blockdaemon 0xb67eaa5e... BloXroute Regulated
13829066 1 3276 1778 +1498 everstake 0x853b0078... Agnostic Gnosis
13833981 1 3274 1778 +1496 whale_0xdc8d 0xb26f9666... Titan Relay
13833870 10 3440 1949 +1491 coinbase 0x88a53ec4... BloXroute Max Profit
13834469 0 3250 1759 +1491 blockdaemon 0x8db2a99d... BloXroute Max Profit
13834549 8 3400 1911 +1489 blockdaemon 0xb26f9666... Titan Relay
13833658 4 3324 1835 +1489 bitstamp 0x853b0078... BloXroute Max Profit
13829084 4 3324 1835 +1489 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13832463 4 3323 1835 +1488 0xb26f9666... Titan Relay
13833573 6 3359 1873 +1486 luno 0x8527d16c... Ultra Sound
13834592 2 3282 1797 +1485 whale_0xedc6 0x856b0004... Agnostic Gnosis
13829146 3 3298 1816 +1482 blockdaemon 0x853b0078... BloXroute Regulated
13828913 2 3278 1797 +1481 whale_0xdc8d 0x853b0078... BloXroute Regulated
13828993 0 3240 1759 +1481 everstake 0xb26f9666... Titan Relay
13832040 0 3238 1759 +1479 everstake 0x852b0070... Agnostic Gnosis
13828432 4 3312 1835 +1477 blockdaemon 0x8527d16c... Ultra Sound
13832698 0 3236 1759 +1477 whale_0xdc8d 0x853b0078... Ultra Sound
13830946 6 3349 1873 +1476 blockdaemon 0x853b0078... Ultra Sound
13833206 0 3235 1759 +1476 kraken 0xb26f9666... EthGas
13827745 0 3234 1759 +1475 everstake 0x8527d16c... Ultra Sound
13831790 8 3385 1911 +1474 whale_0x8ebd 0xb7c5e609... BloXroute Max Profit
13831567 0 3232 1759 +1473 revolut 0xb26f9666... Titan Relay
13834671 10 3421 1949 +1472 luno 0x88a53ec4... BloXroute Regulated
13834470 6 3345 1873 +1472 kraken 0xb26f9666... EthGas
13830278 6 3343 1873 +1470 everstake 0xb67eaa5e... BloXroute Max Profit
13833626 9 3397 1930 +1467 blockdaemon 0x8527d16c... Ultra Sound
13832518 8 3378 1911 +1467 blockdaemon 0x853b0078... Ultra Sound
13831662 0 3226 1759 +1467 whale_0xdc8d 0xb26f9666... Titan Relay
13833919 7 3358 1892 +1466 everstake 0xb26f9666... Titan Relay
13833019 6 3339 1873 +1466 ether.fi 0xb26f9666... EthGas
13830301 0 3224 1759 +1465 blockdaemon_lido 0x8527d16c... Ultra Sound
13830507 8 3372 1911 +1461 luno 0xb26f9666... Titan Relay
13828944 6 3332 1873 +1459 0x88a53ec4... BloXroute Regulated
13833498 5 3311 1854 +1457 0x88a53ec4... BloXroute Regulated
13832066 0 3216 1759 +1457 blockdaemon_lido 0xb67eaa5e... Titan Relay
13830340 0 3216 1759 +1457 blockdaemon 0xb26f9666... Titan Relay
13829902 0 3215 1759 +1456 whale_0xdc8d 0xb26f9666... Titan Relay
13830072 1 3233 1778 +1455 everstake 0xb26f9666... Aestus
13829916 5 3306 1854 +1452 luno 0x82c466b9... Ultra Sound
13832407 4 3287 1835 +1452 blockdaemon_lido 0x8db2a99d... Ultra Sound
13830582 4 3287 1835 +1452 everstake 0xb26f9666... Titan Relay
13830016 3 3266 1816 +1450 everstake 0xb26f9666... Titan Relay
13833874 8 3360 1911 +1449 kraken 0xb26f9666... EthGas
13830157 5 3300 1854 +1446 whale_0x8ebd 0x8db2a99d... Flashbots
13834585 12 3432 1987 +1445 everstake 0x855b00e6... BloXroute Max Profit
13828645 0 3202 1759 +1443 blockdaemon 0xb4ce6162... Ultra Sound
13828006 0 3201 1759 +1442 rocketpool 0xb67eaa5e... Aestus
13832377 10 3388 1949 +1439 whale_0x7513 0xb67eaa5e... Aestus
13831840 16 3500 2063 +1437 p2porg 0x850b00e0... BloXroute Regulated
13834429 5 3291 1854 +1437 nethermind_lido 0x88857150... Ultra Sound
13828699 2 3234 1797 +1437 whale_0xdc8d 0x8527d16c... Ultra Sound
13832611 0 3195 1759 +1436 whale_0x8ebd 0x856b0004... BloXroute Max Profit
13834183 5 3288 1854 +1434 bitstamp 0xb26f9666... Titan Relay
13829548 1 3210 1778 +1432 coinbase 0x856b0004... Agnostic Gnosis
13831475 8 3342 1911 +1431 whale_0xdc8d 0xb26f9666... Titan Relay
13833229 0 3190 1759 +1431 solo_stakers 0x88a53ec4... Aestus
13833963 0 3190 1759 +1431 whale_0x8ebd 0x88857150... Ultra Sound
13834136 0 3187 1759 +1428 gateway.fmas_lido 0x851b00b1... Flashbots
13828210 8 3338 1911 +1427 whale_0xdc8d 0x853b0078... BloXroute Regulated
13831661 6 3300 1873 +1427 revolut 0xb67eaa5e... BloXroute Regulated
13830219 0 3182 1759 +1423 everstake 0xb26f9666... Aestus
13828659 0 3181 1759 +1422 blockdaemon_lido 0xa412c4b8... Ultra Sound
13830874 10 3370 1949 +1421 whale_0x8ebd 0x853b0078... Aestus
13833436 6 3294 1873 +1421 stakingfacilities_lido 0x856b0004... BloXroute Max Profit
13832129 5 3270 1854 +1416 revolut 0x91b123d8... Ultra Sound
13833015 1 3193 1778 +1415 stakingfacilities_lido 0x88a53ec4... BloXroute Max Profit
13831736 1 3193 1778 +1415 everstake 0xb26f9666... Aestus
13828759 0 3174 1759 +1415 stakingfacilities_lido 0xa9bd259c... Ultra Sound
13834231 10 3363 1949 +1414 kraken 0xb26f9666... EthGas
13829264 1 3192 1778 +1414 gateway.fmas_lido 0x8db2a99d... BloXroute Max Profit
13833342 1 3192 1778 +1414 everstake 0x855b00e6... BloXroute Max Profit
13831225 1 3190 1778 +1412 blockdaemon_lido 0x850b00e0... BloXroute Regulated
13832647 5 3264 1854 +1410 blockdaemon_lido 0x82c466b9... Ultra Sound
13830187 4 3244 1835 +1409 revolut 0xb26f9666... Titan Relay
13833198 0 3168 1759 +1409 p2porg 0x851b00b1... BloXroute Max Profit
13828770 6 3281 1873 +1408 p2porg 0x850b00e0... BloXroute Max Profit
13831818 8 3317 1911 +1406 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13830833 3 3222 1816 +1406 blockdaemon 0xb26f9666... Titan Relay
13832987 0 3165 1759 +1406 coinbase 0x8527d16c... Ultra Sound
13834709 3 3219 1816 +1403 whale_0x8ebd 0xb4ce6162... Ultra Sound
13828544 0 3162 1759 +1403 everstake 0xb26f9666... Titan Relay
13833000 8 3312 1911 +1401 0xb67eaa5e... BloXroute Max Profit
13828431 5 3255 1854 +1401 revolut 0x8527d16c... Ultra Sound
13831025 1 3178 1778 +1400 everstake 0x853b0078... Aestus
13832865 0 3157 1759 +1398 ether.fi 0x852b0070... Agnostic Gnosis
13832753 1 3171 1778 +1393 blockdaemon_lido 0x853b0078... Ultra Sound
13832371 1 3171 1778 +1393 0x853b0078... Aestus
13833356 1 3171 1778 +1393 bitstamp 0x856b0004... BloXroute Max Profit
13828934 0 3152 1759 +1393 gateway.fmas_lido 0x850b00e0... BloXroute Max Profit
13831788 0 3150 1759 +1391 everstake 0xb26f9666... Aestus
13834304 10 3339 1949 +1390 ether.fi 0xb26f9666... EthGas
13834493 5 3244 1854 +1390 stakingfacilities_lido 0x88a53ec4... BloXroute Max Profit
13830061 0 3149 1759 +1390 everstake 0xb26f9666... Titan Relay
13834229 8 3299 1911 +1388 0x853b0078... BloXroute Regulated
13832322 5 3241 1854 +1387 figment 0x93b11bec... Flashbots
13829271 8 3297 1911 +1386 everstake 0xb26f9666... Aestus
13833926 5 3240 1854 +1386 figment 0x8527d16c... Ultra Sound
13834355 0 3144 1759 +1385 everstake 0x88857150... Ultra Sound
13830110 0 3143 1759 +1384 stakingfacilities_lido 0x8527d16c... Ultra Sound
13834381 15 3426 2044 +1382 coinbase 0xb4ce6162... Ultra Sound
13828772 3 3198 1816 +1382 kraken 0xb26f9666... Titan Relay
13830068 0 3141 1759 +1382 p2porg 0x853b0078... Aestus
13830627 9 3311 1930 +1381 0xb26f9666... Titan Relay
13829463 5 3234 1854 +1380 revolut 0xb26f9666... Titan Relay
13831084 1 3158 1778 +1380 nethermind_lido 0x8527d16c... Ultra Sound
13828282 0 3139 1759 +1380 kiln 0xa9bd259c... Flashbots
13827642 10 3328 1949 +1379 whale_0xdc8d 0x853b0078... Ultra Sound
13827917 0 3138 1759 +1379 gateway.fmas_lido 0x852b0070... BloXroute Max Profit
13834208 10 3326 1949 +1377 whale_0x8ebd 0x853b0078... Agnostic Gnosis
13828548 4 3212 1835 +1377 whale_0x8ebd 0xb7c5c39a... BloXroute Max Profit
13830938 0 3136 1759 +1377 p2porg 0x852b0070... Agnostic Gnosis
13830558 0 3136 1759 +1377 ether.fi 0xb26f9666... Titan Relay
13834261 5 3230 1854 +1376 everstake 0x853b0078... Agnostic Gnosis
13833282 5 3229 1854 +1375 kraken 0xb26f9666... EthGas
13834440 7 3263 1892 +1371 kraken 0xb26f9666... EthGas
13833393 4 3205 1835 +1370 ether.fi 0x8527d16c... Ultra Sound
13830647 9 3299 1930 +1369 solo_stakers 0xb26f9666... BloXroute Max Profit
13830632 0 3128 1759 +1369 blockdaemon_lido 0x851b00b1... Ultra Sound
13830009 12 3353 1987 +1366 bitstamp 0xb67eaa5e... BloXroute Max Profit
13829056 6 3239 1873 +1366 stakely_lido 0x8db2a99d... Ultra Sound
13833333 0 3125 1759 +1366 everstake 0x8527d16c... Ultra Sound
13833747 3 3181 1816 +1365 whale_0x8ebd 0x8db2a99d... BloXroute Max Profit
13829921 5 3217 1854 +1363 whale_0xedc6 0xb26f9666... BloXroute Regulated
13833886 1 3140 1778 +1362 ether.fi 0x853b0078... Agnostic Gnosis
13833456 8 3272 1911 +1361 0x8a850621... Titan Relay
13828764 0 3120 1759 +1361 binance 0xb4ce6162... Ultra Sound
13832427 11 3328 1968 +1360 blockdaemon 0xb26f9666... Titan Relay
13828019 5 3214 1854 +1360 whale_0x8ebd 0x8db2a99d... Ultra Sound
13833328 0 3118 1759 +1359 kiln 0x87cc2536... Agnostic Gnosis
13832349 7 3249 1892 +1357 blockdaemon 0xb26f9666... Titan Relay
13834102 1 3133 1778 +1355 p2porg 0x853b0078... BloXroute Regulated
13834568 0 3114 1759 +1355 blockdaemon_lido 0xb67eaa5e... BloXroute Max Profit
13828570 0 3114 1759 +1355 whale_0x8ebd 0xb211df49... Agnostic Gnosis
13828662 4 3189 1835 +1354 blockdaemon 0x853b0078... Ultra Sound
13831858 4 3189 1835 +1354 stakingfacilities_lido 0xb67eaa5e... BloXroute Max Profit
13834400 3 3170 1816 +1354 whale_0x8ebd 0x856b0004... BloXroute Max Profit
13829857 5 3207 1854 +1353 everstake 0x8527d16c... Ultra Sound
13832637 11 3319 1968 +1351 blockdaemon_lido 0xb67eaa5e... BloXroute Regulated
13833501 4 3186 1835 +1351 p2porg 0x850b00e0... BloXroute Regulated
13829850 5 3204 1854 +1350 p2porg 0x850b00e0... BloXroute Regulated
13833376 4 3185 1835 +1350 everstake 0x850b00e0... BloXroute Max Profit
13828894 1 3127 1778 +1349 everstake 0x853b0078... BloXroute Max Profit
13834448 1 3127 1778 +1349 ether.fi 0xb26f9666... EthGas
13831945 6 3221 1873 +1348 whale_0x8ebd 0xb4ce6162... Ultra Sound
13833620 6 3219 1873 +1346 ether.fi 0x856b0004... BloXroute Max Profit
13832277 5 3200 1854 +1346 blockdaemon 0xb26f9666... Titan Relay
13832990 1 3123 1778 +1345 everstake 0xb26f9666... Aestus
13833761 4 3179 1835 +1344 figment 0x853b0078... BloXroute Max Profit
13831601 10 3291 1949 +1342 stakingfacilities_lido 0xb67eaa5e... BloXroute Max Profit
13834489 4 3176 1835 +1341 gateway.fmas_lido 0x853b0078... BloXroute Max Profit
13827776 5 3194 1854 +1340 whale_0x8ebd 0x8527d16c... Ultra Sound
13833234 2 3136 1797 +1339 everstake 0x853b0078... Ultra Sound
13828551 1 3117 1778 +1339 whale_0x8ebd 0xb67eaa5e... BloXroute Max Profit
13829265 1 3117 1778 +1339 p2porg 0x850b00e0... BloXroute Regulated
13834134 5 3192 1854 +1338 p2porg 0x850b00e0... BloXroute Max Profit
13829112 4 3173 1835 +1338 whale_0x8ebd 0xb4ce6162... Ultra Sound
13833166 1 3114 1778 +1336 stakingfacilities_lido 0x823e0146... Flashbots
13830816 4 3170 1835 +1335 whale_0x1435 0x850b00e0... BloXroute Max Profit
13830372 1 3113 1778 +1335 blockdaemon_lido 0x850b00e0... BloXroute Max Profit
13831473 1 3113 1778 +1335 ether.fi 0x855b00e6... BloXroute Max Profit
13829480 0 3094 1759 +1335 whale_0x8ebd 0xb4ce6162... Ultra Sound
13827923 8 3244 1911 +1333 p2porg 0xb67eaa5e... BloXroute Regulated
13830756 0 3091 1759 +1332 0x852b0070... Agnostic Gnosis
13833793 5 3184 1854 +1330 whale_0x8ebd 0x88a53ec4... BloXroute Regulated
13834721 3 3146 1816 +1330 p2porg 0x8db2a99d... Aestus
13831049 13 3335 2006 +1329 luno 0xb26f9666... Titan Relay
13832943 2 3126 1797 +1329 everstake 0x8527d16c... Ultra Sound
13833009 1 3107 1778 +1329 bitstamp 0x88857150... Ultra Sound
13830162 3 3143 1816 +1327 figment 0x853b0078... BloXroute Max Profit
13830930 1 3105 1778 +1327 p2porg 0xac23f8cc... Flashbots
13832443 0 3086 1759 +1327 solo_stakers 0x88857150... Ultra Sound
13831256 1 3104 1778 +1326 p2porg 0x856b0004... Agnostic Gnosis
13829749 4 3159 1835 +1324 whale_0x8ebd 0xb67eaa5e... BloXroute Regulated
13833388 0 3083 1759 +1324 everstake 0xb26f9666... Aestus
13834402 5 3177 1854 +1323 p2porg 0x8527d16c... Ultra Sound
13828347 5 3176 1854 +1322 whale_0x8ebd 0xb4ce6162... Ultra Sound
13830841 1 3098 1778 +1320 p2porg 0x856b0004... Aestus
13834438 6 3191 1873 +1318 everstake 0x88a53ec4... BloXroute Regulated
13831524 2 3115 1797 +1318 p2porg 0x856b0004... Aestus
13828156 0 3076 1759 +1317 kelp 0xb26f9666... Titan Relay
13834524 0 3076 1759 +1317 kiln 0xb26f9666... Titan Relay
13833868 0 3074 1759 +1315 ether.fi 0xb26f9666... EthGas
13829186 0 3073 1759 +1314 p2porg 0x8527d16c... Ultra Sound
13831057 5 3165 1854 +1311 p2porg 0x88510a78... BloXroute Regulated
13831550 10 3259 1949 +1310 whale_0x8ebd 0x88857150... Ultra Sound
13831498 17 3391 2082 +1309 blockdaemon 0xb67eaa5e... BloXroute Regulated
13834263 1 3087 1778 +1309 figment 0x856b0004... Aestus
13829196 6 3181 1873 +1308 p2porg 0x853b0078... Agnostic Gnosis
13830258 3 3123 1816 +1307 coinbase 0xb67eaa5e... BloXroute Regulated
13833250 10 3255 1949 +1306 kraken 0xb26f9666... EthGas
13829168 7 3197 1892 +1305 everstake 0x853b0078... BloXroute Max Profit
13832911 0 3063 1759 +1304 p2porg 0x8527d16c... Ultra Sound
13831515 6 3176 1873 +1303 nethermind_lido 0x8527d16c... Ultra Sound
13827604 5 3157 1854 +1303 coinbase 0x823e0146... Aestus
13834762 5 3157 1854 +1303 blockdaemon_lido 0xb26f9666... Titan Relay
13832253 2 3100 1797 +1303 whale_0x8ebd 0x88a53ec4... BloXroute Max Profit
13828295 5 3155 1854 +1301 everstake 0xb26f9666... Titan Relay
13833375 13 3306 2006 +1300 nethermind_lido 0x853b0078... BloXroute Max Profit
13828488 1 3077 1778 +1299 coinbase 0xb67eaa5e... BloXroute Max Profit
Total anomalies: 361

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