0xHaM-dDaily report - new users[Past Week]
    Updated 9 days ago
    select
    trunc(BLOCK_TIMESTAMP, 'day') as "Date",
    dayname(BLOCK_TIMESTAMP::date) as "Day Name",
    count(distinct user) as "New Users",
    lag("New Users") over (order by "Date") as lag_AUs,
    round(100*("New Users"-lag_AUs)/lag_AUs,2) as "NUs Change %"
    from (
    select
    SIGNERS[0] as user,
    min(BLOCK_TIMESTAMP) as BLOCK_TIMESTAMP
    from eclipse.core.fact_transactions
    group by 1
    )
    WHERE "Date" BETWEEN date_trunc(week, current_date())-7 AND date_trunc(week, current_date())-1
    group by 1,2
    order by 1 desc





    Last run: 9 days ago
    Date
    Day Name
    New Users
    LAG_AUS
    NUs Change %
    1
    2025-03-23 00:00:00.000Sun796710049-20.72
    2
    2025-03-22 00:00:00.000Sat10049681747.41
    3
    2025-03-21 00:00:00.000Fri6817594414.69
    4
    2025-03-20 00:00:00.000Thu59447387-19.53
    5
    2025-03-19 00:00:00.000Wed73878692-15.01
    6
    2025-03-18 00:00:00.000Tue869280048.6
    7
    2025-03-17 00:00:00.000Mon8004
    7
    353B
    446s