HosseinUser activity on chain overtime (near)
    Updated 2024-01-20

    WITH

    t2 as (
    SELECT
    timestamp::date as date,
    token_contract,
    avg(price_usd) as price_usd
    from near.price.fact_prices
    GROUP BY date, token_contract
    ),

    t3 as (
    SELECT
    a.tx_hash,
    a.block_timestamp,
    trader as swapper
    FROM near.defi.ez_dex_swaps a
    WHERE platform = 'v2.ref-finance.near'
    AND block_timestamp::date >= '2021-10-01'
    )

    SELECT
    DATE_TRUNC('month', block_timestamp) "Month",
    'Non-Swap' "Transaction Type",
    count(distinct tx_hash) "Transactions",
    count(distinct tx_signer) "Users"
    FROM near.core.fact_transactions
    WHERE tx_signer IN (SELECT DISTINCT swapper FROM t3)
    AND tx_hash not in (SELECT DISTINCT tx_hash FROM t3)
    GROUP BY 1

    UNION ALL
    SELECT
    DATE_TRUNC('month', block_timestamp) "Month",
    Last run: over 1 year ago
    Month
    Transaction Type
    Transactions
    Users
    1
    2021-07-01 00:00:00.000Non-Swap3141504081
    2
    2020-11-01 00:00:00.000Non-Swap25393312
    3
    2022-12-01 00:00:00.000Non-Swap2504183289
    4
    2021-10-01 00:00:00.000Non-Swap126032520911
    5
    2021-10-01 00:00:00.000Swap27976418135
    6
    2022-12-01 00:00:00.000Swap1261821
    7
    2020-07-01 00:00:00.000Non-Swap152
    8
    2020-10-01 00:00:00.000Non-Swap3176451
    9
    2020-09-01 00:00:00.000Non-Swap718128
    10
    2022-09-01 00:00:00.000Non-Swap3654873917
    11
    2023-01-01 00:00:00.000Non-Swap2791282771
    12
    2022-09-01 00:00:00.000Swap3512434
    13
    2023-01-01 00:00:00.000Swap2377022
    14
    2022-04-01 00:00:00.000Non-Swap8008059049
    15
    2020-08-01 00:00:00.000Non-Swap113
    16
    2022-04-01 00:00:00.000Swap6033425
    17
    2022-11-01 00:00:00.000Non-Swap6151683324
    18
    2022-11-01 00:00:00.000Swap4705630
    19
    2023-08-01 00:00:00.000Non-Swap2194321504
    20
    2023-08-01 00:00:00.000Swap2103715
    71
    3KB
    94s