Delamir-6014WC02 Cumulative
Updated 2022-11-22
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
select
date(BLOCK_TIMESTAMP) as date,
sum (price_usd) as Total_Sale_Volume,
sum(Total_Sale_Volume) over (order by date) as Cumulative
from ethereum.core.ez_nft_sales
where NFT_ADDRESS = lower('0x629A673A8242c2AC4B7B8C5D8735fbeac21A6205')
and PROJECT_NAME = 'sorare'
and PLATFORM_NAME = 'opensea'
and PRICE_USD > 0
group by 1
Run a query to Download Data