LABEL_TYPE | TRANSACTIONS | USERS | |
---|---|---|---|
1 | games | 358419559 | 36003448 |
2 | dapp | 44842516 | 2199963 |
3 | dex | 42179936 | 1316441 |
4 | defi | 7968637 | 287791 |
5 | nft | 2505839 | 149554 |
6 | bridge | 1209647 | 442633 |
7 | cex | 277057 | 14 |
8 | chadmin | 4047 | 288 |
Afonso_DiazTop labels users interacted with
Updated 2025-05-15
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
›
⌄
WITH main AS (
SELECT
tx_hash,
block_timestamp,
origin_from_address AS user,
origin_to_address as contract_address,
label_type,
label_subtype,
project_name
FROM kaia.core.fact_event_logs
left join
kaia.core.dim_labels on address = origin_to_address
where
label_subtype not in ('token_contract')
and label_type != 'token'
)
select
label_type,
count(distinct tx_hash) as transactions,
count(distinct user) as users
from
main
group by 1
order by 2 desc
Last run: 10 days ago
8
193B
306s