NuveveCryptoArchivedTotal ETH Whales
    Updated 2022-11-28
    with whales as (
    select
    count(distinct(user_address)) as total
    from flipside_prod_db.ethereum.erc20_balances
    where contract_address = 'ETH'
    and balance_date = '2022-05-01'
    and balance >= '10000'
    )

    select *
    from whales

    Run a query to Download Data