aureasarsanedesBruh Bears 2
    Updated 2025-03-14
    SELECT
    DATE_TRUNC('day', 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 '%Bruh Bears%' AND BLOCK_TIMESTAMP >= DATEADD(day, -{{days}}, CURRENT_DATE)
    GROUP BY
    sale_date
    ORDER BY
    sale_date






    Last run: about 1 month ago
    SALE_DATE
    DAILY_SALES
    TOTAL_SALES
    DAILY_VOLUME_USD
    TOTAL_VOLUME_USD
    AVG_PRICE_USD
    1
    2025-02-12 00:00:00.0004495.1226495.1226423.78066
    2
    2025-02-13 00:00:00.0001524.557544119.68018424.557544
    3
    2025-02-14 00:00:00.0003867.63195187.31213422.543983333
    4
    2025-02-16 00:00:00.0001918.26292205.57505418.26292
    5
    2025-02-18 00:00:00.00041388.323293.89805422.08075
    6
    2025-02-19 00:00:00.0001124277.493208571.39126225.226655273
    7
    2025-02-20 00:00:00.00032782.926244654.31750627.642081333
    8
    2025-02-21 00:00:00.00012823.44677.75750623.44
    9
    2025-02-22 00:00:00.000735158.829652836.58715822.689950286
    10
    2025-02-23 00:00:00.00033871.764403908.35156123.921467667
    11
    2025-02-25 00:00:00.000846146.2689961054.62055718.2836245
    12
    2025-02-26 00:00:00.00014722.561077.18055722.56
    13
    2025-02-27 00:00:00.00035059.5242311136.70478819.841410333
    14
    2025-02-28 00:00:00.000959235.098241371.80302826.122026667
    15
    2025-03-01 00:00:00.000665121.9118281493.71485620.318638
    16
    2025-03-02 00:00:00.000772143.60224591637.317101920.514606557
    17
    2025-03-05 00:00:00.00017326.8457281664.162829926.845728
    18
    2025-03-06 00:00:00.00017427.773521691.936349927.77352
    19
    2025-03-11 00:00:00.00047865.79703441757.733384316.4492586
    19
    1KB
    2s