KaskoazulTop 10 swapped to Assets donut bar
    Updated 2022-03-22
    select ass.asset_name,
    count(sw.tx_group_id) as swaps
    from algorand.swaps sw
    inner join algorand.asset ass
    on sw.swap_to_asset_id = ass.asset_id
    where block_timestamp >= '2022-01-01'
    and swap_from_amount > 0
    group by 1
    order by 2 desc
    Run a query to Download Data