roketStatistics of the number of unique wallet addresses by day
    Updated 2022-07-09
    select date_trunc('day',block_timestamp) as DATE , count(distinct from_address ) as count_ADDRESS
    from polygon.transactions
    where DATE >= '2022-01-01'
    group by DATE
    Run a query to Download Data