elsinaTotal number of transactions unique users since July 2022
    Updated 2022-07-10
    select count(tx_hash) as number_of_tx, count(distinct from_address) as number_of_unique_user
    from polygon.core.fact_transactions
    where block_timestamp::date >= '2022-07-01'
    Run a query to Download Data