DATE | Cumulative Unique Unstakers | |
---|---|---|
1 | 2025-02-18 00:00:00.000 | 1 |
2 | 2025-02-19 00:00:00.000 | 151 |
3 | 2025-02-20 00:00:00.000 | 777 |
4 | 2025-02-21 00:00:00.000 | 1246 |
5 | 2025-02-22 00:00:00.000 | 2984 |
6 | 2025-02-23 00:00:00.000 | 6155 |
7 | 2025-02-24 00:00:00.000 | 9622 |
8 | 2025-02-25 00:00:00.000 | 19098 |
9 | 2025-02-26 00:00:00.000 | 45402 |
10 | 2025-02-27 00:00:00.000 | 57266 |
11 | 2025-02-28 00:00:00.000 | 82080 |
12 | 2025-03-01 00:00:00.000 | 90684 |
13 | 2025-03-02 00:00:00.000 | 106403 |
14 | 2025-03-03 00:00:00.000 | 116065 |
15 | 2025-03-04 00:00:00.000 | 127651 |
16 | 2025-03-05 00:00:00.000 | 134637 |
17 | 2025-03-06 00:00:00.000 | 141609 |
18 | 2025-03-07 00:00:00.000 | 152595 |
19 | 2025-03-08 00:00:00.000 | 168506 |
20 | 2025-03-09 00:00:00.000 | 180483 |
Mrfticompulsory-maroon copy
Updated 22 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
31
32
33
34
35
36
›
⌄
-- forked from compulsory-maroon @ https://flipsidecrypto.xyz/studio/queries/26989fb9-1b75-4f5c-95f0-ecb6092e7fef
WITH database AS (
SELECT
a.BLOCK_TIMESTAMP,
a.TX_HASH,
a.ORIGIN_FROM_ADDRESS as "Unstaker",
CAST(ethereum.public.udf_hex_to_int(data) AS decimal) / 1e18 AS "$sMON Burned",
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 = '0x07aabd925866e8353407e67c1d157836f7ad923e'
and a.ORIGIN_TO_ADDRESS = '0x07aabd925866e8353407e67c1d157836f7ad923e'
and a.ORIGIN_FUNCTION_SIGNATURE = '0x30af6b2e'
and a.TX_SUCCEEDED = 'TRUE'
AND a.BLOCK_TIMESTAMP > '2025-02-18 00:00:00.000'
),
first_time_stakers AS (
SELECT
"Unstaker",
MIN(DATE(BLOCK_TIMESTAMP)) AS "First Unstaking Date" -- Get the first staking date for each staker
FROM database
GROUP BY 1
),
daily_unique_stakers AS (
SELECT
"First Unstaking Date" AS date,
COUNT("Unstaker") AS "New Unique Unstakers" -- Count new unique stakers per day
FROM first_time_stakers
GROUP BY 1
)
SELECT
date,
Last run: about 22 hours agoAuto-refreshes every 12 hours
30
1KB
237s