nitsDaily Senders
Updated 2022-05-03
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 algo as
(SELECT date(first_use) as day, count(DISTINCT sender) as total_new_users , sum(total_new_users ) over (order by day) as cumulative_users,'algo' as platform
from
(SELECT sender, min(block_timestamp) as first_use from algorand.TRANSACTIONs
GROUP by 1)
where first_use >= '2022-01-01'
GROUP by 1 ),
solana as
(SELECT date(first_use) as day, count(DISTINCT sender) as total_new_users , sum(total_new_users ) over (order by day) as cumulative_users,'solana' as platform
from
(SELECT signers[0] as sender, min(block_timestamp) as first_use from solana.fact_TRANSACTIONs
GROUP by 1)
where first_use >= '2022-01-01'
GROUP by 1 ),
terra as
(SELECT date(first_use) as day, count(DISTINCT sender) as total_new_users , sum(total_new_users ) over (order by day) as cumulative_users,'terra' as platform
from
(SELECT tx_from as sender, min(block_timestamp) as first_use from terra.TRANSACTIONs
GROUP by 1)
where first_use >= '2022-01-01'
GROUP by 1 ),
ethereum as
(SELECT date(first_use) as day, count(DISTINCT sender) as total_new_users , sum(total_new_users ) over (order by day) as cumulative_users,'ethereum' as platform
from
(SELECT origin_address as sender, min(block_timestamp) as first_use from ethereum.udm_events
GROUP by 1)
where first_use >= '2022-01-01'
GROUP by 1 )
SELECT * from ethereum
UNION ALL
SELECT * from terra
UNION ALL
SELECT * FROM algo
UNION ALL
SELECT * from solana
Run a query to Download Data