par_rnJoepegs 01
    Updated 2025-01-07
    SELECT
    DATE_TRUNC('month', block_timestamp) AS transaction_date,
    COUNT(*) AS total_transactions,
    COUNT(DISTINCT buyer_address) AS unique_buyers,
    COUNT(DISTINCT seller_address) AS unique_sellers,
    COUNT(DISTINCT project_name) AS unique_collections,
    SUM(platform_fee_usd) AS total_platform_fees_usd,
    SUM(price_usd) AS total_usd_volume
    FROM
    avalanche.nft.ez_nft_sales
    WHERE
    PLATFORM_NAME = 'joepegs'
    AND CAST(block_timestamp AS DATE) >= '2024-01-01' AND CAST(block_timestamp AS DATE) <= '2024-12-31'
    GROUP BY
    transaction_date
    ORDER BY
    transaction_date

    Last run: 3 months ago
    TRANSACTION_DATE
    TOTAL_TRANSACTIONS
    UNIQUE_BUYERS
    UNIQUE_SELLERS
    UNIQUE_COLLECTIONS
    TOTAL_PLATFORM_FEES_USD
    TOTAL_USD_VOLUME
    1
    2024-01-01 00:00:00.000103151780215719220344.367390099816090.705789112
    2
    2024-02-01 00:00:00.0004981111315401864762.7064278194932.814104921
    3
    2024-03-01 00:00:00.0003757142813621896418.126353569259799.889537796
    4
    2024-04-01 00:00:00.00019225636371673045.882141727122073.090243668
    5
    2024-05-01 00:00:00.00011434404241161656.50689469166365.009623156
    6
    2024-06-01 00:00:00.00054019720798321.39101889613846.205596846
    7
    2024-07-01 00:00:00.000953351393831809.15142920172486.308148053
    8
    2024-08-01 00:00:00.00087326035293822.1794633633370.108234402
    9
    2024-09-01 00:00:00.0002043447973701201.65414580148183.542463645
    10
    2024-10-01 00:00:00.00092294291146921137.1014268945562.03103558
    11
    2024-11-01 00:00:00.0001655327497100791.3926566632290.184982386
    12
    2024-12-01 00:00:00.0001468701629991457.66564211958855.634114754
    12
    908B
    369s