TOTAL_CLAIM_MON_AMOUNT | TOTAL_CLAIM_TX_COUNT | TOTAL_CLAIM_ADDRESS_COUNT | AVG_CLAIMED_PER_ADDRESS | |
---|---|---|---|---|
1 | 128992.2 | 86858 | 49957 | 2.582064576 |
aPrioriaPriori Faucet Counter
Updated 2025-03-04
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
›
⌄
select
sum(case when transfer_type='out' then value else 0 end ) as total_claim_MON_amount
,count(distinct case when transfer_type='out' then hash else null end ) as total_claim_tx_count
,count(distinct case when transfer_type='out' then other_address else null end ) as total_claim_address_count
,sum(case when transfer_type='out' then value else 0 end )/count(distinct case when transfer_type='out' then other_address else null end ) as avg_claimed_per_address
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'
UNION ALL
SELECT
TO_ADDRESS AS core_address,
FROM_ADDRESS AS other_address,
'in' AS transfer_type,
value,
BLOCK_TIMESTAMP AS stat_date,
TX_HASH as hash
FROM monad.testnet.fact_transactions
WHERE to_address=lower('0xD7a24d1F1435CD314E86736E139f8431D4498D4e')
and BLOCK_TIMESTAMP>='2025-02-19 14:00:00'
) a
Last run: 15 days ago
1
36B
10s