Eman-RazGrowth of Ink Chain Users Over Time
    Updated 8 days ago
    with overview as (with tab1 as (select from_address as user, min(block_timestamp::date) as first_date
    from ink.core.fact_transactions
    where tx_succeeded='TRUE'
    group by 1)

    select date_trunc('day',first_date) as "Date", count(distinct user) as "New Users",
    sum("New Users") over (order by "Date" asc) as "Total Users"
    from tab1
    group by 1)

    select "Date", "Total Users"
    from overview
    where "Date">='2024-12-15'
    order by 1
    Last run: 8 days ago
    Date
    Total Users
    1
    2024-12-16 00:00:00.00059
    2
    2024-12-17 00:00:00.0001485
    3
    2024-12-18 00:00:00.0004830
    4
    2024-12-19 00:00:00.0009914
    5
    2024-12-20 00:00:00.00011352
    6
    2024-12-21 00:00:00.00012521
    7
    2024-12-22 00:00:00.00013827
    8
    2024-12-23 00:00:00.00015813
    9
    2024-12-24 00:00:00.00019277
    10
    2024-12-25 00:00:00.00022359
    11
    2024-12-26 00:00:00.00026122
    12
    2024-12-27 00:00:00.00028374
    13
    2024-12-28 00:00:00.00031135
    14
    2024-12-29 00:00:00.00034652
    15
    2024-12-30 00:00:00.00037454
    16
    2024-12-31 00:00:00.00041309
    17
    2025-01-01 00:00:00.00043409
    18
    2025-01-02 00:00:00.00045287
    19
    2025-01-03 00:00:00.00047332
    20
    2025-01-04 00:00:00.00049782
    ...
    123
    4KB
    6s