Mrftinear report - new users copy
    Updated 12 hours ago
    -- forked from MoDeFi / near report - new users @ https://flipsidecrypto.xyz/MoDeFi/q/wtCTzjMss7by/near-report---new-users

    select date_trunc({{period_type}}, BLOCK_TIMESTAMP) as "Date",
    count(distinct from_address) as "New Users",
    lag("New Users") over (order by "Date") as lag_AUs,
    round(100*("New Users"-lag_AUs)/lag_AUs,2) as "New Users Change %"
    from
    (select
    from_address,
    min(BLOCK_TIMESTAMP) as BLOCK_TIMESTAMP
    from berachain.testnet.fact_transactions where TX_SUCCEEDED=true group by 1)
    where BLOCK_TIMESTAMP::date>='{{start_day}}'
    and date_trunc({{period_type}}, BLOCK_TIMESTAMP)<=date_trunc({{period_type}}, '{{target_day}}'::date)
    group by 1
    order by 1 desc
    Last run: about 12 hours ago
    Date
    New Users
    LAG_AUS
    New Users Change %
    1
    2024-12-23 00:00:00.000853137220752286.47
    2
    2024-12-16 00:00:00.00022075214354253.79
    3
    2024-12-09 00:00:00.00014354216239783.93
    4
    2024-12-02 00:00:00.0001623936487-55.49
    5
    2024-11-25 00:00:00.0003648710260255.62
    6
    2024-11-18 00:00:00.0001026011497-10.76
    7
    2024-11-11 00:00:00.0001149720129-42.88
    8
    2024-11-04 00:00:00.0002012926903-25.18
    9
    2024-10-28 00:00:00.0002690336815-26.92
    10
    2024-10-21 00:00:00.000368153396691-98.92
    11
    2024-10-14 00:00:00.00033966917271118-53.29
    12
    2024-10-07 00:00:00.000727111870931682.51
    13
    2024-09-30 00:00:00.00070931687923606-10.48
    14
    2024-09-23 00:00:00.00079236065683341294.18
    15
    2024-09-16 00:00:00.000568334215600163.61
    16
    2024-09-09 00:00:00.0002156002021996.63
    17
    2024-09-02 00:00:00.00020219958672244.63
    18
    2024-08-26 00:00:00.00058672385286-84.77
    19
    2024-08-19 00:00:00.00038528623117566.66
    20
    2024-08-12 00:00:00.00023117515514249.01
    30
    1KB
    87s