KuramaIBC chains - DAU
Updated 2023-06-02
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 dau_cosmos as (
select date_trunc('day',block_timestamp) as date,
'Cosmos' as chain,
count(distinct tx_from) as num_users
from cosmos.core.fact_transactions
where tx_succeeded = 'TRUE'
and date_trunc('day',block_timestamp) >= '2022-01-01'
group by 1, 2
),
dau_osmosis as (
select date_trunc('day',block_timestamp) as date,
'Osmosis' as chain,
count(distinct tx_from) as num_users
from osmosis.core.fact_transactions
where tx_succeeded = 'TRUE'
and date_trunc('day',block_timestamp) >= '2022-01-01'
group by 1, 2
),
dau_axelar as (
select date_trunc('day',block_timestamp) as date,
'Axelar' as chain,
count(distinct tx_from) as num_users
from axelar.core.fact_transactions
where tx_succeeded = 'TRUE'
and date_trunc('day',block_timestamp) >= '2022-01-01'
group by 1, 2
),
dau_evmos as (
select date_trunc('day',block_timestamp) as date,
'Evmos' as chain,
count(distinct tx_from) as num_users
from evmos.core.fact_transactions
Run a query to Download Data