Pine Analyticsdaily-sapphire
    Updated 2025-03-19
    select
    date,
    count(*) as new_users,
    sum(new_users) over (order by date) as total_users

    from (
    select
    signers[0] as wallet,
    min(date(block_timestamp)) as date

    from eclipse.core.fact_transactions
    group by 1
    )
    group by 1

    Last run: about 1 month ago
    DATE
    NEW_USERS
    TOTAL_USERS
    1
    2024-09-27 00:00:00.0003021987
    2
    2024-10-12 00:00:00.0003666690
    3
    2024-10-02 00:00:00.0002943631
    4
    2025-02-01 00:00:00.0008241723380
    5
    2025-02-28 00:00:00.0005802892479
    6
    2025-03-11 00:00:00.0004203944035
    7
    2024-09-10 00:00:00.00017492
    8
    2025-01-08 00:00:00.00014266461989
    9
    2025-01-15 00:00:00.00010237547295
    10
    2025-01-24 00:00:00.0009272647715
    11
    2024-09-21 00:00:00.000123771
    12
    2024-12-12 00:00:00.0001875187261
    13
    2025-02-20 00:00:00.0004480847104
    14
    2024-10-30 00:00:00.00064095224
    15
    2024-10-09 00:00:00.0002825575
    16
    2024-12-26 00:00:00.00014369272478
    17
    2024-09-14 00:00:00.0007561
    18
    2024-10-26 00:00:00.00050292902
    19
    2024-12-24 00:00:00.00021003241154
    20
    2024-12-29 00:00:00.00017281317610
    ...
    207
    8KB
    166s