cypheravax daily active users
    Updated 2023-04-17
    select
    date_trunc('day', block_timestamp) as day,
    count(distinct(origin_from_address)) as unique_users
    from avalanche.core.fact_event_logs
    where block_timestamp >= '2022-6-20'
    group by day