ArioWeekly # of Stakers and New Stakers over time
    Updated 2025-02-01
    with deposit_sol as (
    select
    block_timestamp,
    'Deposit Sol' as type,
    TX_ID,
    SIGNERS [0] as User_address
    from
    solana.core.fact_events a
    cross join TABLE(FLATTEN(inner_instruction :instructions)) b
    where
    program_id = 'SPoo1Ku8WFXoNDMHPsrGSTSG1Y47rzgn41SLUNakuHy'
    and b.value:parsed:info:lamports is not null
    and b.value:programId :: string = '11111111111111111111111111111111'
    and b.value:parsed:type = 'transfer'
    and SUCCEEDED = 'true'
    AND CONTAINS(
    a.INSTRUCTION:accounts,
    'J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn' :: variant
    )
    group by
    1,
    2,
    3,
    4
    ),
    deposit_stake as (
    select
    block_timestamp,
    'Deposit Stake' as type,
    TX_ID,
    SIGNERS [0] as User_address
    from
    solana.core.fact_events a
    cross join TABLE(FLATTEN(inner_instruction :instructions)) b
    cross join table(flatten(inner_instruction:instructions)) c
    where
    Last run: 2 months ago
    WEEK
    # of All Users
    # of New Users
    Total New Users
    1
    2023-10-30 00:00:00.0002491199212436
    2
    2023-08-14 00:00:00.000130011334294
    3
    2023-01-16 00:00:00.0005934542
    4
    2024-09-30 00:00:00.00026021717152186
    5
    2024-01-15 00:00:00.0002617176973189
    6
    2024-11-25 00:00:00.000110208883189287
    7
    2024-02-05 00:00:00.0003511270083335
    8
    2024-07-22 00:00:00.00039182708129840
    9
    2023-06-05 00:00:00.00053271159
    10
    2024-03-25 00:00:00.0001683121495058
    11
    2023-10-09 00:00:00.0005322519074
    12
    2023-07-24 00:00:00.0004192912710
    13
    2023-01-23 00:00:00.0004926568
    14
    2024-10-07 00:00:00.00058603312155498
    15
    2024-11-18 00:00:00.000106238077180404
    16
    2023-12-11 00:00:00.0005271371061533
    17
    2022-12-26 00:00:00.000299463
    18
    2024-10-14 00:00:00.00052812727158225
    19
    2025-01-06 00:00:00.00068535055232370
    20
    2024-10-28 00:00:00.00044592786163590
    ...
    119
    5KB
    64s