PapasotCosmic Champs holders algo balance table
    Updated 2023-01-03
    with Cosmic as (

    select
    address
    from algorand.account_asset
    where
    amount > 0 and
    asset_id in (select asset_id
    from algorand.asset
    where CREATOR_ADDRESS='CCNFTNFTSXVYGCGP5EU7AMUTQLUZI6TXRS4XMW2LP4XARZH3LB6RZPUOQM'
    and ASSET_DELETED='FALSE'
    and ASSET_NAME not in ('SINGULARITY ERA COMMEMORATIVE','Cosmic Champs Whitelist TOKEN') )
    )
    select
    distinct(address),
    balance,
    created_at

    from algorand.account
    inner join Cosmic using (address)
    --where created_at > 22025289
    order by created_at desc

    Run a query to Download Data