Delamir-6014uni 03 Platform
    Updated 2022-12-20
    select
    platform_name,
    count(distinct seller_address) as sellers,
    count(distinct buyer_address) as buyers,
    sum(distinct total_fees) as volume,
    count(distinct tx_hash) as Number_TXs
    from ethereum.core.ez_nft_sales
    where origin_to_address = lower('0xef1c6e67703c7bd7107eed8303fbe6ec2554bf6b')
    group by 1
    order by 1 desc
    Run a query to Download Data