aureasarsanedesice blue 2.2
    Updated 2025-02-11
    SELECT
    DATE_TRUNC('week', 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'
    GROUP BY
    sale_date
    ORDER BY
    sale_date


    Last run: about 2 months ago
    SALE_DATE
    DAILY_SALES
    TOTAL_SALES
    DAILY_VOLUME_USD
    TOTAL_VOLUME_USD
    AVG_PRICE_USD
    1
    2024-03-11 00:00:00.00017821782102430.501393512102430.50139351257.480640513
    2
    2024-03-18 00:00:00.000315209742317.733298994144748.234692506134.342010473
    3
    2024-03-25 00:00:00.000198229524871.980830234169620.215522739125.616064799
    4
    2024-04-01 00:00:00.0008223779894.056843432179514.272366171120.659229798
    5
    2024-04-08 00:00:00.000217259424267.539866462203781.812232633111.831980951
    6
    2024-04-15 00:00:00.0007526696086.512277191209868.32450982481.153497029
    7
    2024-04-22 00:00:00.0005927284918.723665584214787.04817540883.368197722
    8
    2024-04-29 00:00:00.0004227702763.823434364217550.87160977365.805319866
    9
    2024-05-06 00:00:00.000802850643.673347356218194.5449571298.045916842
    10
    2024-05-13 00:00:00.000192869830.6856302219025.2305873343.720296326
    11
    2024-05-20 00:00:00.0005029193314.449197307222339.67978463666.288983946
    12
    2024-05-27 00:00:00.0001929381182.168636088223521.84842072562.219401899
    13
    2024-06-03 00:00:00.00072945358.797976223880.64639672551.256853714
    14
    2024-06-10 00:00:00.000122957513.3262224393.97259672542.777183333
    15
    2024-06-17 00:00:00.0002029771042.324008575225436.296605352.116200429
    16
    2024-06-24 00:00:00.000983075941.017068098226377.3136733989.602214981
    17
    2024-07-01 00:00:00.000393114588.017448348226965.33112174615.07737047
    18
    2024-07-08 00:00:00.00053119220.425299937227185.75642168444.085059987
    19
    2024-07-15 00:00:00.000223141715.000299787227900.7567214732.500013627
    20
    2024-07-22 00:00:00.0002314372.7684227973.5251214736.3842
    49
    4KB
    3s