sallarDaily Transactions and Unique Addresses, number of transactions and addresses per day for two time frames
    Updated 2022-07-12
    select
    block_timestamp::date as day,
    monthname(day) as month_name,
    count(distinct from_address) as number_of_addresses,
    count(distinct tx_hash) as number_of_transactions
    from polygon.core.fact_transactions
    where day > '2022-05-31'
    group by day

    Run a query to Download Data