PROJECT_NAME | TRANSACTIONS | USERS | |
---|---|---|---|
1 | layer3 cube | 625671 | 43207 |
2 | slipstream position nft v1.2 | 163967 | 16474 |
3 | uniswap v3 positions nft-v1 | 107372 | 40395 |
4 | hanft | 58220 | 20754 |
5 | zns connect | 43982 | 42026 |
6 | nfts2me owners | 30230 | 24078 |
7 | 0x1df2...50c1456c87c71edf9fb199d5 | 24115 | 21808 |
8 | guild pin | 20665 | 20661 |
9 | bronze supporter pin | 7738 | 6616 |
10 | 0x900b...7dfbd01f26fe6f90a9faaa19e | 6797 | 6755 |
Afonso_DiazTop projects users interacted with
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
32
›
⌄
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
left join
ink.core.dim_labels on address = to_address
where
tx_succeeded
and label_subtype not in ('token_contract')
and label_type != 'token'
)
select
project_name,
count(distinct tx_hash) as transactions,
count(distinct user) as users
from
main
group by 1
order by 2 desc
limit 10
Last run: 18 days ago
10
362B
2s