adambalaape
Updated 2022-12-09
9
1
2
3
4
5
6
7
8
9
›
⌄
select buyer_address ,
sum (price_usd) as USD_Value
FROM ethereum.core.ez_nft_sales
where EVENT_TYPE = 'sale' and CURRENCY_SYMBOL = 'ETH' and NFT_ADDRESS=lower('0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d')
and price_usd > 0
group by 1
order by 2 desc
limit 10
Run a query to Download Data