elsinaDaily new users vs old users
    Updated 2025-02-21
    WITH users AS (
    SELECT
    from_address,
    MIN(block_timestamp) AS min_date
    FROM
    ronin.core.fact_transactions
    GROUP BY
    from_address
    ),
    new_users AS (
    SELECT
    date_trunc('day', min_date) AS date,
    COUNT(DISTINCT from_address) AS new_user_count
    FROM
    users
    -- WHERE
    -- min_date between '2024-10-13' and '2024-12-13'
    GROUP BY
    date
    ),

    old_users AS (
    SELECT
    date_trunc('day', block_timestamp) AS date,
    COUNT(DISTINCT
    CASE
    WHEN from_address IN (SELECT from_address FROM users WHERE date_trunc('day', min_date) = date_trunc('day', block_timestamp))
    THEN NULL
    ELSE from_address
    END
    ) AS old_user_count,
    COUNT(DISTINCT from_address) AS total_user_count
    FROM
    ronin.core.fact_transactions
    -- WHERE
    Last run: 29 days ago
    DAILY
    PERIOD
    OLD_USERS
    NEW_USERS
    PERCENT_NEW_USERS
    PERCENT_OLD_USERS
    1
    2024-10-02 00:00:00.000Before93022725115021.25909002878.740909972
    2
    2024-10-03 00:00:00.000Before100274420038416.65525197783.344748023
    3
    2024-10-04 00:00:00.000Before106564714634512.07474966887.925250332
    4
    2024-10-05 00:00:00.000Before105631112944010.91628849689.083711504
    5
    2024-10-06 00:00:00.000Before11146741017928.36784587591.632154125
    6
    2024-10-07 00:00:00.000Before103235811634010.12798838389.872011617
    7
    2024-10-08 00:00:00.000Before10174781010119.03102310390.968976897
    8
    2024-10-09 00:00:00.000Before1011009829127.57934073892.420659262
    9
    2024-10-10 00:00:00.000Before827590862699.44007773690.559922264
    10
    2024-10-11 00:00:00.000Before7664238546110.03199966289.968000338
    11
    2024-10-12 00:00:00.000Before7795739034010.38494654189.615053459
    12
    2024-10-13 00:00:00.000Before791885774248.90638426691.093615734
    13
    2024-10-14 00:00:00.000Before810460262483.13705617796.862943823
    14
    2024-10-15 00:00:00.000Before74390313664015.51769760384.482302397
    15
    2024-10-16 00:00:00.000Before847698585926.46503878493.534961216
    16
    2024-10-17 00:00:00.000Before819929653777.38467829292.615321708
    17
    2024-10-18 00:00:00.000Before827225883219.64681184890.353188152
    18
    2024-10-19 00:00:00.000Before743346645657.99159808492.008401916
    19
    2024-10-20 00:00:00.000Before823040723848.08376813791.916231863
    20
    2024-10-21 00:00:00.000Before901466663976.86016512793.139834873
    ...
    143
    10KB
    22s