Moetop 10 users with most of tx-failure
    Updated 2022-07-24
    select
    from_address as user,
    count(distinct tx_hash) as tx_count

    from optimism.core.fact_transactions
    where status = 'FAIL'
    group by 1 order by 2 desc limit 10

    Run a query to Download Data