ArioFLOW User Retention vs Other Chains - Overall
Updated 2022-12-19Copy Reference Fork
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_TX_table as (
select
block_timestamp,
tx_id,
proposer as user_address,
row_number() over (
partition by
proposer
order by
block_timestamp
) as Rank
from
flow.core.fact_transactions
where
1 = 1
and TX_SUCCEEDED = 'TRUE'
and block_timestamp >= current_date - 180
),
FLOW_TX_table_with_lag as (
select
block_timestamp,
tx_id,
proposer as user_address,
row_number() over (
partition by
proposer
order by
block_timestamp
) as Rank
from
flow.core.fact_transactions
where
1 = 1
and TX_SUCCEEDED = 'TRUE'
and block_timestamp >= current_date - 180
Run a query to Download Data