hess8. Daily Number of New Wallets
    Updated 2025-05-01
    with new as (select min(block_timestamp) as date,
    (from_address) as users
    from mezo.testnet.fact_transactions
    where TX_SUCCEEDED = 'TRUE'
    group by 2)

    select date::date as "Date",
    count(DISTINCT users) as "New Address",
    sum("New Address") over (order by "Date" asc) as "Cumulative New Addresses"
    from new
    where date >= '2025-03-01'
    group by 1




    Last run: 27 days ago
    Date
    New Address
    Cumulative New Addresses
    1
    2025-04-21 00:00:00.000105712713
    2
    2025-04-22 00:00:00.00083113544
    3
    2025-04-29 00:00:00.000579629490
    4
    2025-04-03 00:00:00.0003071204
    5
    2025-04-18 00:00:00.00071110007
    6
    2025-03-31 00:00:00.000171425
    7
    2025-04-26 00:00:00.000109517154
    8
    2025-03-30 00:00:00.000161254
    9
    2025-04-06 00:00:00.0004142633
    10
    2025-04-04 00:00:00.0005121716
    11
    2025-04-07 00:00:00.0005003133
    12
    2025-04-14 00:00:00.0005317098
    13
    2025-04-11 00:00:00.0005495429
    14
    2025-04-05 00:00:00.0005032219
    15
    2025-04-19 00:00:00.00094010947
    16
    2025-04-10 00:00:00.0005894880
    17
    2025-04-30 00:00:00.000129530785
    18
    2025-04-13 00:00:00.0004326567
    19
    2025-04-12 00:00:00.0007066135
    20
    2025-04-27 00:00:00.000568122835
    34
    1KB
    4s