adambalaUnique Users on Algorand
Updated 2022-04-08
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
harmony as (
select
date_trunc('day',block_timestamp) as date ,count(distinct from_address) as number_transaction,'harmony' as title
from mdao_harmony.txs
where block_timestamp>'2022-02-01' group by 1,3 ),
algorand as (
select
date_trunc('day',block_timestamp) as date ,count(distinct sender) as number_transaction,'algorand' as title
from algorand.TRANSACTIONs
where block_timestamp>'2022-02-01' group by 1,3 ),
polygon as (
select
date_trunc('day',block_timestamp) as date ,count(distinct from_address) as number_transaction ,'polygon' as title
from polygon.TRANSACTIONs
where block_timestamp>'2022-02-01' group by 1,3 ),
ethereum as (
select
date_trunc('day',block_timestamp) as date ,count(distinct from_address) as number_transaction,'ethereum' as title
from ethereum.TRANSACTIONs
where block_timestamp>'2022-02-01' group by 1,3 ),
solana as (
select
date_trunc('day',block_timestamp) as date ,count(distinct tx_from_address) as number_transaction,'solana' as title
from solana.TRANSACTIONs
where block_timestamp>'2022-02-01' group by 1,3 ),
terra as (
select
date_trunc('day',block_timestamp) as date ,count(distinct tx_id) as number_transaction,'terra' as title
Run a query to Download Data