david_davidDaily Transactions and Unique Addresses - 1
    Updated 2022-07-13
    SELECT BLOCK_TIMESTAMP::date as date, count(DISTINCT TX_HASH) as tx_counts, COUNT(DISTINCT FROM_ADDRESS ) as wallets_from

    from polygon.core.fact_transactions
    where BLOCK_TIMESTAMP::date >= '2022-07-01'
    GROUP by 1 order by 1
    Run a query to Download Data