select
trunc(balance_date,'day') as date,
count (distinct user_address) as members
from ethereum.erc20_balances
where balance_date>'2021-12-31' and contract_address='0xf76d80200226ac250665139b9e435617e4ba55f9'
and balance >=10 and balance is not null
group by 1
order by 1 asc