Mrfticompulsory-maroon copy
    Updated 22 hours ago
    -- 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
    DATE
    Cumulative Unique Unstakers
    1
    2025-02-18 00:00:00.0001
    2
    2025-02-19 00:00:00.000151
    3
    2025-02-20 00:00:00.000777
    4
    2025-02-21 00:00:00.0001246
    5
    2025-02-22 00:00:00.0002984
    6
    2025-02-23 00:00:00.0006155
    7
    2025-02-24 00:00:00.0009622
    8
    2025-02-25 00:00:00.00019098
    9
    2025-02-26 00:00:00.00045402
    10
    2025-02-27 00:00:00.00057266
    11
    2025-02-28 00:00:00.00082080
    12
    2025-03-01 00:00:00.00090684
    13
    2025-03-02 00:00:00.000106403
    14
    2025-03-03 00:00:00.000116065
    15
    2025-03-04 00:00:00.000127651
    16
    2025-03-05 00:00:00.000134637
    17
    2025-03-06 00:00:00.000141609
    18
    2025-03-07 00:00:00.000152595
    19
    2025-03-08 00:00:00.000168506
    20
    2025-03-09 00:00:00.000180483
    30
    1KB
    237s