ADDRESS | TOTAL_AMOUNT | |
---|---|---|
1 | 0xaaaaaaaa82812f0a1f274016514ba2ca933bf24d | 320.525081975 |
2 | 0xf495610d64fa6a32c5f968c947028f9c7cacfb19 | 212.695518366 |
3 | 0xada85b59f0fe127b81b499afb6a73335def41e74 | 152.23936 |
4 | 0x1773002742a2bcc7666e38454f761ce8fe613de5 | 150 |
5 | 0xc3d33a0ea1582410075567c589af895fcaf1127c | 141.474664751 |
6 | 0x5c9e30def85334e587cf36eb07bdd6a72bf1452d | 119.146881 |
7 | 0x156daf376cfbdd938c470a227508b0ba022c998f | 55.433685 |
8 | 0xd92293daca6bbed57f8cb6d498b48ea93e035e99 | 50.107892 |
9 | 0x89320709fa03205df978694c3151d40f1dd5cc23 | 49.724981 |
10 | 0xd2a3afc44b635fdf50d3c4eb89b0c3109cfd5fac | 39.30184 |
11 | 0x0459f2363c5dca3228caed32e4da545129043c17 | 33.926117 |
12 | 0x11d0b9058104247be40744b1e5a708fc0ae8f7cc | 32.341762 |
13 | 0x55bbcea2e28b3e25391839cbae1cb9bece406dcd | 24.921101 |
14 | 0x6132727c4fc42e8c6fd0814bd62ca0565844a596 | 24.802225 |
15 | 0x817fb018a6bbfc39b774e9fe5bc17cb7931e98be | 24.658852 |
16 | 0x8831e460e417011d5833d2594b6eb19ae4cd57a7 | 21.910583 |
17 | 0x12b1c89124af9b720c1e3e8e31492d66662bf040 | 20.351293 |
18 | 0x6b6cf9916c73bbb9939347dede25a5686fee8393 | 20 |
19 | 0x4bc43ef9398dffedf86cb83dec91db81fdf7e8c1 | 19.9451 |
20 | 0x6909521fc0bf92faa33f333d1e50d2dc51946601 | 19.917356 |
0xHaM-drswETH Holders
Updated 2025-04-06
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 eventTb11 as (
select
BLOCK_TIMESTAMP,
ORIGIN_FROM_ADDRESS as address,
(DECODED_LOG:value/1e18) as amount
from swell.core.ez_decoded_event_logs
where EVENT_NAME ilike 'Transfer'
and CONTRACT_NAME ilike 'rswETH'
-- and CONTRACT_NAME ilike 'rSWELL'
)
,
eventTb2 as (
select
BLOCK_TIMESTAMP,
ORIGIN_FROM_ADDRESS as address,
-- DECODED_LOG:to::string as address,
(DECODED_LOG:value/1e18) as amount
from swell.core.ez_decoded_event_logs
where EVENT_NAME ilike 'Transfer'
and CONTRACT_NAME ilike 'rswETH'
-- and CONTRACT_NAME ilike 'rSWELL'
and DECODED_LOG:to in (select address from eventTb11)
union all
select
BLOCK_TIMESTAMP,
DECODED_LOG:to::string as address,
(DECODED_LOG:value/1e18) as amount
from swell.core.ez_decoded_event_logs
where EVENT_NAME ilike 'Transfer'
and CONTRACT_NAME ilike 'rswETH'
-- and CONTRACT_NAME ilike 'rSWELL'
-- and ORIGIN_FROM_ADDRESS not in (select address from eventTb11)
and DECODED_LOG:from not in (select address from eventTb11)
)
Last run: 19 days ago
...
471
27KB
2s