FatemeTheLadyRO11
Updated 2022-10-06
9
1
2
3
4
5
6
7
8
›
⌄
select date_trunc('week',BLOCK_TIMESTAMP) as date
,PLATFORM_NAME as "Platform Name"
,count(distinct PROJECT_NAME) as "Number of projects"
,count(distinct NFT_ADDRESS) as "Number of NFTs"
,sum(CREATOR_FEE_USD) /"Number of NFTs" as "Royalty per NFT$"
from ethereum.core.ez_nft_sales
group by 1,2
having sum(CREATOR_FEE_USD) > 0
Run a query to Download Data