B09FIdenza-2
Updated 2023-11-14
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
--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