messariAtlas - Accounts Created
    Updated 2024-01-04
    with accts as (
    select
    block_timestamp :: date as day,
    receiver_id,
    actions ['predecessor_id'],
    status_value['Failure'] as fail
    from
    near.core.fact_receipts
    where
    fail is null
    --and day >= '2024-01-01'
    qualify row_number() over (
    partition by receiver_id
    order by
    block_timestamp
    ) = 1
    ),
    summary as (
    select
    day,
    count(*) as wallets_created,
    sum(count(*)) over (
    order by
    day
    ) total_wallets
    from
    accts
    group by
    1
    )
    select
    *
    from
    summary
    order by
    1 desc;

    QueryRunArchived: QueryRun has been archived