adambalaToken Activity
    Updated 2022-05-14
    select date(balance_date) , count(user_address) as USERS
    from ethereum.erc20_balances
    where
    contract_address = '0xcafe001067cdef266afb7eb5a286dcfd277f3de5'
    and BALANCE_DATE >= '2022-01-01'
    and balance > '100'
    GROUP by 1
    order by 1
    Run a query to Download Data