aureasarsanedesice blue 2
    Updated 2025-02-11
    SELECT
    DATE_TRUNC('day', BLOCK_TIMESTAMP) AS sale_date,
    COUNT(*) AS daily_sales,
    sum(daily_sales) over (order by sale_date) as total_sales,
    SUM(TOTAL_PRICE_USD) AS daily_volume_usd,
    sum(daily_volume_usd) over (order by sale_date) as total_volume_usd,
    AVG(TOTAL_PRICE_USD) AS avg_price_usd
    FROM
    aptos.nft.ez_nft_sales
    WHERE PROJECT_NAME = 'Ice Blue' AND BLOCK_TIMESTAMP >= DATEADD(day, -{{days}}, CURRENT_DATE)
    GROUP BY
    sale_date
    ORDER BY
    sale_date

    Last run: 2 months ago
    SALE_DATE
    DAILY_SALES
    TOTAL_SALES
    DAILY_VOLUME_USD
    TOTAL_VOLUME_USD
    AVG_PRICE_USD
    1
    2025-02-05 00:00:00.0006658.44027458.4402749.740045667
    2
    2025-02-06 00:00:00.00091591.52706149.96733410.169673333
    3
    2025-02-07 00:00:00.00072250.081187942200.0485219427.15445542
    4
    2025-02-08 00:00:00.00032522.035222.0835219427.345
    5
    2025-02-09 00:00:00.00022721.201644243.28516594210.600822
    6
    2025-02-10 00:00:00.00083564.617429307.9025949428.077178625
    6
    398B
    2s