takamoriUntitled Query
Updated 2023-02-28
99
1
2
3
4
5
6
7
8
9
10
›
⌄
select date(block_timestamp) as date, round(sum(creator_fee),2) as royalties_paid_eth, round(sum(price),2) as volume_eth, count(price) as trade_count
from ethereum.core.ez_nft_sales
where currency_symbol in ('WETH', 'ETH')
and nft_address in ('0x34eebee6942d8def3c125458d1a86e0a897fd6f9','0x036721e5a769cc48b3189efbb9cce4471e8a48b1',
'0x6339e5e072086621540d0362c4e3cea0d643e114','0xbd8451d2d5fb88469a764b05c1e0b623c5106145')
group by 1 order by 1 desc
Run a query to Download Data