shadilTop 5 pools of Thorchain with highest number of swaps
    Updated 2022-09-04
    select top 5 count(*) as swap_count, pool_name
    from flipside_prod_db.thorchain.swaps
    where rune_usd is not null
    and from_amount_usd > 0
    group by pool_name
    order by swap_count desc
    Run a query to Download Data