hessFlow Vs other NFTs
Updated 2022-10-20Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
›
⌄
with flow as ( select date(BLOCK_TIMESTAMP) as date , count(DISTINCT(buyer)) as unique_buyer , sum(unique_buyer) over (order by date asc) as cum_user
from flow.core.fact_nft_sales
where block_timestamp::date >= '2022-05-09'
group by 1
order by 1)
,
ethereum as (select date(BLOCK_TIMESTAMP) as date , count(DISTINCT(BUYER_ADDRESS)) as unique_buyer , sum(unique_buyer) over (order by date asc) as cum_user
from ethereum.core.ez_nft_sales
where block_timestamp::date >= '2022-05-09'
group by 1
order by 1)
,
solana as (select date(BLOCK_TIMESTAMP) as date , count(DISTINCT(PURCHASER)) as unique_buyer , sum(unique_buyer) over (order by date asc) as cum_user
from solana.core.fact_nft_sales
where block_timestamp::date >= '2022-05-09'
group by 1
order by 1)
select 'Flow' as blockchain , date , unique_buyer , cum_user
from flow
UNION
select 'Ethereum' as blockchain , date , unique_buyer , cum_user
from ethereum
UNION
select 'Solana' as blockchain , date , unique_buyer , cum_user
from solana
Run a query to Download Data