0xHaM-dAxie NFT Sales
    Updated 2025-03-20
    select
    trunc(nt.BLOCK_TIMESTAMP, 'd') as date,
    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,
    volume/n_tokens avg_price_per_token,
    sum(trades) over (order by date) as total_trades,
    sum(volume) over (order by date) as total_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 1 desc







    Last run: 14 days ago
    DATE
    TRADES
    N_SELLERS
    N_BUYERS
    N_TOKENS
    VOLUME
    AVG_VOLUME
    MEDIAN_VOLUME
    MAX_VOLUME
    AVG_PRICE_PER_TOKEN
    TOTAL_TRADES
    TOTAL_VOLUME
    1
    2025-03-20 00:00:00.00019047081228113154609.023.5778693573.25147.5748.2838373124845437260101.63
    2
    2025-03-19 00:00:00.0005247158630942976108729.335.3943902562.931468.1336.5353931454826397205492.61
    3
    2025-03-18 00:00:00.000524215883143274443789.084.3351232552.871372.2115.9581195344773927096763.28
    4
    2025-03-17 00:00:00.000541516693076264242648.774.694416072.93134.2516.1426078734721507052974.2
    5
    2025-03-16 00:00:00.000532117132764288055349.365.6885262082.87444.8719.2185277784667357010325.43
    6
    2025-03-15 00:00:00.000523717222935266641869.635.1291963742.883088.6915.7050375094614146954976.07
    7
    2025-03-14 00:00:00.000546417513105268852894.35.012252442.853040.419.6779389884561776913106.44
    8
    2025-03-13 00:00:00.000597819183327312961143.245.1393830382.843061.0219.5408245454507136860212.14
    9
    2025-03-12 00:00:00.000691522123651362554064.424.2577114512.74926.214.9143227594447356799068.9
    10
    2025-03-11 00:00:00.000676823303448392994050.734.6552853542.569056.2123.9375744464378206745004.48
    11
    2025-03-10 00:00:00.0006825231035293938115103.14.0900824393.051409.8429.2288217374310526650953.75
    12
    2025-03-09 00:00:00.000564119662889283780304.514.5864703873.013527.9228.3061367644242276535850.65
    13
    2025-03-08 00:00:00.000581220392789303658341.775.4817034673.083900.4119.2166567854185866455546.14
    14
    2025-03-07 00:00:00.000593022063092293994543.825.2694136663.093695.9332.1687036414127746397204.37
    15
    2025-03-06 00:00:00.000712320923554307195730.787.0307564632.984170.8631.1725105834068446302660.55
    16
    2025-03-05 00:00:00.000499616052839274658404.535.3474208022.668143.4221.268947563997216206929.77
    17
    2025-03-04 00:00:00.000493616322719269638738.614.133882192.45921.1714.3689206233947256148525.24
    18
    2025-03-03 00:00:00.000513014583017242045140.744.442986222.733547.9818.6531983473897896109786.63
    19
    2025-03-02 00:00:00.000447314852365247858927.744.2617878063.341556.8923.7803631963846596064645.89
    20
    2025-03-01 00:00:00.000485217602369270243915.865.143576952.933363.4416.2530940043801866005718.15
    79
    9KB
    13s