JBBEvolution 2022 Number of Tx and users
    Updated 2022-07-09
    select
    date_trunc('day',block_timestamp) as dates,
    count(distinct(tx_hash)) as Number_of_tx,
    count(distinct(from_address)) as Number_of_users_starting_the_tx
    from polygon.core.fact_transactions
    where dates >= '2022-01-01' and dates <= '2022-07-08'
    group by dates
    Run a query to Download Data