sepehrmhz8Untitled Query
    Updated 2022-10-09
    select buyer_address,
    sum(platform_fee_usd) as Total_platform_fee_usd
    from ethereum.core.ez_nft_sales
    where platform_name = 'x2y2'
    and platform_fee_usd > 0
    group by 1
    order by 2 desc
    limit 5
    Run a query to Download Data