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
    Last run: about 2 months ago
    DAILY
    New Address
    Cumulative New Address
    1
    2024-10-27 00:00:00.00053761748014
    2
    2025-02-04 00:00:00.0008531112541165
    3
    2024-12-20 00:00:00.000792295264700
    4
    2024-08-31 00:00:00.00053548396596
    5
    2024-07-07 00:00:00.00013828077
    6
    2024-08-20 00:00:00.0004061213701
    7
    2025-02-19 00:00:00.0004359213675690
    8
    2024-06-04 00:00:00.00078013221
    9
    2024-12-15 00:00:00.000640034641365
    10
    2024-09-04 00:00:00.0004990409476
    11
    2024-10-07 00:00:00.00067351408710
    12
    2024-11-22 00:00:00.000998862467675
    13
    2024-09-03 00:00:00.000573404486
    14
    2024-08-07 00:00:00.000159787338
    15
    2024-11-01 00:00:00.000116291796783
    16
    2024-06-06 00:00:00.00064514706
    17
    2025-01-24 00:00:00.00013231611663297
    18
    2024-06-09 00:00:00.00012415913
    19
    2024-09-30 00:00:00.000403701076426
    20
    2024-11-23 00:00:00.0001184572586132
    ...
    283
    11KB
    6s