SocioAnalytica user activity over time
    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
    )

    SELECT
    date_trunc('week', block_timestamp) as date,
    project_name,
    label_type as sector,
    count(DISTINCT tx_signer) as "Active Users",
    count(DISTINCT case when rank = 1 then tx_signer end) as "New Users",
    CASE when date BETWEEN '2023-01-01' and '2023-04-01' then 'Q1 2023'
    when date BETWEEN '2023-04-01' and '2023-07-01' then 'Q2 2023'
    when date BETWEEN '2023-07-01' and '2023-10-01' then 'Q3 2023'
    when date BETWEEN '2023-10-01' and '2024-01-01' then 'Q4 2023'
    end as quarter
    FROM all_user a
    LEFT JOIN near.core.dim_address_labels b
    on a.tx_RECEIVER = b.address
    WHERE date BETWEEN '2023-01-01' AND '2023-12-31'
    AND project_name is not null
    AND sector not in ('token', 'chadmin')
    GROUP by 1 , 2 , 3
    qualify row_number()over (partition by date order by "Active Users" DESC) <= 10
    ORDER BY 1 DESC




    Last run: about 1 year ago
    DATE
    PROJECT_NAME
    SECTOR
    Active Users
    New Users
    QUARTER
    1
    2023-12-25 00:00:00.000kaikaidapp59645953854164Q4 2023
    2
    2023-12-25 00:00:00.000playembergames350344251631Q4 2023
    3
    2023-12-25 00:00:00.000ref financedefi623913Q4 2023
    4
    2023-12-25 00:00:00.000near socialdapp561054Q4 2023
    5
    2023-12-25 00:00:00.000blackdragondefi53928Q4 2023
    6
    2023-12-25 00:00:00.000orderly networkdefi376233Q4 2023
    7
    2023-12-25 00:00:00.000sweatgames43309151776Q4 2023
    8
    2023-12-25 00:00:00.000neatdefi4380644Q4 2023
    9
    2023-12-25 00:00:00.000lonkdefi173911Q4 2023
    10
    2023-12-25 00:00:00.000okexcex1641433Q4 2023
    11
    2023-12-18 00:00:00.000kaikaidapp77483566151850Q4 2023
    12
    2023-12-18 00:00:00.000playembergames344588239724Q4 2023
    13
    2023-12-18 00:00:00.000orderly networkdefi366624Q4 2023
    14
    2023-12-18 00:00:00.000ref financedefi19832Q4 2023
    15
    2023-12-18 00:00:00.000okexcex1788678Q4 2023
    16
    2023-12-18 00:00:00.000sweatgames46684357715Q4 2023
    17
    2023-12-18 00:00:00.000neatdefi265114Q4 2023
    18
    2023-12-18 00:00:00.000near socialdapp184714Q4 2023
    19
    2023-12-18 00:00:00.000nekodefi174819Q4 2023
    20
    2023-12-18 00:00:00.000geardefi13246Q4 2023
    ...
    520
    33KB
    307s