0xHaM-dOnboarding Users to Projects
    Updated 2025-04-30
    with projectsTb as (
    select
    address,
    project_name as project,
    label_type as Sector
    from
    near.core.dim_address_labels
    where
    project_name is not null
    and label_type not in ('chadmin', 'cex', 'token', 'fungible_token')
    and project_name != 'Exchanges'
    ),
    newr_new_users as (
    select
    tx_signer,
    min(BLOCK_TIMESTAMP) as min_date
    from
    near.core.fact_transactions
    where
    tx_signer not in (
    select
    address
    from
    projectsTb
    )
    GROUP BY
    1
    ),
    all_newr_new_users as (
    select
    count(distinct tx_signer) as n_new_users
    from
    newr_new_users
    ),
    new_usersTb as (
    select
    Last run: about 2 months ago
    PROJECT
    N_NEW_USRS
    % of All NEAR Users
    SECTOR
    1
    kaikai4623021562.9922dapp
    2
    playember1003103613.6681games
    3
    sweat52736297.1857games
    4
    here wallet11734431.5989dapp
    5
    uwon2195850.2992defi
    6
    astro stakers1084940.1478defi
    7
    mpdao772680.1053defi
    8
    learn near club469250.0639dapp
    9
    harvest moon320920.0437games
    10
    hot near wallet320830.0437dapp
    11
    usdc301690.0411defi
    12
    lonk243510.0332defi
    13
    lnr204770.0279defi
    14
    ledger194210.0265defi
    15
    aurora180660.0246bridge
    16
    linear protocol149980.0204defi
    17
    orderly network113240.0154defi
    18
    trust nodes99700.0136defi
    19
    neat92580.0126defi
    20
    lis60220.0082defi
    ...
    365
    10KB
    265s