moonshot21Daily Unique Wallets
    Updated 2025-02-20
    WITH first_interaction AS (
    SELECT
    TX_FROM,
    MIN(DATE_TRUNC('day', BLOCK_TIMESTAMP)) AS first_interaction_day
    FROM eclipse.core.fact_transfers
    GROUP BY TX_FROM
    ),

    daily_new_wallets AS (
    SELECT
    first_interaction_day AS day,
    COUNT(DISTINCT TX_FROM) AS new_wallets
    FROM first_interaction
    GROUP BY first_interaction_day
    )

    SELECT
    day,
    new_wallets,
    SUM(new_wallets) OVER (ORDER BY day) AS total_unique_wallets
    FROM daily_new_wallets
    ORDER BY day DESC;
    Last run: 11 days ago
    DAY
    NEW_WALLETS
    TOTAL_UNIQUE_WALLETS
    1
    2025-02-20 00:00:00.0001243632943
    2
    2025-02-19 00:00:00.0002684631700
    3
    2025-02-18 00:00:00.0003511629016
    4
    2025-02-17 00:00:00.0004037625505
    5
    2025-02-16 00:00:00.0003833621468
    6
    2025-02-15 00:00:00.0003934617635
    7
    2025-02-14 00:00:00.0003953613701
    8
    2025-02-13 00:00:00.0005436609748
    9
    2025-02-12 00:00:00.0006290604312
    10
    2025-02-11 00:00:00.0007912598022
    11
    2025-02-10 00:00:00.0005911590110
    12
    2025-02-09 00:00:00.0005784584199
    13
    2025-02-08 00:00:00.0004162578415
    14
    2025-02-07 00:00:00.0003945574253
    15
    2025-02-06 00:00:00.0006715570308
    16
    2025-02-05 00:00:00.0005728563593
    17
    2025-02-04 00:00:00.0004306557865
    18
    2025-02-03 00:00:00.0003679553559
    19
    2025-02-02 00:00:00.0005514549880
    20
    2025-02-01 00:00:00.0004554544366
    ...
    180
    7KB
    3s