adambalaQ22
Updated 2023-05-14Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
select seller_address ,
sum (price) as ETH_Value
FROM ethereum.core.ez_nft_sales
where EVENT_TYPE = 'sale'
and CURRENCY_SYMBOL = 'ETH'
and NFT_ADDRESS=lower('0x960b7a6bcd451c9968473f7bbfd9be826efd549a')
and price>0
group by 1
order by 2 desc
limit 10
Run a query to Download Data