hessNew Address
    Updated 2025-03-05
    with new as ( select block_timestamp,
    from_address as user
    from sei.core_evm.fact_transactions
    where block_timestamp::date >= '2024-05-27'

    UNION all
    select block_timestamp,
    to_address as user
    from sei.core_evm.fact_transactions
    where block_timestamp::date >= '2024-05-27'
    )
    ,
    new_address as ( select min(block_timestamp) as day,
    user
    from new
    group by 2)

    select trunc(day,'day') as daily,
    count(DISTINCT user) as "New Address",
    sum("New Address") over (order by daily asc) as "Cumulative New Address"
    from new_address
    group by 1
    QueryRunArchived: QueryRun has been archived