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 aa as
    /*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.*/

    (select BLOCK_TIMESTAMP, NFT_TO_ADDRESS ,
    TOKENID ,MINT_PRICE_ETH ,MINT_PRICE_USD ,
    NFT_COUNT ,TX_FEE,tx_hash
    from ethereum.core.ez_nft_mints
    where NFT_ADDRESS=lower('0x60bb1e2aa1c9acafb4d34f71585d7e959f387769')
    and NFT_FROM_ADDRESS='0x0000000000000000000000000000000000000000'
    )
    /*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.*/

    select
    count(distinct NFT_TO_ADDRESS) as minters ,
    count(distinct tx_hash) as txhash ,
    count(distinct TOKENID) as NFT_minted ,
    sum(MINT_PRICE_ETH) as ETH ,
    SUM(MINT_PRICE_USD) AS USD ,
    SUM(TX_FEE) AS FEE ,
    avg(MINT_PRICE_ETH) as avgETH ,
    avg(MINT_PRICE_USD) AS avgUSD ,
    avg(TX_FEE) AS avgFEE
    FROM aa
    /*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.*/

    Run a query to Download Data