STAT_DATE | MAIN_PERCENT | |
---|---|---|
1 | 2025-02-19 14 | 0.444444 |
2 | 2025-02-19 15 | 0.394277 |
3 | 2025-02-19 16 | 0.469368 |
4 | 2025-02-19 17 | 0.314374 |
5 | 2025-02-19 18 | 0.144733 |
6 | 2025-02-19 19 | 0.076286 |
7 | 2025-02-19 20 | 0.106047 |
8 | 2025-02-19 21 | 0 |
9 | 2025-02-20 04 | 0.247312 |
10 | 2025-02-20 05 | 0.22866 |
11 | 2025-02-20 06 | 0.244881 |
12 | 2025-02-20 08 | 0.287356 |
13 | 2025-02-20 09 | 0.280502 |
14 | 2025-02-20 12 | 0 |
15 | 2025-02-20 13 | 0.237209 |
16 | 2025-02-20 14 | 0.286817 |
17 | 2025-02-22 03 | 1 |
18 | 2025-02-22 04 | 0.289308 |
19 | 2025-02-22 12 | 1 |
20 | 2025-02-23 15 | 1 |
dylan_apr% of Addresses Ethereum Mainnet Balance >0.01
Updated 2025-02-25
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
›
⌄
select
stat_date
-- ,mainnet_address_count
-- ,total_claim_address_count
,mainnet_address_count /total_claim_address_count as main_percent
from
(
select
TO_CHAR(stat_date, 'YYYY-MM-DD HH24') as stat_date
,count(case when transfer_type='out' and value>=2 then other_address else null end ) as mainnet_address_count
,count(case when transfer_type='out' then other_address else null end ) as total_claim_address_count
from
(
SELECT
FROM_ADDRESS AS core_address,
TO_ADDRESS AS other_address,
'out' AS transfer_type,
value,
BLOCK_TIMESTAMP AS stat_date,
TX_HASH as hash
FROM monad.testnet.fact_transactions
WHERE from_address=lower('0xD7a24d1F1435CD314E86736E139f8431D4498D4e')
and BLOCK_TIMESTAMP>='2025-02-19 14:00:00'
) a
group by 1
order by 1
) a
order by 1
Last run: 12 days ago
...
249
5KB
7s