maybeyonascel_bal_today
    Updated 2022-07-12
    with
    wallets as (
    select
    *
    from crosschain.address_labels
    where address_name = 'celsius wallet'
    )

    -- select * from wallets
    -- limit 100

    select *
    from ethereum.erc20_balances
    where amount_usd is not null
    and user_address in (
    select address from wallets
    )
    and balance_date in (
    select balance_date from ethereum.erc20_balances
    order by balance_date desc
    limit 1
    )
    limit 1000
    Run a query to Download Data