h4wkdebridge new user
    Updated 3 hours ago
    with price as (
    select hour::date as price_date,
    token_address,
    case when token_address in ('Dn4noZ5jgGfkntzcQSUZ8czkreiZ1ForXYoV2H8Dm7S1', '8qJSyQprMC57TWKaYEmetUR3UUiTP2M3hXdcvFhkZdmv') then 'USDT'
    when token_address in ('A9mUU4qviSctJVPJdBJWkb28deg915LYJKrzQ19ji3FM', 'FCqfQSujuPxy6V42UvafBhsysWtEq1vhjfMN1PUbgaxA') then 'USDC'
    when token_address in ('33fsBLA8djQm82RpHmE3SuVrPGtZBWNYExsEUeKX1HXX', '5RpUwQ8wtdPCZHhu6MERp2RGrpobsbZ6MH5dDHkUjs2') then 'BUSD'
    else symbol end as symbol,
    avg(price) as price
    from solana.price.ez_prices_hourly
    where price_date = Current_date
    and token_address not in ('96fxUxwiZm9rkCdDaP2qmB73eA8FcD3wTeuczTtmkdk3') -- SPEPE
    group by all
    )
    , base as (
    select
    block_timestamp,
    user_address
    from solana.defi.fact_bridge_activity
    join price on (token_address = mint)
    where succeeded
    and platform = 'deBridge'
    )
    , first_date as (
    select
    user_address,
    min(block_timestamp) as first_date
    from base
    group by 1
    )

    , daily_new_users as (
    select
    first_date::date as date,
    count(distinct user_address) as daily_new_user_count
    from first_date
    group by 1
    Last run: about 3 hours agoAuto-refreshes every 24 hours
    DATE
    DAILY_USER_COUNT
    DAILY_NEW_USER_COUNT
    RETURNING_USER
    DAILY_USER_COUNT_7_DAY_AVG
    1
    2025-01-03 00:00:00.000178357812051783
    2
    2025-01-04 00:00:00.000152952010091656
    3
    2025-01-05 00:00:00.00015055509551605.666
    4
    2025-01-06 00:00:00.000188166612151674.5
    5
    2025-01-07 00:00:00.000183561512201706.6
    6
    2025-01-08 00:00:00.000176752112461716.666
    7
    2025-01-09 00:00:00.000147744710301682.428
    8
    2025-01-10 00:00:00.000161453810761658.285
    9
    2025-01-11 00:00:00.00011833967871608.857
    10
    2025-01-12 00:00:00.00010693497201546.571
    11
    2025-01-13 00:00:00.000138737510121476
    12
    2025-01-14 00:00:00.000152247210501431.285
    13
    2025-01-15 00:00:00.000161051011001408.857
    14
    2025-01-16 00:00:00.00014914989931410.857
    15
    2025-01-17 00:00:00.000164058010601414.571
    16
    2025-01-18 00:00:00.0004445250719381880.571
    17
    2025-01-19 00:00:00.0004658253921192393.285
    18
    2025-01-20 00:00:00.0004162206720952789.714
    19
    2025-01-21 00:00:00.000222878914392890.571
    20
    2025-01-22 00:00:00.000232273615862992.285
    90
    4KB
    2s