RamaharDaily Transactions and Unique Addresses [Month]
    Updated 2022-07-09
    select
    YEAR(block_timestamp) as yr,
    MONTH(block_timestamp) as mt,
    concat(yr, '-', mt) as dt,
    status,
    count(distinct tx_hash) as txs,
    count(distinct from_address) as users
    from polygon.core.fact_transactions
    group by 1, 2, 3, 4

    Run a query to Download Data