MasiNew Wallets
    Updated 2025-05-12
    with tb1 as (SELECT min(block_timestamp::Date) as day,
    from_address
    FROM mezo.testnet.fact_transactions
    group by 2
    )

    select day,
    count(distinct from_address) as "New Wallets",
    sum("New Wallets") over (order by day asc) as "Cumulative New Wallets"
    from tb1
    group by 1
    Last run: 21 days ago
    DAY
    New Wallets
    Cumulative New Wallets
    1
    2025-04-21 00:00:00.000105712816
    2
    2025-04-22 00:00:00.00083313649
    3
    2025-03-28 00:00:00.0006767
    4
    2025-04-12 00:00:00.0007006239
    5
    2025-05-03 00:00:00.0001205373964
    6
    2025-04-26 00:00:00.000109617261
    7
    2025-05-10 00:00:00.00050079570
    8
    2025-05-02 00:00:00.0002662361911
    9
    2025-04-06 00:00:00.0004152776
    10
    2025-04-20 00:00:00.00071011759
    11
    2025-04-02 00:00:00.0002901038
    12
    2025-04-25 00:00:00.000134716165
    13
    2025-04-23 00:00:00.00065114300
    14
    2025-04-08 00:00:00.0005863868
    15
    2025-04-29 00:00:00.000579929596
    16
    2025-04-18 00:00:00.00071010109
    17
    2025-04-03 00:00:00.0003151353
    18
    2025-04-16 00:00:00.0006078389
    19
    2025-04-27 00:00:00.000568022941
    20
    2025-05-06 00:00:00.000109676716
    46
    2KB
    33s