adambalaDOODLES130.
    Updated 2023-04-13
    select buyer_address ,
    sum (price) as ETH_Value
    FROM ethereum.core.ez_nft_sales
    where EVENT_TYPE = 'sale' and CURRENCY_SYMBOL = 'ETH' and NFT_ADDRESS=lower('0x8a90CAb2b38dba80c64b7734e58Ee1dB38B8992e')
    and price>0
    group by 1
    order by 2 desc
    limit 10
    Run a query to Download Data