MrftiMost fee for failed tx (wallets)
    Updated 2022-07-14
    SELECT COUNT (fee) AS total_fee , signers
    FROM solana.core.fact_transactions
    WHERE block_timestamp >= '2022-01-01'
    AND succeeded = 'false'
    group by signers
    order by total_fee desc
    limit 10

    Run a query to Download Data