mmdrezaNumber of Average Buyers per day on Ethereum
Updated 2022-09-17
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
›
⌄
with flow as (select date_trunc('day',block_timestamp)as date,count(distinct buyer)as flow_nbuyers
from flow.core.ez_nft_sales
where
block_timestamp >= '2022-01-01'
group by date
order by date asc),
ethereum as (select date_trunc('day',block_timestamp)as date,count(distinct BUYER_ADDRESS)as eth_nbuyers
from ethereum.core.ez_nft_sales
where
block_timestamp >= '2022-01-01'
group by date
order by date asc),
solana as (select date_trunc('day',block_timestamp)as date,count(distinct PURCHASER)as sol_nbuyers
from solana.core.fact_nft_sales
where
block_timestamp >= '2022-01-01'
group by date
order by date asc),
avg as (select * from ethereum)
select avg(eth_nbuyers) average_nbuyers from avg
Run a query to Download Data