Updated 2022-06-06
    SELECT
    date_trunc('day',BLOCK_TIMESTAMP) as dt,
    TX_SUCCEEDED,
    count(TX_ID)/1440 as no_txn
    from flow.core.fact_transactions
    where BLOCK_TIMESTAMP>='2022-05-09'
    group by 1,2)\

    Run a query to Download Data