yasmin-n-d-r-hnew ye
Updated 2023-01-12
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
36
›
⌄
with near1 as (
select
mindate :: date as day,
count (distinct tx_signer) as New_Users
from
(
select
tx_signer,
min (block_timestamp) as mindate
from
near.core.fact_transactions
group by
1
)
group by
1
),
flow1 as (
select
mindate :: date as day,
count (distinct proposer) as New_Users
from
(
select
proposer,
min(block_timestamp) as mindate
from
flow.core.fact_transactions
group by
1
)
group by
1
)
select
'NEAR' as chain,
Run a query to Download Data