MLDZMNgno2
    Updated 2023-01-21
    select
    block_timestamp::date as day,
    count(distinct FROM_ADDRESS) as active_wallets,
    count(distinct tx_hash) as count_TXN,
    sum(TX_FEE) as fee
    from polygon.core.fact_transactions
    WHERE tx_hash is not null
    group by 1
    Run a query to Download Data