elsinaDaily new users vs old users (Fablebone)
    Updated 2025-02-21
    WITH users AS (
    SELECT
    origin_from_address,
    MIN(block_timestamp) AS min_date
    FROM
    ronin.core.fact_event_logs
    where
    contract_address in ('0x3825ff6b6ad0f460660547e5890425ee821bd02c', '0xd887014121ddbad4494093689997125dde30612a')
    GROUP BY
    origin_from_address
    ),

    new_users AS (
    SELECT
    date_trunc('day', min_date) AS date,
    COUNT(DISTINCT origin_from_address) AS new_user_count
    FROM
    users
    GROUP BY
    date
    ),
    old_users AS (
    SELECT
    date_trunc('day', block_timestamp) AS date,
    COUNT(DISTINCT origin_from_address) AS old_user_count
    FROM
    ronin.core.fact_event_logs
    WHERE
    origin_from_address IN (
    SELECT origin_from_address
    FROM users
    WHERE min_date < date_trunc('day', block_timestamp)
    )
    GROUP BY
    date
    Last run: 29 days ago
    DAILY
    OLD_USERS
    NEW_USERS
    PERCENT_NEW_USERS
    PERCENT_OLD_USERS
    1
    2024-11-18 00:00:00.000115050
    2
    2024-11-19 00:00:00.000137525
    3
    2024-11-20 00:00:00.0004234799.8298596340.1701403658
    4
    2024-11-21 00:00:00.000566284383.39689058416.603109416
    5
    2024-11-22 00:00:00.000762269777.97051170922.029488291
    6
    2024-11-23 00:00:00.000959224370.0499687729.95003123
    7
    2024-11-24 00:00:00.000941278674.75181110825.248188892
    8
    2024-11-25 00:00:00.0001998340763.03422756736.965772433
    9
    2024-11-26 00:00:00.0005195604153.76468494146.235315059
    10
    2024-11-27 00:00:00.0008082666145.18076375254.819236248
    11
    2024-11-28 00:00:00.0005035973765.91524505834.084754942
    12
    2024-11-29 00:00:00.0003734799068.15080177431.849198226
    13
    2024-11-30 00:00:00.0003698896570.79680960329.203190397
    14
    2024-12-01 00:00:00.0003221969275.0561449724.94385503
    15
    2024-12-02 00:00:00.0005885998462.91511752537.084882475
    16
    2024-12-03 00:00:00.0007069076059.71326393890.286736062
    17
    2024-12-04 00:00:00.000795341092912.08118236287.918817638
    18
    2024-12-05 00:00:00.000896071269212.40676839587.593231605
    19
    2024-12-06 00:00:00.000951895070.529802708699.470197291
    20
    2024-12-07 00:00:00.00076098570.074847350899.925152649
    22
    1KB
    3s