Afonso_DiazTop Sellers
    Updated 2025-04-15
    with

    main as (
    select
    tx_hash,
    block_timestamp,
    buyer_address,
    seller_address,
    price,
    price_usd,
    nft_address,
    token_id
    from
    near.nft.ez_nft_sales
    where
    nft_address = 'tinkerunion_nft.enleap.near'
    )

    select
    seller_address,
    count(distinct tx_hash) as transactions,
    sum(price) as volume_near,
    sum(price_usd) as volume_usd
    from
    main
    group by 1
    order by volume_usd desc
    limit 100
    QueryRunArchived: QueryRun has been archived