dannerOrg Overview from NFT Transfers (Copy for Bounty Bunch)
    Updated 2023-04-18
    -- forked from Org Overview from NFT Transfers (Copy for PCWCFA) @ https://flipsidecrypto.xyz/edit/queries/2f10f389-ff88-46e7-a42b-699fe058420f

    -- forked from a7246491-ab2d-4d16-abf2-ed3aec8ab3fa

    -- forked from 7e600b18-a670-4357-807e-02e1eef74d08

    WITH

    transfers as (
    SELECT
    block_timestamp,
    nft_address,
    project_name,
    tokenid,
    erc1155_value,
    nft_to_address as wallet
    from
    polygon.core.ez_nft_transfers
    where nft_address = lower('0xcAa7Fca022639FA07332F03Bf1Ab53f5F097dC1D')
    and nft_from_address = '0x0000000000000000000000000000000000000000'
    union all
    SELECT
    block_timestamp,
    nft_address,
    project_name,
    tokenid,
    -1*erc1155_value as erc1155_value,
    nft_from_address as wallet
    from
    polygon.core.ez_nft_transfers
    where nft_address = lower('0xcAa7Fca022639FA07332F03Bf1Ab53f5F097dC1D')
    and nft_to_address = '0x0000000000000000000000000000000000000000'
    )

    Run a query to Download Data