Eman-RazTotal Number of New Users Over Time
    Updated 2024-01-29
    with tab1 as (select tx_from, min(block_timestamp) as min_date
    from sei.core.fact_transactions
    where tx_succeeded='true'
    group by 1)

    select date_trunc('{{Time_Frame}}',min_date) as "Date", count(distinct tx_from) as "New Users",
    sum("New Users") over (order by "Date" asc) as "Total New Users"
    from tab1
    where min_date::date>=current_date-{{Time_Period}}
    group by 1
    order by 1
    Last run: about 1 year agoAuto-refreshes every 24 hours
    Date
    New Users
    Total New Users
    1
    2023-12-30 00:00:00.00044734473
    2
    2023-12-31 00:00:00.00034627935
    3
    2024-01-01 00:00:00.000457912514
    4
    2024-01-02 00:00:00.000767120185
    5
    2024-01-03 00:00:00.000540025585
    6
    2024-01-04 00:00:00.000621631801
    7
    2024-01-05 00:00:00.0001256144362
    8
    2024-01-06 00:00:00.000952953891
    9
    2024-01-07 00:00:00.000511859009
    10
    2024-01-08 00:00:00.0001080469813
    11
    2024-01-09 00:00:00.0001030980122
    12
    2024-01-10 00:00:00.000836688488
    13
    2024-01-11 00:00:00.000909797585
    14
    2024-01-12 00:00:00.00015867113452
    15
    2024-01-13 00:00:00.00010361123813
    16
    2024-01-14 00:00:00.0007714131527
    17
    2024-01-15 00:00:00.0008014139541
    18
    2024-01-16 00:00:00.0005831145372
    19
    2024-01-17 00:00:00.0008794154166
    20
    2024-01-18 00:00:00.0005445159611
    31
    1KB
    100s