0xHaM-dRetention
    Updated 2025-04-30
    -- forked from Retention @ https://flipsidecrypto.xyz/edit/queries/c0cb060e-fca1-4c21-9399-e460b535d396

    -- forked from Retention by Dune @ https://flipsidecrypto.xyz/edit/queries/821afa83-97c1-49de-bc53-f515ada55660

    WITH
    users AS (
    select
    block_timestamp,
    tx_hash,
    TX_SIGNER
    FROM near.core.fact_transactions
    WHERE block_timestamp::date > '2023-01-01'
    ),
    firstUserOccurrences AS (
    SELECT
    TX_SIGNER,
    MIN(users.BLOCK_TIMESTAMP::date) AS firstTradeDate
    FROM
    users
    GROUP BY
    TX_SIGNER
    ),
    statsByDay AS (
    SELECT
    date_trunc('week',BLOCK_TIMESTAMP)::date as date,
    COUNT(DISTINCT (users.TX_SIGNER)) AS num_users,
    COALESCE(COUNT(DISTINCT (firstUserOccurrences.TX_SIGNER)), 0) AS num_New_users,
    COUNT(DISTINCT (users.TX_SIGNER)) - COALESCE(COUNT(DISTINCT (firstUserOccurrences.TX_SIGNER)), 0) AS num_Returning_users,
    SUM(
    COALESCE(COUNT(DISTINCT (firstUserOccurrences.TX_SIGNER)), 0)
    ) OVER (
    ORDER BY
    date
    ) AS cum_New_users
    FROM
    users
    Last run: about 2 months ago
    DATE
    NUM_USERS
    NUM_NEW_USERS
    NUM_RETURNING_USERS
    CUM_NEW_USERS
    COHORT1_RETENTION_COUNT
    COHORT1_COUNT
    COHORT1_RETENTION_RATE
    COHORT2_RETENTION_COUNT
    COHORT2_COUNT
    COHORT2_RETENTION_RATE
    COHORT3_RETENTION_COUNT
    COHORT3_COUNT
    COHORT3_RETENTION_RATE
    COHORT4_RETENTION_COUNT
    COHORT4_COUNT
    COHORT4_RETENTION_RATE
    COHORT5_RETENTION_COUNT
    COHORT5_COUNT
    COHORT5_RETENTION_RATE
    1
    2023-01-02 00:00:00.00023885123885102388513988139881184783253892079717453
    2
    2023-01-09 00:00:00.0005798534864229343172527319144398810.480028083584783847831253892079717453
    3
    2023-01-16 00:00:00.00035890716725819164989253115743398810.394749379423692847830.2794428128253892538912079717453
    4
    2023-01-23 00:00:00.000366176147783218393104031415783398810.395752363323751847830.28013870714161253890.16388987362079720797117453
    5
    2023-01-30 00:00:00.000362441134782227659117509614574398810.365437175622156847830.26132597343841253890.151285992869207970.137952589317453174531
    6
    2023-02-06 00:00:00.000339943112206227737128730213026398810.326621699624525847830.28926789573212253890.12651148142329207970.11198730591940174530.1111556752
    7
    2023-02-13 00:00:00.000358532134808223724142211012173398810.305233068420441847830.24109786163078253890.12123360512147207970.10323604371789174530.1025038675
    8
    2023-02-20 00:00:00.000333882112394221488153450411255398810.282214588419596847830.23113124093163253890.12458151172261207970.10871760351797174530.1029622414
    9
    2023-02-27 00:00:00.00029380395471198332162997510230398810.256513126616885847830.19915549112569253890.10118555281768207970.085012261381587174530.09092992609
    10
    2023-03-06 00:00:00.0003010849940120168317293769650398810.241969860317366847830.20482879822509253890.098822324631744207970.083858248791437174530.08233541511
    11
    2023-03-13 00:00:00.0002692057507919412618044559581398810.240239713115777847830.18608683342328253890.091693252981655207970.07957878541274174530.07299604652
    12
    2023-03-20 00:00:00.0003443359319725113818976529871398810.247511346320210847830.23837325882976253890.11721611722063207970.099196999571694174530.09706067725
    13
    2023-03-27 00:00:00.0002795088085319865519785058939398810.224141821913927847830.16426642132325253890.091575091581640207970.078857527531465174530.08393972383
    14
    2023-04-03 00:00:00.000432101102218329883208072310585398810.265414608526661847830.31446162563632253890.14305407852581207970.12410443812106174530.1206669341
    15
    2023-04-10 00:00:00.0002973458019821714721609218275398810.207492289616155847830.19054527442378253890.093662609791737207970.083521661781269174530.07270956283
    16
    2023-04-17 00:00:00.0003550388890926612922498308951398810.224442717120624847830.24325631322852253890.11233211231835207970.088233879891472174530.08434080101
    17
    2023-04-24 00:00:00.0002563226627519004723161057666398810.1922218613299847830.1568592762001253890.078813659461473207970.07082752321175174530.06732366928
    18
    2023-05-01 00:00:00.0002532155209620111923682017960398810.199593791515255847830.17992993882023253890.079680176451416207970.068086743281283174530.07351171718
    19
    2023-05-08 00:00:00.0003106035963325097024278348182398810.20516035218466847830.21780309732415253890.095119933831756207970.084435255081249174530.07156362803
    20
    2023-05-15 00:00:00.0002267395162217511724794567061398810.177051728913102847830.1545356971683253890.066288550161198207970.05760446218839174530.04807196471
    ...
    122
    21KB
    972s