select distinct
date_trunc('day', block_timestamp::date) as date,
count(ORIGIN_FROM_ADDRESS) as Total_Number_of_USERS
from ethereum.core.ez_token_transfers
where CONTRACT_ADDRESS='0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48' and symbol= 'USDC' and BLOCK_TIMESTAMP>='2022-05-21'
group by 1
order by 1