select USER_ADDRESS,avg(BALANCE)as hold_amount,ADDRESS_NAME
from flipside_prod_db.ethereum.erc20_balances
where contract_address = lower('0x2e9d63788249371f1DFC918a52f8d799F4a38C94') and BALANCE_DATE >= '2022-01-01' and BALANCE_DATE <= '2022-01-31'
and SYMBOL='TOKE'
group by 1,3
order by 2 desc
limit 5