sarathdecline_usdcc2
    Updated 2022-10-07
    select
    date_trunc(month,BLOCK_TIMESTAMP) date ,
    SYMBOL,count(distinct USER_ADDRESS)
    from ethereum.core.ez_balance_deltas
    where
    SYMBOL in ('USDC','USDT','DAI','FRAX','BUSD')
    group by 1,2 order by 1
    Run a query to Download Data