select user_address as top_traders, sum(balance) as current_balance
from flipside_prod_db.ethereum.erc20_balances
where contract_address ilike'0xb47e3cd837ddf8e4c57f05d70ab865de6e193bbb' and balance is not null
and balance_date = '2022-08-30'
group by top_traders
order by current_balance desc
limit 10