SocioAnalyticaActive user
    Updated 2024-02-07
    with all_user as (
    SELECT
    block_timestamp,
    tx_hash,
    tx_receiver,
    tx_signer,
    row_number() over (partition by tx_signer order by block_timestamp) as rank
    FROM near.core.fact_transactions
    WHERE TX_SUCCEEDED
    )
    ,
    active_users_q1 as (
    SELECT
    project_name,
    label_type as sector,
    count(DISTINCT tx_signer) as "Q1 2023"
    FROM all_user a
    LEFT JOIN near.core.dim_address_labels b
    on a.tx_RECEIVER = b.address
    WHERE block_timestamp BETWEEN '2023-01-01' AND '2023-04-01'
    AND project_name is not null
    GROUP by 1 , 2
    )
    ,
    active_users_q2 as (
    SELECT
    project_name,
    label_type as sector,
    count(DISTINCT tx_signer) as "Q2 2023"
    FROM all_user a
    LEFT JOIN near.core.dim_address_labels b
    on a.tx_RECEIVER = b.address
    WHERE block_timestamp BETWEEN '2023-04-01' and '2023-07-01'
    AND project_name is not null
    GROUP by 1 , 2
    )
    Last run: about 1 year ago
    PROJECT
    SECTORS
    DAU Q1 2023
    DAU Q2 2023
    DAU Q3 2023
    DAU Q4 2023
    Total Active Users 2023
    % DAU Q4
    1
    kaikaidapp001723169132566801497984988
    2
    sweatgames1486061139540314310221862022617450830
    3
    playembergames78095752736491781731270253381668
    4
    orderly networkdefi2829368135836334887583444
    5
    near socialdapp608066925479297324798362
    6
    okexcex60375475425585122427935
    7
    ref financedefi56002540173191561902748
    8
    learnneardapp39434953508645091849124
    9
    parasnft53245546172525941518917
    10
    few and farnft252412020194165149031
    11
    parasnft5324554630525941376919
    12
    parasdefi532455461725748133436
    13
    astro stakersdefi27262317324445711285836
    14
    neatdefi0001281912819100
    15
    refdefi37272370178941611204735
    16
    parasdefi53245546305748119236
    17
    parasnft8795546172525941074424
    18
    coinbasecex23011603188145531033844
    19
    parasnft5324534172525941017725
    20
    parasnft87955463052594932428
    20
    969B
    364s