omer93CAPPYS 2nd sales 2
    Updated 2025-04-03
    WITH info AS (
    SELECT
    tx_id,
    block_timestamp,
    COUNT(token_id) AS nft_id,
    buyer_address AS buyer,
    seller_address AS seller,
    nft_address AS collection,
    amount AS attribute_value
    FROM
    sei.nft.ez_nft_sales
    WHERE
    --block_timestamp > '2024-08-01'
    collection = 'sei1cujl8ujhc36lp7sr98x30u0aeqtjlj68kll5rqqr9dke5xvn2ltquzhysl'
    GROUP BY
    tx_id, block_timestamp, buyer, seller, collection, attribute_value
    ),
    info2 AS (
    SELECT
    *,
    attribute_value as prices,
    prices AS sei_price,
    (prices * nft_id) AS sei_volume
    FROM
    info
    )
    SELECT
    TRUNC(block_timestamp, 'week') AS time,
    SUM(nft_id) AS sales,
    COUNT(DISTINCT buyer) AS buyers,
    COUNT(DISTINCT seller) AS sellers,
    SUM(sei_price) AS sei_volume,
    AVG(sei_price) AS avg_nft_price,
    MAX(sei_price) AS max_nft_price,
    COUNT(DISTINCT collection) AS total_collections
    FROM
    Last run: 2 months ago
    TIME
    SALES
    BUYERS
    SELLERS
    SEI_VOLUME
    AVG_NFT_PRICE
    MAX_NFT_PRICE
    TOTAL_COLLECTIONS
    1
    2024-02-05 00:00:00.000347710171707668029.4276201.27430780450001
    2
    2024-02-12 00:00:00.0001679424940240470.6988154.94246056734901
    3
    2024-02-19 00:00:00.00042719626145473.51114.832095966501
    4
    2024-02-26 00:00:00.00039514417425075.774874.8530591044991
    5
    2024-03-04 00:00:00.00055222525853339.948107.5402177427371
    6
    2024-03-11 00:00:00.00014510611117578.15122.070486111420.691
    7
    2024-03-18 00:00:00.000163825410227.4869.5746938781801
    8
    2024-03-25 00:00:00.0009159576319.3369.4431868132001
    9
    2024-04-01 00:00:00.000104404910907.65113.62135416723851
    10
    2024-04-08 00:00:00.00010032577086.1879.6212001
    11
    2024-04-15 00:00:00.0007447435856.1380.2209589042141
    12
    2024-04-22 00:00:00.000200758021076.0528109.7711083337501
    13
    2024-04-29 00:00:00.000119504711365.089999102.38819818912001
    14
    2024-05-06 00:00:00.0005836273892.88999969.5158928391701
    15
    2024-05-13 00:00:00.0006632333689.2965.8801785712801
    16
    2024-05-20 00:00:00.0005428313734.6970.4658490573501
    17
    2024-05-27 00:00:00.0002421179922765.93103.01325791922221
    18
    2024-06-03 00:00:00.000140634312136.59999687.9463767832501
    19
    2024-06-10 00:00:00.0004023183264.60999983.7079486922501
    20
    2024-06-17 00:00:00.0005635204292.69999878.0490908731901
    50
    3KB
    6s