Afonso_DiazTop 10 Collections cop
    Updated 2025-03-22
    with t as (
    select
    tx_hash,
    block_timestamp,
    buyer_address,
    seller_address,
    price,
    price_usd,
    nft_address,
    token_id
    from near.nft.ez_nft_sales
    where platform_name = 'Mitte'
    )

    select
    nft_address,
    count(distinct tx_hash) as transactions,
    sum(price) as volume_near,
    sum(price_usd) as volume_usd
    from t
    group by 1
    order by volume_usd desc
    limit 10


    QueryRunArchived: QueryRun has been archived