ADDRESS | NET_HOLDING | RN | |
---|---|---|---|
1 | 0xd018ce362ba0ff2ac8d85d8fe90bb023e015104d | 1000000000.25183 | 1 |
2 | 0x581b1dd14731efe7986db62e2a003e859147ed14 | 1000000000.11042 | 2 |
3 | 0x97a6945344c0e5aba275c3822ed2101af6214f8b | 1000000000.1095 | 3 |
4 | 0x1b3d6697bda29e6c3fa8d49cd0ab77c99a34fcef | 1000000000.02161 | 4 |
5 | 0x23fb83abbacb3ce3dc76509f926f5c34997e8ee4 | 1000000000.0094 | 5 |
6 | 0x92ba92a0dbb9a21b03e363547c26896dd1b14bac | 1000000000.0094 | 6 |
7 | 0x20fcd2699784314d53be3ee42b60906a38f96cf3 | 1000000000.0005 | 7 |
8 | 0x2f7e0ad39eb866792a5535fba399145263f56100 | 999999999.99965 | 8 |
9 | 0x173562a3747eb31192e196aea1180b2496881f7c | 999916976.976643 | 9 |
10 | 0x3c75cfdfb0d3c995a960c143d8958fd8a937be9e | 735705160.892025 | 10 |
11 | 0xff73ba9e0669d7ead82421ad105bc6d715606ec4 | 131762690.314999 | 11 |
12 | 0xae4f437cf284cc6ece5398da83657c531e622b9b | 29764503.0114016 | 12 |
13 | 0xfa735cca8424e4ef30980653bf9015331d9929db | 23446005.9567403 | 13 |
14 | 0x3e09533c74df2181069a1ec04c425fbca8a76b50 | 9991950.00239248 | 14 |
15 | 0xd58d857a5d9faa5865ead06a1e99b2cef8dd24d4 | 9378894.00039248 | 15 |
16 | 0xb40162fe63ac898bf5b221ac8c73de4c42a39a79 | 8998799.90050248 | 16 |
17 | 0x173d64529222db4d0427d36040bfe131c35027eb | 3232415.99028035 | 17 |
18 | 0x04c9495d7fcb42557348cd061590d99d8b8ce04a | 2685174 | 18 |
19 | 0x7d6a2ca771ac7c68d4e2bace94a3926af30d7d83 | 1618047.3309758 | 19 |
20 | 0xe0588212965896fc659e407e4ed4a94840f6ec56 | 1501396.0012 | 20 |
Monad Metrics Guildgorgeous-moccasin
Updated 2025-03-02
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 raw as
(select
block_timestamp,
tx_hash,
from_address,
to_address,
value
from monad.testnet.fact_traces
where input = '0x'
and output is null
and TX_SUCCEEDED = 'true'
and trace_address = 'ORIGIN'
and origin_function_signature = '0x'
),
out as (
select
from_address as address,
sum(-value) as amount
from raw
group by 1
),
ins as (
select
to_address as address,
sum(value) as amount
from raw
group by 1
),
combined as (
select * from ins
union all
select * from out
),
Last run: about 1 month ago
100
6KB
13s