Afonso_DiazTop Collections
    Updated 2025-05-18
    with

    txns as (
    select
    tx_hash,
    block_timestamp,
    nvl(a.decoded_log:_from, a.decoded_log:from) as seller,
    nvl(a.decoded_log:_to, a.decoded_log:to) as buyer,
    a.contract_address as collection_id,
    a.contract_name as collection_name,
    nvl(a.decoded_log:_tokenId, a.decoded_log:tokenId) as token_id,
    b.amount as price,
    b.amount_usd as price_usd
    from
    ronin.core.ez_decoded_event_logs a
    join
    ronin.core.ez_native_transfers b using (tx_hash, origin_to_address)
    where
    origin_to_address = '0x0000000000000068f116a894984e2db1123eb395'
    and a.event_name = 'Transfer'
    and token_id is not null
    and seller = b.to_address
    and trace_address != 'ORIGIN'
    ),

    main as (
    select
    tx_hash,
    block_timestamp,
    seller,
    buyer,
    collection_id,
    collection_name,
    token_id,
    price / (select count(*) from txns b where a.seller = b.seller) as price,
    price_usd / (select count(*) from txns b where a.seller = b.seller) as price_usd
    Last run: 14 days ago
    COLLECTION_NAME
    TRANSACTIONS
    1
    Axie144190
    2
    RuniverseItem35037
    3
    Wild Forest Units23086
    4
    Ronkeverse21358
    5
    Ragnarok Monsters13694
    6
    Fableborne Kingdoms7116
    7
    Wild Forest Skins6977
    8
    KaidroJournal5548
    9
    Moki Collection2116
    10
    Ronin Name Service1733
    10
    250B
    3s