NakedCollectorLargest NFT Sales
    Updated 2024-10-21
    SELECT
    date_trunc('day', BLOCK_TIMESTAMP) as Date,
    project_name,
    NFT_ADDRESS,
    TOKENID,
    price_usd
    from
    ethereum.nft.ez_nft_sales
    where
    Date >= current_timestamp - interval '7 days'
    order by
    price_usd DESC
    limit
    10
    QueryRunArchived: QueryRun has been archived