kiacryptonot retention users percentage
Updated 2022-12-19
999
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 flow as (
select
proposer as addr,
count(distinct block_timestamp) as tx_count
from flow.core.fact_transactions
where block_timestamp::date >= '2022-01-01'
group by 1
),
eth as (
select
from_address as addr,
count(distinct block_timestamp) as tx_count
from ethereum.core.fact_transactions
where block_timestamp::date >= '2022-01-01'
group by 1
),
algo as (
select
tx_sender as addr,
count(distinct block_timestamp) as tx_count
from algorand.core.fact_transaction
where block_timestamp::date >= '2022-01-01'
group by 1
),
ava as (
select
from_address as addr,
count(distinct block_timestamp) as tx_count
from avalanche.core.fact_transactions
where block_timestamp::date >= '2022-01-01'
group by 1
),
-- tx_rank_bsc as (
-- select
-- from_address as addr,
-- block_timestamp as time,
Run a query to Download Data