WALLET_ADDRESS | NET_STAKED_VOLUME | |
---|---|---|
1 | 0xc042a6d1f61df1763b7251ba18c0a3861ccf7cb7 | 51551039.8043367 |
2 | 0x428a04ae58c0991c0eafb211bbabe558a2dc0c4b | 28047848.1604393 |
3 | 0xd910bf90fc49913ec5192af7690c6efdcf3e2396 | 24144104.3666822 |
4 | 0x6b3cc5596e05b2e8d755cc0cf54073790d584caf | 15245479.0631268 |
5 | 0xb8aee60b702c939b15ab455166e39a0ba621d77e | 15083901.8306824 |
6 | 0x397b162b2ee09b709fe691b6f9af689aeba5faa5 | 13700274.9374135 |
7 | 0xcf084bf66d2fcf8721beca538f2ec0cb1c06a0bb | 13093555.1016183 |
8 | 0x2ee647714bf12c5b085b9aed44f559825a57b9df | 12963484.9603498 |
9 | 0x1ba4c4449daed2ff6600c63b6323013670d87827 | 12000000.0000326 |
10 | 0x14e08a85446308604cadf9672eef74e5174a741d | 11813327.5586403 |
11 | 0x4582d679714b40db076f8155a153000bc875aa5c | 11545468.4707871 |
12 | 0xda2c0344b01c70cad2c0178c4ed714262dec260d | 11395796.2079576 |
13 | 0xcffde4a2e9211a3fee2344d0c86e224eab7926ff | 11005423.5046532 |
14 | 0x90a11de52bafefa425a039fac00a137952e6a350 | 10555461.7902359 |
15 | 0x4bcdb9df97425268c9702b5c6bc990189d2d898f | 9569301.9731378 |
16 | 0x33784c5c2b5d2089228e4210540850edcd81ea06 | 9257829.13109986 |
17 | 0xf15dddf06e7e743762e015537c849ad5c4863e0c | 9098001.75121062 |
18 | 0x6381c616f47e716750d699f82047309f362e5c37 | 8781951.02501647 |
19 | 0x83b9f8683c3995f3c774fafb2388cf2b629b9aea | 8758631.64044127 |
20 | 0xaaf466817eb07412234a82e839c070c48773ee0f | 7373084.40919433 |
Ali3N$ARENA Stakers Leaderboard
Updated 6 hours ago
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 claimrewardst as (
select distinct tx_hash
from avalanche.core.ez_decoded_event_logs
where origin_to_address = '0xeffb809d99142ce3b51c1796c096f5b01b4aaec4'
and event_name = 'Transfer'
and origin_function_signature = '0x2e1a7d4d'
and contract_address = '0xb8d7710f7d8349a506b75dd184f05777c82dad0c'
--and topics[0] = '0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef'
--and origin_from_address = decoded_log:to
and decoded_log:value/1e18 = '0'
group by 1),
staket as (
select origin_from_address,
sum (decoded_log:value/1e18) as Staked_Volume
from avalanche.core.ez_decoded_event_logs
where origin_to_address = '0xeffb809d99142ce3b51c1796c096f5b01b4aaec4'
and event_name = 'Transfer'
and origin_function_signature = '0xb6b55f25'
and contract_address = '0xb8d7710f7d8349a506b75dd184f05777c82dad0c'
--and origin_from_address = decoded_log:from
group by 1),
unstaket as (
select origin_from_address,
sum (decoded_log:value/1e18) as Unstaked_Volume
from avalanche.core.ez_decoded_event_logs
where origin_to_address = '0xeffb809d99142ce3b51c1796c096f5b01b4aaec4'
and event_name = 'Transfer'
and origin_function_signature = '0x2e1a7d4d'
and contract_address = '0xb8d7710f7d8349a506b75dd184f05777c82dad0c'
and tx_hash not in (select distinct tx_hash from claimrewardst group by 1)
--and origin_from_address = decoded_log:to
group by 1)
select coalesce (t1.origin_from_address,t2.origin_from_address) as Wallet_Address,
Last run: about 6 hours agoAuto-refreshes every 12 hours
...
8802
513KB
52s