boomer772023-05-10 01:33 AM
Updated 2023-08-30
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
with raw as (select *,
case when project_name is null then nft_address else project_name end as projz
from ethereum.core.ez_nft_sales
where date(block_timestamp) >= current_date - 31
and price_usd > 0)
select projz as NFT_collection, platform_name, sum(price_usd) as volume_usd
from raw
where projz in ('wrapped cryptopunks', 'boredapeyachtclub', 'mutantapeyachtclub', 'azuki', 'mineablepunks')
group by 1,2
Run a query to Download Data