select user_address as "Wallet"
, current_bal as " Current Balance"
from ethereum.core.ez_current_balances
where contract_address LIKE lower('0x92D6C1e31e14520e676a687F0a93788B716BEff5')
and LAST_ACTIVITY_BLOCK_TIMESTAMP < CURRENT_DATE - interval '90 days'
order by 2 desc
limit 10