fb3ce38c-7bfe-475c-bca8-3f1e44ae80a6Polygon NFT Sales trend(AllTIme)
    Updated 2023-07-05
    -- forked from Polygon Top Sales Collections @ https://flipsidecrypto.xyz/edit/queries/38fbba98-6981-4504-9031-9970dd167f2d

    SELECT
    DATE_TRUNC('day',BLOCK_TIMESTAMP) AS DATE,
    SUM(price)as price,
    COUNT(DISTINCT TX_HASH)volume

    FROM polygon.core.ez_nft_sales
    WHERE project_name IS NOT NULL
    GROUP BY DATE
    ORDER BY DATE DESC



    Run a query to Download Data