Updated 2025-07-06
    with t as (
    select
    tx_hash,
    block_timestamp,
    seller_address,
    buyer_address,
    platform_name,
    nft_address,
    token_id,
    price,
    price_usd,
    platform_name as marketplace
    from near.nft.ez_nft_sales
    )

    select
    marketplace,
    count(distinct tx_hash) as transactions,
    count(distinct seller_address) as sellers,
    count(distinct buyer_address) as buyers,
    count(distinct nft_address) as collections,
    sum(price) as volume,
    avg(price) as avg_volume,
    sum(price_usd) as volume_usd,
    avg(price_usd) as avg_price_usd,
    transactions / count(distinct block_timestamp::date) as daily_average_transactions,
    sellers / count(distinct block_timestamp::date) as daily_average_sellers,
    buyers / count(distinct block_timestamp::date) as daily_average_buyers,
    transactions / buyers as txns_per_buyer
    from t
    group by 1
    Last run: 15 days ago
    MARKETPLACE
    TRANSACTIONS
    SELLERS
    BUYERS
    COLLECTIONS
    VOLUME
    AVG_VOLUME
    VOLUME_USD
    AVG_PRICE_USD
    DAILY_AVERAGE_TRANSACTIONS
    DAILY_AVERAGE_SELLERS
    DAILY_AVERAGE_BUYERS
    TXNS_PER_BUYER
    1
    UniqArt72737411150.6030200010.2071568363868.2449403311.19757922812.3220340.6271190.69491517.731707
    2
    Paras22765328321328292082528800.2795295911.10813509823601013.4319315103.703795273175.38751921.81895225.2919886.934509
    3
    FewAndFar4101145810858530202.3086856997.36462050462608.16670500615.26656101111.6837614.1538463.0911683.779724
    4
    Mintbase227461347647469266669.7704606182.87233512289770.46197276913.37011313519.3747871.1473595.514483.513438
    5
    L2E260914716711459.8870.55955806829595.1157753233.6776986497.0134410.3951610.44892515.622754
    6
    Mitte154195406182295222408623.2609433061.9599930022561862.4013864312.288170688384.526185101.29177157.2369086.718151
    7
    Apollo42380191201272332.3636.1377973687204.42633372718.9590166683.5514021.7850471.8785051.890547
    8
    TradePort13157329842539995806.4291000877.281783773381756.62866091429.01547683115.1403913.7951674.8941313.093581
    8
    984B
    148s