hessDaily New Addresses
    Updated 2025-03-27
    with basic AS (
    SELECT
    a.block_timestamp::date AS date,
    a.tx_hash,
    CONCAT('0x', SUBSTR(HEX_ENCODE(data), 25, 40)) AS user,
    value,
    tx_fee,
    b.status
    FROM
    sei.core_evm.fact_event_logs a
    LEFT JOIN
    sei.core_evm.fact_transactions b
    ON
    a.tx_hash = b.tx_hash
    WHERE
    a.block_timestamp::date >= '2024-05-01'
    AND b.block_timestamp::date >= '2024-05-01'

    UNION ALL

    SELECT
    block_timestamp::date AS date,
    tx_hash,
    from_address AS user,
    value,
    tx_fee,
    status
    FROM
    sei.core_evm.fact_transactions
    WHERE
    block_timestamp::date >= '2024-04-27'
    )
    ,
    new as (select min(date::date) as date,
    user
    from basic
    Last run: 12 days ago
    DATE
    QUARTER
    New Address
    Cumulative New Addresses
    1
    2024-05-27 00:00:00.000Q2-2024 (EVM Launch)139139
    2
    2024-05-28 00:00:00.000Q2-2024 (EVM Launch)746885
    3
    2024-05-29 00:00:00.000Q2-2024 (EVM Launch)15992484
    4
    2024-05-30 00:00:00.000Q2-2024 (EVM Launch)14243908
    5
    2024-05-31 00:00:00.000Q2-2024 (EVM Launch)20075915
    6
    2024-06-01 00:00:00.000Q2-2024 (EVM Launch)27998714
    7
    2024-06-02 00:00:00.000Q2-2024 (EVM Launch)319511909
    8
    2024-06-03 00:00:00.000Q2-2024 (EVM Launch)89212801
    9
    2024-06-04 00:00:00.000Q2-2024 (EVM Launch)91513716
    10
    2024-06-05 00:00:00.000Q2-2024 (EVM Launch)157315289
    11
    2024-06-06 00:00:00.000Q2-2024 (EVM Launch)71316002
    12
    2024-06-07 00:00:00.000Q2-2024 (EVM Launch)69416696
    13
    2024-06-08 00:00:00.000Q2-2024 (EVM Launch)84317539
    14
    2024-06-09 00:00:00.000Q2-2024 (EVM Launch)18217721
    15
    2024-06-10 00:00:00.000Q2-2024 (EVM Launch)29418015
    16
    2024-06-11 00:00:00.000Q2-2024 (EVM Launch)67918694
    17
    2024-06-12 00:00:00.000Q2-2024 (EVM Launch)156720261
    18
    2024-06-13 00:00:00.000Q2-2024 (EVM Launch)177822039
    19
    2024-06-14 00:00:00.000Q2-2024 (EVM Launch)40822447
    20
    2024-06-15 00:00:00.000Q2-2024 (EVM Launch)29722744
    ...
    305
    15KB
    62s