aureasarsanedesGUI Gang 2.2
    Updated 2025-04-07
    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 ilike '%Gui Gang%'
    GROUP BY
    sale_date
    ORDER BY
    sale_date





    Last run: 19 days ago
    SALE_DATE
    DAILY_SALES
    TOTAL_SALES
    DAILY_VOLUME_USD
    TOTAL_VOLUME_USD
    AVG_PRICE_USD
    1
    2024-12-16 00:00:00.00066151.4048151.404825.234133333
    2
    2024-12-23 00:00:00.00058559132057.89822265332209.30302265354.799826022
    3
    2024-12-30 00:00:00.0001016926223.50447819938432.80750085261.61885622
    4
    2025-01-06 00:00:00.000727644203.76429173242636.57179258458.385615163
    5
    2025-01-13 00:00:00.000257891442.87508287244079.44687545657.715003315
    6
    2025-01-20 00:00:00.000348231323.93115367345403.37802912938.939151579
    7
    2025-01-27 00:00:00.00015838377.38802245780.76605112925.159201467
    8
    2025-02-03 00:00:00.00013851375.9620074446156.72805856928.920154418
    9
    2025-02-10 00:00:00.00022873261.33344343746418.06150200611.878792884
    10
    2025-02-17 00:00:00.00014887427.1746446845.23614200630.512474286
    11
    2025-02-24 00:00:00.000489178.68592793546923.92206994119.671481984
    12
    2025-03-03 00:00:00.00013904227.83162987747151.75369981817.525509991
    13
    2025-03-10 00:00:00.0008912156.4921447308.24583981819.5615175
    14
    2025-03-17 00:00:00.00014926194.5301547502.77598981813.895010714
    15
    2025-03-24 00:00:00.00010936122.88539994447625.66138976312.288539994
    16
    2025-03-31 00:00:00.00019955260.1308247885.79220976313.691095789
    16
    1KB
    3s