adriaparcerisasdau aptos 2.3
    Updated 9 days ago
    -- forked from dau aptos 2 @ https://flipsidecrypto.xyz/studio/queries/46ead731-5454-4d3c-9cc1-5b95057f24c9


    WITH
    news as (
    SELECT
    distinct sender,
    min(trunc(block_timestamp,'week')) as debut
    from aptos.core.fact_transactions
    group by 1
    ),
    daus as (
    SELECT
    distinct sender as users,
    trunc(block_timestamp,'week') as weeks,
    count(distinct trunc(block_timestamp,'day')) as active_days
    from aptos.core.fact_transactions
    group by 1,2
    having active_days>=4
    ),
    active_users as (
    SELECT
    debut as date,
    case when sender in (select users from daus) then 'DAU'
    else 'No DAU' end as type,
    count(distinct sender) as n_userss
    from news
    group by 1,2
    )
    select date, type, n_userss as n_users, sum(n_users) over (order by date) as total_users from active_users
    where date>=current_date-interval '{{Months}} MONTHS' and date<trunc(current_date,'week') order by 1 asc


    Last run: 9 days ago
    DATE
    TYPE
    N_USERS
    TOTAL_USERS
    1
    2024-12-30 00:00:00.000DAU961621642032
    2
    2024-12-30 00:00:00.000No DAU15458701642032
    3
    2025-01-06 00:00:00.000No DAU13509293107184
    4
    2025-01-06 00:00:00.000DAU1142233107184
    5
    2025-01-13 00:00:00.000No DAU23285655515670
    6
    2025-01-13 00:00:00.000DAU799215515670
    7
    2025-01-20 00:00:00.000DAU1095448396228
    8
    2025-01-20 00:00:00.000No DAU27710148396228
    9
    2025-01-27 00:00:00.000DAU10910812076123
    10
    2025-01-27 00:00:00.000No DAU357078712076123
    11
    2025-02-03 00:00:00.000No DAU239509714537112
    12
    2025-02-03 00:00:00.000DAU6589214537112
    13
    2025-02-10 00:00:00.000DAU7035416740163
    14
    2025-02-10 00:00:00.000No DAU213269716740163
    15
    2025-02-17 00:00:00.000DAU8445319201158
    16
    2025-02-17 00:00:00.000No DAU237654219201158
    17
    2025-02-24 00:00:00.000DAU6652522167713
    18
    2025-02-24 00:00:00.000No DAU290003022167713
    19
    2025-03-03 00:00:00.000DAU5614924238972
    20
    2025-03-03 00:00:00.000No DAU201511024238972
    50
    3KB
    229s