shadilTop 5 pools of Thorchain with highest USD volume of swaps
    Updated 2022-09-04
    select top 5 sum(from_amount_usd) as total_volume, 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 total_volume desc
    Run a query to Download Data