permaryDaily active users
    Updated 2025-06-21
    select
    date as activity_date,
    count(distinct address) as daily_active_users
    from
    (select
    date(block_timestamp) as date,
    from_address as address
    from kaia.core.fact_transactions
    where block_timestamp >= current_date - interval '30 days'

    UNION all

    select date(block_timestamp) as date, to_address as address
    from kaia.core.fact_transactions
    where block_timestamp >= current_date - interval '30 days'
    ) as all_addresses
    group by activity_date
    order by activity_date;
    Last run: 11 days ago
    ACTIVITY_DATE
    DAILY_ACTIVE_USERS
    1
    2025-05-22 00:00:00.0001483417
    2
    2025-05-23 00:00:00.0001479398
    3
    2025-05-24 00:00:00.0001579672
    4
    2025-05-25 00:00:00.0001439194
    5
    2025-05-26 00:00:00.0001356041
    6
    2025-05-27 00:00:00.0001023926
    7
    2025-05-28 00:00:00.0001250580
    8
    2025-05-29 00:00:00.0001159599
    9
    2025-05-30 00:00:00.0001236907
    10
    2025-05-31 00:00:00.0001219616
    11
    2025-06-01 00:00:00.000777143
    12
    2025-06-02 00:00:00.000735937
    13
    2025-06-03 00:00:00.000596032
    14
    2025-06-04 00:00:00.000629251
    15
    2025-06-05 00:00:00.000736997
    16
    2025-06-06 00:00:00.000656358
    17
    2025-06-07 00:00:00.000628153
    18
    2025-06-08 00:00:00.000651954
    19
    2025-06-09 00:00:00.000735002
    20
    2025-06-10 00:00:00.000882587
    23
    816B
    2s