mo115Unique Addresses on Polygon
    Updated 2022-07-13
    select date_trunc('day',block_timestamp) as date, count( distinct FROM_ADDRESS) as wallets
    FROM polygon.core.fact_transactions
    where BLOCK_TIMESTAMP >= '2022-07-01'
    group by 1

    Run a query to Download Data