STAT_DATE | DAILY_CLAIM_TX_COUNT | CUMSUM_CLAIM_TX_COUNT | |
---|---|---|---|
1 | 2025-02-27 22 | 81 | 61717 |
2 | 2025-02-27 18 | 158 | 61251 |
3 | 2025-02-23 20 | 149 | 40284 |
4 | 2025-02-24 02 | 287 | 41163 |
5 | 2025-03-02 03 | 446 | 76581 |
6 | 2025-02-28 14 | 251 | 67597 |
7 | 2025-02-25 15 | 168 | 49626 |
8 | 2025-02-24 11 | 128 | 43654 |
9 | 2025-03-03 20 | 115 | 86020 |
10 | 2025-03-03 16 | 350 | 85303 |
11 | 2025-02-19 16 | 1012 | 1686 |
12 | 2025-02-27 01 | 203 | 57500 |
13 | 2025-03-03 21 | 114 | 86134 |
14 | 2025-02-19 15 | 629 | 674 |
15 | 2025-02-27 23 | 114 | 61831 |
16 | 2025-02-26 12 | 297 | 54808 |
17 | 2025-02-19 17 | 967 | 2653 |
18 | 2025-03-03 17 | 138 | 85441 |
19 | 2025-03-02 20 | 79 | 79635 |
20 | 2025-02-26 06 | 228 | 53246 |
dylan_apraPriori Faucet Claim Transactions
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
36
›
⌄
select
stat_date,
daily_claim_tx_count,
SUM(daily_claim_tx_count) OVER (ORDER BY stat_date) AS cumsum_claim_tx_count
from
(
select
TO_CHAR(stat_date, 'YYYY-MM-DD HH24') as stat_date
,count(distinct case when transfer_type='out' then hash else null end ) as daily_claim_tx_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'
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'
Last run: 13 days ago
...
220
6KB
10s