berta* What was the price of the highest-selling individual NFT?
    Updated 2023-01-06
    select PROJECT_NAME, tokenid, platform_name, seller_address, buyer_address, ifnull(price_usd,0)
    from
    ethereum.core.ez_nft_sales
    where event_type = 'sale' and block_Timestamp >= '2022-01-01'
    and block_timestamp < '2023-01-01'
    order by 6 desc
    limit {{count_nft}}
    Run a query to Download Data