Popex404Top 20 Transactions Type
    Updated 2022-12-13
    select distinct msg_type,
    count (distinct tx_id) / (Select Count(distinct tx_id) From cosmos.core.fact_msgs Where tx_succeeded = true) * 100 as "Percentage"
    from cosmos.core.fact_msgs
    Where tx_succeeded = true
    group by 1 order by 2 desc
    limit 20
    Run a query to Download Data