Staker | Total $MON Staked | Stake tx | |
---|---|---|---|
1 | 0xc9ca79af6969315fa19b69ea3333e29cd35d0d5c | 6287591.5 | 6016 |
2 | 0x61252faadcd832aa7279c78e033c95c762cd7215 | 3274783.681 | 5087 |
3 | 0xc40e189f307439729b6000ddd4b4f9a03be5f702 | 416078 | 550 |
4 | 0x7b699a3b214f36922c03465d2ea030b0fe73f0fe | 311387.5 | 1269 |
5 | 0x7c2a757af89a2e0d8b6590ebfa279561596a9c5d | 287035.55 | 333 |
6 | 0x4b2b2405f261a5c1c83ada6afb324f9ba35fbb01 | 218668.648099093 | 1304 |
7 | 0x69743a215ad25adfef6a8e2f062d09acca5d70c9 | 200993.942158187 | 583 |
8 | 0xcaef42d212f54c4f3de3fe28c1fd22b3d08fd66e | 138337 | 119 |
9 | 0xf0b44216cf3ceaa2caa78cc6a412891cc4dd4299 | 127403.6 | 142 |
10 | 0x20ce27b140a0eeeccef880e01d2082558400fdd6 | 115988.613 | 79 |
11 | 0x5d70d44809b59f92dcd2018823a3500b4af2d6f3 | 107171 | 422 |
12 | 0xe1dfc28ab6c0de4b66253760199b995770f6d768 | 103527.9752 | 960 |
13 | 0x00cf67a50124b3c71c89f4ca10da42c5c15ff380 | 102567 | 776 |
14 | 0x80af10f2cd246932a5011e5c52aca1148abb5aaf | 100407.75 | 139 |
15 | 0x899768b085a22a1807409db79a79a30880f8b099 | 99992.970931972 | 816 |
16 | 0x80b52b5077e11ba008fbbb288ee5e8b744d7ea31 | 95611.69525 | 87 |
17 | 0x1b2d134fc716561afbf8ccef56568d18c28a34aa | 87602.2 | 104 |
18 | 0x5ee5b26911278af4f46c3a2506c6fbd432727d12 | 86625.25999912 | 220 |
19 | 0x320f87f4fdcc3615965b1ac421a6cac95becfd7a | 79421 | 62 |
20 | 0x8467b8a623006b70b649881c4aadcf3014f08782 | 79311.42 | 78 |
Mrftiinternal-crimson copy
Updated 18 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
›
⌄
-- forked from internal-crimson @ https://flipsidecrypto.xyz/studio/queries/dadc0674-864e-4c76-8adc-946a9bde97b0
WITH database AS (
SELECT
a.BLOCK_TIMESTAMP,
a.TX_HASH,
a.ORIGIN_FROM_ADDRESS AS "Staker",
b.value AS "$MON Staked",
CAST(ethereum.public.udf_hex_to_int(data) AS decimal) / 1e18 AS "$gMON Received",
b.tx_fee AS "Fee ($MON)"
FROM
monad.testnet.fact_event_logs a
JOIN monad.testnet.fact_transactions b ON a.tx_hash = b.tx_hash
WHERE
a.CONTRACT_ADDRESS = lower ('0x2c9C959516e9AAEdB2C748224a41249202ca8BE7')
and a.ORIGIN_TO_ADDRESS = lower ('0x2c9C959516e9AAEdB2C748224a41249202ca8BE7')
and a.ORIGIN_FUNCTION_SIGNATURE = '0xd5575982'
and a.TX_SUCCEEDED = 'TRUE'
)
select
"Staker",
sum ("$MON Staked") as "Total $MON Staked",
count (distinct TX_HASH) as "Stake tx"
from database
group by 1
order by 2 desc
limit 100
Last run: about 18 hours agoAuto-refreshes every 12 hours
100
6KB
251s