Updated 5 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 = 'Amnis Draconian'
    GROUP BY
    sale_date
    ORDER BY
    sale_date



    Last run: 5 days ago
    SALE_DATE
    DAILY_SALES
    TOTAL_SALES
    DAILY_VOLUME_USD
    TOTAL_VOLUME_USD
    AVG_PRICE_USD
    1
    2024-06-03 00:00:00.00030730736100.79774890436100.797748904117.592175078
    2
    2024-06-10 00:00:00.000623695693.22937845241794.02712735591.826280298
    3
    2024-06-17 00:00:00.000384073069.778544863.80562735580.783644737
    4
    2024-06-24 00:00:00.000314382381.27930237947245.08492973576.815461367
    5
    2024-07-01 00:00:00.000354732653.52588604549898.6108157875.815025316
    6
    2024-07-08 00:00:00.00012485901.3415850799.9523957875.111798333
    7
    2024-07-15 00:00:00.00010495836.38284135151636.33523713183.638284135
    8
    2024-07-22 00:00:00.000235182137.274200553773.60943763192.924965239
    9
    2024-07-29 00:00:00.000195371304.3022601755077.91169780168.647487377
    10
    2024-08-05 00:00:00.0005542273.69389494755351.60559274854.738778989
    11
    2024-08-12 00:00:00.0009551628.99329063755980.59888338569.888143404
    12
    2024-08-19 00:00:00.000245751668.972630557649.57151388569.540526271
    13
    2024-08-26 00:00:00.000245991467.07313367559116.6446475661.128047236
    14
    2024-09-02 00:00:00.00019618940.27216560056.9168125649.488008684
    15
    2024-09-09 00:00:00.00022640993.4851161050.4019225645.158414091
    16
    2024-09-16 00:00:00.000266661808.13739587762858.53931843769.543745995
    17
    2024-09-23 00:00:00.0006672440.36565963298.90497743773.3942765
    18
    2024-09-30 00:00:00.000236951448.74441683864747.64939427562.988887689
    19
    2024-10-07 00:00:00.00011706866.2552865613.90467427578.75048
    20
    2024-10-14 00:00:00.000177231595.86099970167209.76567397693.874176453
    46
    3KB
    2s