LABEL_TYPE | TRANSACTIONS | USERS | |
---|---|---|---|
1 | nft | 1102251 | 82476 |
2 | token | 1064603 | 101908 |
3 | bridge | 270136 | 68025 |
4 | dex | 1743 | 857 |
Afonso_Diazlabels users interacted
Updated 2025-05-10
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
›
⌄
with
main as (
select
tx_hash,
block_timestamp,
from_address as user,
to_address as contract_address,
label as project_name,
label_type,
tx_fee
from
ink.core.fact_transactions
join
ink.core.dim_labels on address = to_address
where
tx_succeeded
)
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: 14 days ago
4
89B
2s