FatemeTheLadyTotal transactions and Unique Addresses
    Updated 2022-07-13
    select
    count(distinct TX_HASH) as num_txs,
    count(distinct FROM_ADDRESS) as num_users
    from polygon.core.fact_transactions
    where BLOCK_TIMESTAMP::date>='2022-07-01' and BLOCK_TIMESTAMP::date<='2022-07-12' and STATUS='SUCCESS'
    order by 1 asc
    Run a query to Download Data