B09FIdenza-2
    Updated 2023-11-14
    --2. For the Fidenza NFT you found in the first query,
    --find out all previous(past) sales and list them with the price of
    -- each sale(in eth and in USD ) along with the token# and the dates.
    SELECT BLOCK_TIMESTAMP,
    --PROJECT_NAME, NFT_ADDRESS,
    TOKENID, PRICE, PRICE_USD
    FROM ethereum.nft.ez_nft_sales
    WHERE TOKENID = '78000313'
    ORDER BY BLOCK_TIMESTAMP DESC;


    Run a query to Download Data