adambaladoodless-Top 10 profitable Tokens With Most Earned USD for minter
    Updated 2023-04-13
    with buytable1 as (
    select NFT_TO_ADDRESS ,TOKENID ,(MINT_PRICE_ETH) as MINT_PRICE_ETH ,(MINT_PRICE_USD) as MINT_PRICE_USD ,tx_hash ,BLOCK_TIMESTAMP::DATE AS MINT_TIME
    from ethereum.core.ez_nft_mints
    where NFT_ADDRESS=lower('0x8a90CAb2b38dba80c64b7734e58Ee1dB38B8992e')
    and EVENT_TYPE ='nft_mint'
    and PROJECT_NAME='doodles'
    and NFT_FROM_ADDRESS='0x0000000000000000000000000000000000000000'
    and MINT_PRICE_ETH > 0 and MINT_PRICE_USD > 0 ),

    selltable1 as (
    select MIN(BLOCK_TIMESTAMP) AS DATE ,seller_address, tx_hash, tokenid, price_usd,price
    FROM ethereum.core.ez_nft_sales
    WHERE EVENT_TYPE = 'sale' and CURRENCY_SYMBOL = 'ETH'
    and lower(NFT_ADDRESS)=lower('0x8a90CAb2b38dba80c64b7734e58Ee1dB38B8992e')
    and price_usd > 0 and price > 0 GROUP BY 2,3,4,5,6 ORDER BY DATE )

    select

    price_usd || ' - '||MINT_PRICE_USD || ' = ' as "Sale PRICE - MINT PRICE (USD)" ,
    sum (t2.price_usd - t1.MINT_PRICE_USD) as USD_Profit ,
    t1.tokenid ,
    --sum (t2.price - t1.MINT_PRICE) as ETH_Profit
    'https://www.nftscan.com/' || NFT_TO_ADDRESS as minter,
    'https://www.nftscan.com/0x8a90CAb2b38dba80c64b7734e58Ee1dB38B8992e/' ||t1.tokenid as "token id"
    from buytable1 t1 join selltable1 t2 on NFT_TO_ADDRESS = seller_address and t1.tokenid = t2.tokenid
    WHERE MINT_TIME < (SELECT MIN(DATE) FROM selltable1 ) AND NFT_TO_ADDRESS !='0xd387a6e4e84a6c86bd90c158c6028a58cc8ac459'
    group by 1,3,4,5
    order by 2 desc
    limit 10

    Run a query to Download Data