kasadegh daily success transactions since beginning July 1, 2022
    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 BLOCK_TIMESTAMP::date>='2022-07-1' and STATUS='SUCCESS'
    group by day
    order by day
    Run a query to Download Data