adriaparcerisasankrEVM staking pool 2
    Updated 7 minutes 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: 7 minutes ago
    DATE
    NEW_STAKERS
    TOTAL_UNIQUE_STAKERS_CUMULATIVE
    1
    2025-04-21 00:00:00.0003221
    2
    2025-04-14 00:00:00.0001218
    3
    2025-04-07 00:00:00.0003217
    4
    2025-03-31 00:00:00.0003214
    5
    2025-03-24 00:00:00.0005211
    6
    2025-03-17 00:00:00.0007206
    7
    2025-03-10 00:00:00.0003199
    8
    2025-02-24 00:00:00.0005196
    9
    2025-02-17 00:00:00.0008191
    10
    2025-02-10 00:00:00.00010183
    11
    2025-02-03 00:00:00.0008173
    12
    2025-01-27 00:00:00.0001165
    13
    2025-01-20 00:00:00.0003164
    14
    2025-01-13 00:00:00.0004161
    15
    2025-01-06 00:00:00.0003157
    16
    2024-12-30 00:00:00.0004154
    17
    2024-12-23 00:00:00.0004150
    18
    2024-12-16 00:00:00.0004146
    19
    2024-12-09 00:00:00.00012142
    20
    2024-12-02 00:00:00.0007130
    33
    1KB
    1s