Eman-RazGrowth of Ronin Users Over Time
    Updated 2025-03-19
    with tab1 as (select from_address as user, min(block_timestamp::date) as first_date
    from ronin.core.fact_transactions
    where tx_succeeded='TRUE'
    group by 1)

    select date_trunc('{{Time_Frame}}',first_date) as "Date", count(distinct user) as "New Users",
    sum("New Users") over (order by "Date" asc) as "Total Users"
    from tab1
    group by 1
    order by 1
    Last run: about 1 month ago
    Date
    New Users
    Total Users
    1
    2024-10-01 00:00:00.00038404093840409
    2
    2024-11-01 00:00:00.00021517635992172
    3
    2024-12-01 00:00:00.0008091596801331
    4
    2025-01-01 00:00:00.0004601297261460
    5
    2025-02-01 00:00:00.0003814417642901
    6
    2025-03-01 00:00:00.0002311457874046
    6
    261B
    20s