kasadeghSuccess rates of transactions in last month
    Updated 2022-07-12

    select SUCCEEDED, count( *) as "Total Number of Transactions in last month"
    FROM
    solana.core.fact_transactions
    where BLOCK_TIMESTAMP::date between '2022-06-1' and '2022-07-01'
    group by SUCCEEDED

    Run a query to Download Data