adam10Total Daily Polygon Addresses
    Updated 2021-11-10
    select
    date_trunc('day', block_timestamp) AS date,
    count(DISTINCT from_address) as total_addresses
    from polygon.transactions
    WHERE block_timestamp >= '2021-6-01'
    group by 1
    order by 1
    Run a query to Download Data