LABEL_TYPE | TRANSACTIONS | |
---|---|---|
1 | defi | 1581 |
2 | token | 1488 |
3 | bridge | 252 |
4 | dapp | 241 |
5 | cex | 12 |
6 | nft | 4 |
7 | games | 3 |
Afonso_DiazLabels
Updated 2025-03-29
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
main as (
select
tx_hash,
tx_receiver as wallet_address,
block_timestamp
from
near.core.ez_actions a
where
receipt_signer_id ilike '%eth-wallet%'
and not wallet_address ilike '%.near'
and wallet_address like '0x%'
and tx_succeeded
and year(block_timestamp) >= 2024
union all
select
tx_hash,
receipt_predecessor_id as wallet_address,
block_timestamp
from
near.core.ez_actions a
where
receipt_signer_id ilike '%eth-wallet%'
and not wallet_address ilike '%.near'
and wallet_address like '0x%'
and tx_succeeded
and year(block_timestamp) >= 2024
),
final as (
select
tx_hash,
block_timestamp,
Last run: 13 days ago
7
91B
710s