Updated 2022-07-20
    select
    block_timestamp::date as day,
    TX_SUCCEEDED,
    count(tx_id) as txn
    from flow.core.fact_transactions
    WHERE block_timestamp >= CURRENT_DATE - 60
    and tx_id is not null
    group by 1,2
    Run a query to Download Data