chillAssets that whales swapping from
    Updated 2022-04-11
    with w_tbl as (select sum(balance) as balance_amount, address from algorand.account
    group by address
    having balance_amount > 200000)



    select count(1), concat('asset_id:' , swap_from_asset_id) as swap_from from algorand.swaps
    where swapper in(select address from w_tbl)
    group by swap_from
    Run a query to Download Data