adambalaHolders
    Updated 2022-11-02
    /*Art Gobblers is a pre-reveal NFT project that generates "goo" when you feed it (upload) art you've created. Some say the project is revitalizing NFTs in the bear market - Compare various metrics across NFT activity to support or oppose that idea. Then evaluate how the project's metrics stack up to other top NFT collections before their art reveals.
    Art Gobblers is a pre-reveal NFT project that generates "goo" when you feed it (upload) art you've created. Some say the project is revitalizing NFTs in the bear market - Compare various metrics across NFT activity to support or oppose that idea. Then evaluate how the project's metrics stack up to other top NFT collections before their art reveals.*/
    with
    a as (
    select
    nft_to_address as wallets,
    '1' as title
    FROM ethereum.core.ez_nft_transfers
    where (nft_address =lower('0x60bb1e2aa1c9acafb4d34f71585d7e959f387769')
    )

    union all

    SELECT
    nft_from_address as wallets,
    '-1' as title
    FROM ethereum.core.ez_nft_transfers
    where (nft_address =lower('0x60bb1e2aa1c9acafb4d34f71585d7e959f387769')
    )
    ),

    b as (
    select
    wallets ,
    sum(title) as nfts
    from a
    Run a query to Download Data