feyikemiTop NFTs By Vol
    Updated 2025-04-07
    WITH Price AS(
    SELECT
    HOUR::date AS Date,
    token_address,
    avg(price) AS price_usd
    FROM ronin.price.ez_prices_hourly
    GROUP BY 1,2
    ),


    NFT_TXNS AS (
    SELECT
    block_timestamp,
    tx_hash,
    from_address AS seller,
    to_address AS buyer,
    name AS collection,
    decoded_log:acceptedSettlePrice / 1e18 as nft_price,
    (decoded_log:acceptedSettlePrice / 1e18)*price_usd as nft_Price_usd
    from ronin.nft.ez_nft_transfers tr
    join ronin.core.ez_decoded_event_logs log using (tx_hash, block_timestamp)
    left join price p on block_timestamp::date = p.date and log.decoded_log:settleToken = token_address
    where event_name = 'OrderMatched'
    and decoded_log:order[0]:extraData[0][2] = token_id
    and tx_succeeded
    )
    select
    Collection,
    count(distinct tx_hash) as n_sales,
    count(distinct buyer) as buyers,
    count(distinct seller) as sellers,
    sum(nft_Price_usd) as sales_volume_usd
    from nft_txns
    group by 1
    order by sales_volume_usd desc
    limit 10
    Last run: about 2 months ago
    COLLECTION
    N_SALES
    BUYERS
    SELLERS
    SALES_VOLUME_USD
    1
    Axie36139928287533683956.4307064
    2
    Axie Material8415176633913208674.41441364
    3
    Axie Land2396129410023002261.2443788
    4
    Lumiterra Game Item175827473936252316531.30204612
    5
    Nyang Kit9514169837041736576.18948028
    6
    Axie Consumable Item299668812461337365.16468437
    7
    7034131213141093791.35193214
    8
    Wild Forest Packs689512461723970389.457354274
    9
    Moki Collection364517402253936813.322569744
    10
    CambriaCores28558911827907606.632047801
    10
    490B
    33s