LST_CUMULATIVE_USERS | FAUCET_CUMULATIVE_USERS | BOTH_USER_GROUPS_CUMULATIVE_USERS | |
---|---|---|---|
1 | 1663078 | 16149 | 42235 |
aPrioriaPriori Cumulative User
Updated 17 hours ago
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 aprior_product_tag_dim AS (
select
FROM_ADDRESS as wallet
,'Exclusive LST User' as user_tag
,date(BLOCK_TIMESTAMP) as stat_date
from monad.testnet.fact_transactions
where TO_ADDRESS=lower('0xb2f82D0f38dc453D596Ad40A37799446Cc89274A')
group by 1,3
union all
select
TO_ADDRESS as wallet
,'Exclusive Faucet User' as user_tag
,date(BLOCK_TIMESTAMP) as stat_date
from monad.testnet.fact_transactions
where FROM_ADDRESS=lower('0xD7a24d1F1435CD314E86736E139f8431D4498D4e')
group by 1,3
)
select
count(distinct case when base_user_tag='Exclusive LST User' then wallet end ) as LST_Cumulative_users
,count(distinct case when base_user_tag='Exclusive Faucet User' then wallet end ) as Faucet_Cumulative_users
,count(distinct case when base_user_tag='Both User Groups' then wallet end ) as Both_User_Groups_Cumulative_users
from
(
SELECT
wallet,
CASE
WHEN COUNT(DISTINCT user_tag) > 1 THEN 'Both User Groups'
ELSE MAX(user_tag)
END as base_user_tag
,min(stat_date) as create_date
Last run: about 17 hours ago
1
23B
24s