PROJECT_NAME | TRANSACTIONS | |
---|---|---|
1 | ref finance | 949 |
2 | burrow | 152 |
3 | astro stakers | 113 |
4 | proximity | 92 |
5 | aurora | 25 |
6 | near social | 23 |
7 | meme cooking | 20 |
8 | binance | 11 |
9 | zavodil | 8 |
10 | pyth | 6 |
11 | paras | 4 |
12 | here wallet | 4 |
13 | learn near club | 3 |
14 | keypom | 3 |
15 | here pool | 2 |
16 | coinbase | 1 |
17 | near testnet faucet | 1 |
18 | learnnear | 1 |
Afonso_DiazTop Projects
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
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
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: 19 days ago
18
307B
445s