DigitalDanSeedclub memeber count current
    Updated 2022-03-14
    with members as (
    select distinct(user_address), balance
    from ethereum.erc20_balances
    where contract_address = lower('0xF76d80200226AC250665139B9E435617e4Ba55F9') and balance > 10 and balance_date = current_date
    )

    select count(distinct(user_address))
    from members
    Run a query to Download Data