ChinmayFSuccess of Arbitrum Transactions : Last 30 Days
    Updated 2023-04-13
    select count(*) as num_of_txns,
    case
    when status = 'SUCCESS' then 'Successful Txns'
    when status = 'FAIL' then 'Failed Txns'
    else null
    end as Status
    from arbitrum.core.fact_transactions
    where block_timestamp >= CURRENT_TIMESTAMP - interval '30 days'
    group by 2
    Run a query to Download Data