Updated 2022-07-11
    select
    count(distinct TX_HASH) as Total_transactions,
    count(distinct FROM_ADDRESS) as Total_users
    from polygon.core.fact_transactions
    where BLOCK_TIMESTAMP::date>='2022-07-01' and BLOCK_TIMESTAMP::date<='2022-07-11' and STATUS='SUCCESS'
    order by 1 asc
    Run a query to Download Data