permarymonthly stellar users
    Updated 2025-02-17
    with monthly_users as (
    select
    date_trunc('month', block_timestamp) as month,
    account,
    min(date_trunc('month', block_timestamp)) over (partition by account) as first_active_month
    from stellar.core.fact_transactions
    where account is not null
    ),
    user_metrics as (
    select
    month,
    count(distinct account) as active_users,
    count(distinct case when month = first_active_month then account end) as new_users,
    count(distinct case when month > first_active_month then account end) as recurring_users
    from monthly_users
    group by month
    ),
    cumulative_metrics as (
    select
    month,
    active_users,
    new_users,
    recurring_users,
    sum(new_users) over (order by month) as cum_total_users
    from user_metrics
    )
    select
    month,
    active_users,
    new_users,
    recurring_users,
    cum_total_users::float/1e6 as cum_total_users_millions
    from cumulative_metrics
    where month >= (select min(date_trunc('month', block_timestamp)) from stellar.core.fact_transactions)
    and month < date_trunc('month', current_timestamp())
    order by month desc;

    Last run: about 2 months ago
    MONTH
    ACTIVE_USERS
    NEW_USERS
    RECURRING_USERS
    CUM_TOTAL_USERS_MILLIONS
    1
    2025-01-01 00:00:00.0004080012125971954042.162321
    2
    2024-12-01 00:00:00.0004648302691001957301.949724
    3
    2024-11-01 00:00:00.0005553443678621874821.680624
    4
    2024-10-01 00:00:00.000242155914921506631.312762
    5
    2024-09-01 00:00:00.0003819262369411449851.22127
    6
    2024-08-01 00:00:00.000220381862451341360.984329
    7
    2024-07-01 00:00:00.000211749791111326380.898084
    8
    2024-06-01 00:00:00.000216302838441324580.818973
    9
    2024-05-01 00:00:00.000223879886471352320.735129
    10
    2024-04-01 00:00:00.000226093888821372110.646482
    11
    2024-03-01 00:00:00.0002730621322241408380.5576
    12
    2024-02-01 00:00:00.0002718041457841260200.425376
    13
    2024-01-01 00:00:00.00027959227959200.279592
    13
    741B
    280s