aureasarsanedespixel 2.2
    Updated 4 days ago
    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 = 'Pixel Pirates'
    GROUP BY
    sale_date
    ORDER BY
    sale_date




    Last run: 4 days ago
    SALE_DATE
    DAILY_SALES
    TOTAL_SALES
    DAILY_VOLUME_USD
    TOTAL_VOLUME_USD
    AVG_PRICE_USD
    1
    2024-09-30 00:00:00.0003243242643.1373745752643.1373745758.157831403
    2
    2024-10-07 00:00:00.0001144381399.314384042.45175457512.274687544
    3
    2024-10-14 00:00:00.00075513868.50275974910.95451427511.580036796
    4
    2024-10-21 00:00:00.00023536128.81246655039.7669807755.600542022
    5
    2024-10-28 00:00:00.0001054669.713435109.4804107756.971343
    6
    2024-11-04 00:00:00.000655243.037785152.5181907757.172963333
    7
    2024-11-11 00:00:00.000355521.71245174.2305907757.237466667
    8
    2024-11-18 00:00:00.0001056584.681965258.9125507758.468196
    9
    2024-11-25 00:00:00.000256712.6855271.5975507756.3425
    10
    2024-12-02 00:00:00.000357024.244295295.8418407758.08143
    11
    2024-12-09 00:00:00.00033603329.4385955625.2804357759.982987727
    12
    2024-12-16 00:00:00.00020623255.4653196815880.74575545712.773265984
    13
    2024-12-23 00:00:00.000867091438.2518456077318.99760106316.72385867
    14
    2024-12-30 00:00:00.00032741624.4362537943.43385406319.513632906
    15
    2025-01-06 00:00:00.00015756248.1785768191.61243006316.5452384
    16
    2025-01-13 00:00:00.00033789580.3061976638771.91862772617.585036293
    17
    2025-01-20 00:00:00.000679580.85485748852.77348512613.475809567
    18
    2025-01-27 00:00:00.000780273.2141708488925.98765597510.459167264
    19
    2025-02-03 00:00:00.00010812748.9756069674.96326197574.8975606
    20
    2025-02-10 00:00:00.00032844368.31138510043.27464697511.509730781
    27
    2KB
    2s