geminilightnum-daily-active-users (blur)
Updated 2023-04-10
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
27
28
29
30
31
32
33
34
35
›
⌄
with nft_sale as
(
select block_timestamp::date as date
, platform_name
, project_name
, seller_address
, buyer_address
, price_usd
, platform_fee_usd
, tx_fee_usd
, tx_hash
from ethereum.core.ez_nft_sales
where block_timestamp::date > current_date - interval '30 day'
), blur as
(
select date
, seller_address as active_user
from nft_sale
where platform_name = 'blur'
union
select date
, buyer_address as active_user
from nft_sale
where platform_name = 'blur'
)
select date as "Date"
, count(distinct active_user) as "Number of active users"
from blur
group by 1
order by 1