kasadeghdaily success daily transaction
    Updated 2022-07-09
    select BLOCK_TIMESTAMP::date as day, count(distinct TX_HASH) as total_success_daily_transaction
    from polygon.core.fact_transactions
    where STATUS='SUCCESS'
    group by day
    order by day
    Run a query to Download Data