ravelActive wallets
    Updated 2025-03-03
    WITH ten_min_active_wallets AS (
    SELECT
    TO_TIMESTAMP(FLOOR(EXTRACT(EPOCH FROM block_timestamp) / (10 * 60)) * (10 * 60)) AS ten_min_bucket,
    COUNT(DISTINCT from_address) AS unique_senders,
    COUNT(DISTINCT to_address) AS unique_receivers,
    COUNT(DISTINCT COALESCE(from_address, to_address)) AS total_unique_addresses
    FROM monad.testnet.fact_transactions
    WHERE block_timestamp >= '2025-02-19 15:00:00.000'
    AND tx_succeeded = TRUE
    GROUP BY ten_min_bucket
    ORDER BY ten_min_bucket DESC
    )

    SELECT
    ten_min_bucket,
    unique_senders,
    unique_receivers,
    total_unique_addresses,
    LAG(total_unique_addresses, 1) OVER (ORDER BY ten_min_bucket) AS previous_period_active,
    ((total_unique_addresses - LAG(total_unique_addresses, 1) OVER (ORDER BY ten_min_bucket)) /
    NULLIF(LAG(total_unique_addresses, 1) OVER (ORDER BY ten_min_bucket), 0) * 100)::DECIMAL(10,2) AS ten_min_growth_rate
    FROM ten_min_active_wallets;

    Last run: about 2 months ago
    TEN_MIN_BUCKET
    UNIQUE_SENDERS
    UNIQUE_RECEIVERS
    TOTAL_UNIQUE_ADDRESSES
    PREVIOUS_PERIOD_ACTIVE
    TEN_MIN_GROWTH_RATE
    1
    2025-02-19 15:00:00.000310517733105
    2
    2025-02-19 15:10:00.000360428523604310516.07
    3
    2025-02-19 15:20:00.0003512308735123604-2.55
    4
    2025-02-19 15:30:00.000396428033964351212.87
    5
    2025-02-19 15:40:00.000442729104427396411.68
    6
    2025-02-19 15:50:00.00044593213445944270.72
    7
    2025-02-19 16:00:00.0003382268333824459-24.15
    8
    2025-02-19 16:10:00.000400325564003338218.36
    9
    2025-02-19 16:20:00.0003968286339684003-0.87
    10
    2025-02-19 16:30:00.0003926171339263968-1.06
    11
    2025-02-19 16:40:00.00043378724337392610.47
    12
    2025-02-19 16:50:00.000345660334564337-20.31
    13
    2025-02-19 17:00:00.00043035904303345624.51
    14
    2025-02-19 17:10:00.00056407675640430331.07
    15
    2025-02-19 17:20:00.00057921499579256402.7
    16
    2025-02-19 17:30:00.00060881275608857925.11
    17
    2025-02-19 17:40:00.0005745125457456088-5.63
    18
    2025-02-19 17:50:00.0005151129751515745-10.34
    19
    2025-02-19 18:00:00.00052381915523851511.69
    20
    2025-02-19 18:10:00.000647314426473523823.58
    ...
    1648
    89KB
    11s