select USER_ADDRESS, max(BALANCE) as max_balance
from flipside_prod_db.ethereum.erc20_balances
where CONTRACT_ADDRESS = lower('0x2e9d63788249371f1DFC918a52f8d799F4a38C94')
and balance_date between '2022-01-01'and'2022-01-31'
group by 1
order by max_balance DESC
limit 10