MLDZMNwgno7
    Updated 2022-10-16
    select
    distinct TO_ADDRESS,
    count(distinct FROM_ADDRESS) as no_users
    from gnosis.core.fact_transactions
    where block_timestamp >= current_date - 30
    group by 1
    order by 2 desc limit 10



    Run a query to Download Data