Updated 2025-02-24
    WITH user_activity AS (
    SELECT
    DATE_TRUNC('day', block_timestamp) AS date,
    FROM_ADDRESS AS user_address
    FROM
    kaia.core.fact_transactions
    ),
    daily_users AS (
    SELECT
    date,
    COUNT(DISTINCT user_address) AS daily_users
    FROM
    user_activity
    GROUP BY
    date
    ),
    first_activity AS (
    SELECT
    user_address,
    MIN(date) AS first_activity_date
    FROM
    user_activity
    GROUP BY
    user_address
    ),
    daily_new_users AS (
    SELECT
    first_activity_date AS date,
    COUNT(DISTINCT user_address) AS daily_new_users
    FROM
    first_activity
    GROUP BY
    first_activity_date
    ),
    daily_returning_users AS (
    SELECT
    Last run: 2 months ago
    DATE
    DAILY_USERS
    DAILY_NEW_USERS
    DAILY_RETURNING_USERS
    CUMULATIVE_NEW_USERS
    CUMULATIVE_RETURNING_USERS
    CUMULATIVE_USERS
    PERIOD
    1
    2025-01-01 00:00:00.00081296172726402449665941139167287188833228Before Launch
    2
    2025-01-02 00:00:00.000100565167358383049682676139251117188933793Before Launch
    3
    2025-01-03 00:00:00.00094399130498135049695725139332467189028192Before Launch
    4
    2025-01-04 00:00:00.00097555119378561849707662139418085189125747Before Launch
    5
    2025-01-05 00:00:00.0006925639566530049711618139483385189195003Before Launch
    6
    2025-01-06 00:00:00.000106918195468737249731164139570757189301921Before Launch
    7
    2025-01-07 00:00:00.000104688158228886649746986139659623189406609Before Launch
    8
    2025-01-08 00:00:00.0001346513178010287149778766139762494189541260Before Launch
    9
    2025-01-09 00:00:00.0003662221485235137049793618140113864189907482Before Launch
    10
    2025-01-10 00:00:00.0002360721179522427749805413140338141190143554Before Launch
    11
    2025-01-11 00:00:00.0008661190157759649814428140415737190230165Before Launch
    12
    2025-01-12 00:00:00.00079749119266782349826354140483560190309914Before Launch
    13
    2025-01-13 00:00:00.0001176891244910524049838803140588800190427603Before Launch
    14
    2025-01-14 00:00:00.0007718299406724249848743140656042190504785Before Launch
    15
    2025-01-15 00:00:00.00090596264396415749875182140720199190595381Before Launch
    16
    2025-01-16 00:00:00.00086647303145633349905496140776532190682028Before Launch
    17
    2025-01-17 00:00:00.000107709563235138649961819140827918190789737Before Launch
    18
    2025-01-18 00:00:00.00060326223513797549984170140865893190850063Before Launch
    19
    2025-01-19 00:00:00.00077171234615371050007631140919603190927234Before Launch
    20
    2025-01-20 00:00:00.000108066374127065450045043140990257191035300Before Launch
    55
    5KB
    289s