0xHaM-dAxie NFT Sales by Collection - 2025
    Updated 2025-03-20
    select
    nt.NAME,
    count(distinct nt.TX_HASH) as trades,
    count(distinct nt.FROM_ADDRESS) as n_sellers,
    count(distinct tt.ORIGIN_FROM_ADDRESS) as n_buyers,
    count(distinct TOKEN_ID) as n_tokens,
    sum(AMOUNT_USD)as volume,
    avg(AMOUNT_USD)as avg_volume,
    median(AMOUNT_USD)as median_volume,
    max(AMOUNT_USD)as max_volume,
    from ronin.nft.ez_nft_transfers nt
    join ronin.core.ez_token_transfers tt on nt.TX_HASH = tt.TX_HASH and nt.TO_ADDRESS = tt.ORIGIN_FROM_ADDRESS
    where nt.NAME ilike 'Axie%'
    and tt.ORIGIN_FROM_ADDRESS = tt.FROM_ADDRESS
    and nt.BLOCK_TIMESTAMP::date>='2025-01-01'
    group by 1
    order by 6 desc









    Last run: 15 days ago
    NAME
    TRADES
    N_SELLERS
    N_BUYERS
    N_TOKENS
    VOLUME
    AVG_VOLUME
    MEDIAN_VOLUME
    MAX_VOLUME
    1
    Axie25063827856334492115264923928.624.691926913.2292475.24
    2
    Axie Land6513254475851079835.941602.130474777592.1116586.02
    3
    Axie Material10067642131484410862969.363.3973165361.14335.35
    4
    Axie Consumable Item1141731716132404227779.651.7618685360.46607.48
    5
    Axie Rune1252618633303216123485.64.0457899223.0162.82
    6
    Axie Charm4222908182118922792.733.156013571.7462.82
    7
    Axie Land Item72918612782612861.2715.0600351293.611654.42
    8
    Axie Accessory184453377111236448.463.4969956622.8367.59
    8
    564B
    10s