WALLET_ADDRESS | NET_STAKED_VOLUME | |
---|---|---|
1 | 0xc042a6d1f61df1763b7251ba18c0a3861ccf7cb7 | 51982041.5505131 |
2 | 0xa3123bf411468cb503bfb2641dae5c5a44d24315 | 35713636.8335602 |
3 | 0x428a04ae58c0991c0eafb211bbabe558a2dc0c4b | 25007696.1604393 |
4 | 0x4bcdb9df97425268c9702b5c6bc990189d2d898f | 24815771.0401244 |
5 | 0xd910bf90fc49913ec5192af7690c6efdcf3e2396 | 24144104.3666822 |
6 | 0xcffde4a2e9211a3fee2344d0c86e224eab7926ff | 17197748.4144114 |
7 | 0x6b3cc5596e05b2e8d755cc0cf54073790d584caf | 15420002.3343267 |
8 | 0xb8aee60b702c939b15ab455166e39a0ba621d77e | 15083901.8306824 |
9 | 0x2ee647714bf12c5b085b9aed44f559825a57b9df | 14095933.9681643 |
10 | 0x397b162b2ee09b709fe691b6f9af689aeba5faa5 | 13858082.3495431 |
11 | 0xcf084bf66d2fcf8721beca538f2ec0cb1c06a0bb | 13097523.0282242 |
12 | 0x14e08a85446308604cadf9672eef74e5174a741d | 13076977.8002238 |
13 | 0x5da60a5391bf349e64d4d2ae41c5e28896396fd9 | 12310086.8530782 |
14 | 0x1ba4c4449daed2ff6600c63b6323013670d87827 | 12000000.0000326 |
15 | 0xda2c0344b01c70cad2c0178c4ed714262dec260d | 11864556.1669611 |
16 | 0x4582d679714b40db076f8155a153000bc875aa5c | 11677578.0252322 |
17 | 0x33784c5c2b5d2089228e4210540850edcd81ea06 | 9364412.86757828 |
18 | 0xf15dddf06e7e743762e015537c849ad5c4863e0c | 9150297.69891692 |
19 | 0x6381c616f47e716750d699f82047309f362e5c37 | 8883220.75842416 |
20 | 0x83b9f8683c3995f3c774fafb2388cf2b629b9aea | 8859343.67481739 |
Ali3N$ARENA Stakers Leaderboard
Updated 53 minutes 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 1 hour agoAuto-refreshes every 12 hours
...
8936
521KB
28s