negin-khNumber of active users on Gnosis over last three months
    Updated 2022-10-17
    select
    date_trunc('day', block_timestamp) as date,
    count(distinct from_address) as users,
    count(distinct tx_hash) as transactions
    from gnosis.core.fact_transactions
    where block_timestamp >= current_date-90
    group by date order by date asc
    Run a query to Download Data