adriaparcerisasneari news
    Updated 2025-03-02
    WITH first_appearance AS (
    SELECT
    owner_id,
    token_id,
    MIN(DATE_TRUNC('week', block_timestamp)) as first_week
    FROM near.defi.fact_intents
    GROUP BY 1,2
    ),
    daily_metrics AS (
    SELECT
    DATE_TRUNC('week', i.block_timestamp) as date,
    COUNT(DISTINCT i.tx_hash) as daily_intents,
    COUNT(DISTINCT i.owner_id) as active_users,
    COUNT(DISTINCT i.token_id) as active_contracts,
    COUNT(DISTINCT CASE
    WHEN DATE_TRUNC('week', i.block_timestamp) = fo.first_week
    THEN i.owner_id
    END) as new_users,
    COUNT(DISTINCT CASE
    WHEN DATE_TRUNC('week', i.block_timestamp) = fp.first_week
    THEN i.token_id
    END) as new_contracts
    FROM near.defi.fact_intents i
    LEFT JOIN first_appearance fo ON i.owner_id = fo.owner_id
    LEFT JOIN first_appearance fp ON i.token_id = fp.token_id
    GROUP BY 1
    ORDER BY 1
    ),
    cumulative_metrics AS (
    SELECT
    date,
    daily_intents,
    active_users,
    active_contracts,
    new_users,
    new_contracts,
    Last run: 2 months ago
    DATE
    DAILY_INTENTS
    ACTIVE_USERS
    NEW_USERS
    TOTAL_USERS
    ACTIVE_CONTRACTS
    NEW_CONTRACTS
    TOTAL_CONTRACTS
    CUMULATIVE_INTENTS
    1
    2025-02-17 00:00:00.00014862341642189363240818980
    2
    2025-02-10 00:00:00.00015242632002025423337617494
    3
    2025-02-03 00:00:00.00013962391971825463634315970
    4
    2025-01-27 00:00:00.0008511861351628393530714574
    5
    2025-01-20 00:00:00.00020122552081493312927213723
    6
    2025-01-13 00:00:00.00014322632201285312624311711
    7
    2025-01-06 00:00:00.0006801501131065302921710279
    8
    2024-12-30 00:00:00.00057817214195221191889599
    9
    2024-12-23 00:00:00.00073719417781127221699021
    10
    2024-12-16 00:00:00.00087922620563427241478284
    11
    2024-12-09 00:00:00.00076416715342921211237405
    12
    2024-12-02 00:00:00.0001849999227622191026641
    13
    2024-11-25 00:00:00.000318861521842419834792
    14
    2024-11-18 00:00:00.00029969651322020641604
    15
    2024-11-11 00:00:00.0003844337672221441305
    16
    2024-11-04 00:00:00.000921303030232323921
    16
    949B
    12s