MrftiTop 4 protocol with highest fee paid for failed transactions
    Updated 2022-07-14
    SELECT COUNT (tx_id) AS total_failed_transactions , swap_program
    FROM solana.core.fact_swaps
    WHERE block_timestamp >= '2022-01-01'
    AND succeeded = 'false'
    group by swap_program
    order by total_failed_transactions DESC
    limit 10
    Run a query to Download Data