Eman-RazUsers Growth Over Time
    Updated 7 days ago
    with tab1 as (select signers[0] as user, min(block_timestamp::date) as first_tx_date
    from eclipse.core.fact_transactions
    where succeeded='TRUE'
    group by 1)

    select date_trunc('{{Time_Frame}}',first_tx_date) as "Date", count(distinct user) as "New Users",
    sum("New Users") over (order by "Date") as "Total Number of Users"
    from tab1
    group by 1
    order by 1
    Last run: 7 days ago
    Date
    New Users
    Total Number of Users
    1
    2024-08-25 00:00:00.0002222
    2
    2024-08-26 00:00:00.0002850
    3
    2024-08-27 00:00:00.00076126
    4
    2024-08-28 00:00:00.00053179
    5
    2024-08-29 00:00:00.00026205
    6
    2024-08-30 00:00:00.00027232
    7
    2024-08-31 00:00:00.00029261
    8
    2024-09-01 00:00:00.00022283
    9
    2024-09-02 00:00:00.00011294
    10
    2024-09-03 00:00:00.000121415
    11
    2024-09-04 00:00:00.0005420
    12
    2024-09-05 00:00:00.0006426
    13
    2024-09-06 00:00:00.0006432
    14
    2024-09-07 00:00:00.0008440
    15
    2024-09-08 00:00:00.00016456
    16
    2024-09-09 00:00:00.00019475
    17
    2024-09-10 00:00:00.00017492
    18
    2024-09-11 00:00:00.00021513
    19
    2024-09-12 00:00:00.00018531
    20
    2024-09-13 00:00:00.00022553
    ...
    219
    8KB
    484s