oxkimiacolorful-fuchsia
    Updated 2025-03-07
    -- Daily Transactions, Users and Spent Fees over the Last 24 Hours for Monad Testnet
    SELECT
    TRUNC(BLOCK_TIMESTAMP, 'day') AS daily,
    COUNT(DISTINCT BLOCK_NUMBER) AS "Daily Blocks",
    COUNT(DISTINCT tx_hash) AS "Daily Transactions",
    "Daily Transactions" / "Daily Blocks" AS "Average Txns Per Blocks",
    SUM("Daily Transactions") OVER (ORDER BY daily ASC) AS "Cumulative Transactions",
    COUNT(DISTINCT from_address) AS "DAU",
    "Daily Transactions" / "DAU" AS "Average Txn Per User",
    SUM(tx_fee) AS "Daily Fees",
    AVG(tx_fee) AS "Average Txn Fee",
    MEDIAN(tx_fee) AS "Median Txn Fee",
    MAX(tx_fee) AS "Max Txn Fee",
    MIN(tx_fee) AS "Min Txn Fee"
    FROM
    monad.testnet.fact_transactions
    WHERE
    BLOCK_TIMESTAMP >= CURRENT_TIMESTAMP - INTERVAL '24 hours'
    GROUP BY
    1;
    Last run: about 1 month ago
    DAILY
    Daily Blocks
    Daily Transactions
    Average Txns Per Blocks
    Cumulative Transactions
    DAU
    Average Txn Per User
    Daily Fees
    Average Txn Fee
    Median Txn Fee
    Max Txn Fee
    Min Txn Fee
    1
    2025-03-07 00:00:00.00090530608018267.162068997116010257165.92774469575.253203950.011442955690.00474432452.50.00105
    2
    2025-03-06 00:00:00.00062100389097862.65665138909786260146.21548139689.362899310.010200356540.0044792880.00105
    2
    258B
    4s