aureasarsanedesBaptmen 2.2
    Updated 2025-02-28
    SELECT
    DATE_TRUNC('hour', 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 ilike '%Baptmen%'
    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
    2025-01-28 22:00:00.000117.317.317.31
    2
    2025-01-29 08:00:00.000123.75511.0653.755
    3
    2025-01-30 09:00:00.000131.658812.72381.6588
    4
    2025-01-31 12:00:00.000365.253617.97741.7512
    5
    2025-01-31 13:00:00.000170.892118.86950.8921
    6
    2025-01-31 16:00:00.00041124.2924443.161946.07311
    7
    2025-02-02 11:00:00.0001122.845.961942.8
    8
    2025-02-02 18:00:00.00041630.66776.628947.66675
    9
    2025-02-02 19:00:00.00031914.390.928944.766666667
    10
    2025-02-03 22:00:00.0001206.2797.198946.27
    11
    2025-02-04 06:00:00.0001214.2228101.421744.2228
    12
    2025-02-05 11:00:00.00012230.6132.0217430.6
    13
    2025-02-05 14:00:00.00022411.761143.782745.8805
    14
    2025-02-06 07:00:00.0001252.7315146.514242.7315
    15
    2025-02-07 17:00:00.0001263.624150.138243.624
    16
    2025-02-07 21:00:00.0002283.28265153.420891.641325
    17
    2025-02-08 06:00:00.0002307.45008160.870973.72504
    18
    2025-02-08 11:00:00.0001311.2903162.161271.2903
    19
    2025-02-09 03:00:00.0002339.2196171.380874.6098
    20
    2025-02-09 13:00:00.0001345.91177.290875.91
    41
    2KB
    2s