permaryStellar Users
    Updated 2025-02-17
    with first_txn_dates as (
    select
    account,
    min(date(block_timestamp)) as first_txn_date
    from stellar.core.fact_transactions
    group by account
    )
    select
    date(t.block_timestamp) as transaction_date,
    count(distinct t.account) as daily_unique_users,
    count(distinct case
    when date(t.block_timestamp) = f.first_txn_date
    then t.account
    end) as new_users,
    count(distinct case
    when date(t.block_timestamp) > f.first_txn_date
    then t.account
    end) as recurring_users
    from stellar.core.fact_transactions t
    left join first_txn_dates f
    on t.account = f.account
    group by transaction_date
    order by transaction_date desc;
    Last run: 28 days ago
    TRANSACTION_DATE
    DAILY_UNIQUE_USERS
    NEW_USERS
    RECURRING_USERS
    1
    2025-02-17 00:00:00.00057104159855506
    2
    2025-02-16 00:00:00.00075292385571437
    3
    2025-02-15 00:00:00.00073420396069460
    4
    2025-02-14 00:00:00.00083596515278444
    5
    2025-02-13 00:00:00.00087018442682592
    6
    2025-02-12 00:00:00.00086458525981199
    7
    2025-02-11 00:00:00.00085312480580507
    8
    2025-02-10 00:00:00.00081207460976598
    9
    2025-02-09 00:00:00.00085395857676819
    10
    2025-02-08 00:00:00.00085813783977974
    11
    2025-02-07 00:00:00.00084756728877468
    12
    2025-02-06 00:00:00.00078241609272149
    13
    2025-02-05 00:00:00.00073394399069404
    14
    2025-02-04 00:00:00.00075748464471104
    15
    2025-02-03 00:00:00.00079111479874313
    16
    2025-02-02 00:00:00.00074606382970777
    17
    2025-02-01 00:00:00.00075000409870902
    18
    2025-01-31 00:00:00.00073874467269202
    19
    2025-01-30 00:00:00.00073466580567661
    20
    2025-01-29 00:00:00.00071867443267435
    ...
    414
    18KB
    198s