kiacryptoThe number of daily transactions and unique addresses on Polygon
    Updated 2022-07-09
    select date_trunc('day', block_timestamp) as date, case when date >= '2022-07-01' then 'July' else 'June' end as month, count(tx_hash) as tx_count, count(distinct from_address) as unique_user_count
    from polygon.core.fact_transactions
    group by 1, 2
    Run a query to Download Data