RayyykSolana user adoption 1
    Updated 2024-06-27
    with new_user as (select min(block_timestamp) as initial_transaction,
    signers[0] as new_users
    from solana.core.fact_transactions
    where succeeded = 'TRUE'
    group by 2
    having initial_transaction >= current_date - 30),

    table_1 as (select date_trunc('day', initial_transaction) as day,
    count(distinct(new_users)) as wallet_count,
    sum(wallet_count) over (order by day) as cumu_wallet_count
    from new_user
    group by 1)

    select day,
    wallet_count,
    cumu_wallet_count
    from table_1
    order by 1 desc
    Last run: over 1 year ago
    DAY
    WALLET_COUNT
    CUMU_WALLET_COUNT
    1
    2024-01-30 00:00:00.000445871687181
    2
    2024-01-29 00:00:00.0001265041642594
    3
    2024-01-28 00:00:00.000842631516090
    4
    2024-01-27 00:00:00.000838621431827
    5
    2024-01-26 00:00:00.000630531347965
    6
    2024-01-25 00:00:00.000674791284912
    7
    2024-01-24 00:00:00.000456251217433
    8
    2024-01-23 00:00:00.000472641171808
    9
    2024-01-22 00:00:00.000518811124544
    10
    2024-01-21 00:00:00.000522641072663
    11
    2024-01-20 00:00:00.000607411020399
    12
    2024-01-19 00:00:00.00044147959658
    13
    2024-01-18 00:00:00.00052338915511
    14
    2024-01-17 00:00:00.00055218863173
    15
    2024-01-16 00:00:00.00076329807955
    16
    2024-01-15 00:00:00.00050941731626
    17
    2024-01-14 00:00:00.00039302680685
    18
    2024-01-13 00:00:00.00037101641383
    19
    2024-01-12 00:00:00.00043622604282
    20
    2024-01-11 00:00:00.00045695560660
    31
    1KB
    892s