adriaparcerisasankrEVM staking pool 2
    Updated 23 hours ago
    WITH all_stakers AS (
    -- Get all staking transactions along with the staker's address and the staking date
    SELECT
    from_address AS staker,
    TRUNC(block_timestamp, 'week') AS date
    FROM flow.core_evm.fact_transactions
    WHERE origin_function_signature = '0xac76d450'
    AND lower(to_address) = lower('0xFE8189A3016cb6A3668b8ccdAC520CE572D4287a')
    ),
    -- Rank each staker by the first time they appeared (their first staking date)
    first_stake AS (
    SELECT
    staker,
    MIN(date) AS first_stake_date
    FROM all_stakers
    GROUP BY staker
    ),
    -- Count the daily new stakers and the cumulative unique stakers over time
    daily_new_stakers AS (
    SELECT
    first_stake_date AS date,
    COUNT(DISTINCT staker) AS new_stakers
    FROM first_stake
    GROUP BY first_stake_date
    )
    -- Final query to get daily new stakers and cumulative unique stakers
    SELECT
    d.date,
    COALESCE(d.new_stakers, 0) AS new_stakers,
    SUM(COALESCE(d.new_stakers, 0)) OVER (ORDER BY d.date) AS total_unique_stakers_cumulative
    FROM daily_new_stakers d
    ORDER BY d.date desc
    Last run: about 23 hours ago
    DATE
    NEW_STAKERS
    TOTAL_UNIQUE_STAKERS_CUMULATIVE
    1
    2025-03-31 00:00:00.0002213
    2
    2025-03-24 00:00:00.0005211
    3
    2025-03-17 00:00:00.0007206
    4
    2025-03-10 00:00:00.0003199
    5
    2025-02-24 00:00:00.0005196
    6
    2025-02-17 00:00:00.0008191
    7
    2025-02-10 00:00:00.00010183
    8
    2025-02-03 00:00:00.0008173
    9
    2025-01-27 00:00:00.0001165
    10
    2025-01-20 00:00:00.0003164
    11
    2025-01-13 00:00:00.0004161
    12
    2025-01-06 00:00:00.0003157
    13
    2024-12-30 00:00:00.0004154
    14
    2024-12-23 00:00:00.0004150
    15
    2024-12-16 00:00:00.0004146
    16
    2024-12-09 00:00:00.00012142
    17
    2024-12-02 00:00:00.0007130
    18
    2024-11-25 00:00:00.0009123
    19
    2024-11-18 00:00:00.0009114
    20
    2024-11-11 00:00:00.0009105
    30
    1014B
    4s