TYPE | USER_CATEGORY | USERS | |
---|---|---|---|
1 | Bridge from Ink | Casual User (6 - 15 Transactions) | 3421 |
2 | Bridge from Ink | Engaged User (16 - 30 Transactions) | 640 |
3 | Bridge from Ink | Frequent User (31 - 50 Transactions) | 245 |
4 | Bridge from Ink | Heavy User (51 - 100 Transactions) | 129 |
5 | Bridge from Ink | New User (1 Transaction) | 26349 |
6 | Bridge from Ink | Occasional User (2 - 5 Transactions) | 14683 |
7 | Bridge from Ink | Super User (100+ Transactions) | 88 |
8 | Bridge to Ink | Casual User (6 - 15 Transactions) | 11080 |
9 | Bridge to Ink | Engaged User (16 - 30 Transactions) | 1669 |
10 | Bridge to Ink | Frequent User (31 - 50 Transactions) | 381 |
11 | Bridge to Ink | Heavy User (51 - 100 Transactions) | 180 |
12 | Bridge to Ink | New User (1 Transaction) | 77789 |
13 | Bridge to Ink | Occasional User (2 - 5 Transactions) | 39863 |
14 | Bridge to Ink | Super User (100+ Transactions) | 117 |
Afonso_DiazUser Classification
Updated 2025-03-08
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
main as (
select
tx_hash,
block_timestamp,
origin_to_address as user,
'ETH' as symbol,
amount,
amount_usd,
'Bridge to Ink' as type
from
ink.core.ez_native_transfers
where
to_address = origin_to_address
and from_address = origin_from_address
and from_address = '0xf70da97812cb96acdf810712aa562db8dfa3dbef'
and tx_hash not in (select distinct tx_hash from ink.core.ez_decoded_event_logs where event_name = 'Swap')
union all
select
tx_hash,
block_timestamp,
to_address as user,
symbol,
amount,
amount_usd,
'Bridge to Ink' as type
from
ink.core.ez_token_transfers
where
from_address = '0x836caf2409d91df0bda01bc9f3cec524ba1c571d'
and origin_to_address = from_address
and tx_hash not in (select distinct tx_hash from ink.core.ez_decoded_event_logs where event_name = 'Swap')
Last run: about 2 months ago
14
832B
17s