rezarwzTime to Reach 10M TXs
    Updated 2025-02-24
    WITH user_growth AS (
    SELECT
    'Blast' as blockchain,
    DATE_TRUNC('day', block_timestamp) AS date,
    COUNT(DISTINCT TX_hash) AS total_tx
    FROM
    blast.core.fact_transactions
    where
    BLOCK_TIMESTAMP :: date >= '2024-02-29'
    GROUP BY
    blockchain,
    DATE_TRUNC('day', block_timestamp)
    union
    all
    SELECT
    'Base' as blockchain,
    DATE_TRUNC('day', block_timestamp) AS date,
    COUNT(DISTINCT tx_hash) AS total_tx
    FROM
    Base.core.fact_transactions
    where
    BLOCK_TIMESTAMP :: date >= '2023-07-15'
    GROUP BY
    blockchain,
    DATE_TRUNC('day', block_timestamp)
    union
    all
    SELECT
    'Arbitrum' as blockchain,
    DATE_TRUNC('day', block_timestamp) AS date,
    COUNT(DISTINCT tx_hash) AS total_tx
    FROM
    Arbitrum.core.fact_transactions
    where
    BLOCK_TIMESTAMP :: date >= '2021-08-31'
    GROUP BY
    Last run: 2 months ago
    BLOCKCHAIN
    DAY_X
    TOTAL_TX
    1
    Arbitrum933662075
    2
    Arbitrum351968788
    3
    Arbitrum311841124
    4
    Arbitrum569926
    5
    Arbitrum733096865
    6
    Arbitrum392086192
    7
    Arbitrum1575769316
    8
    Arbitrum12530675
    9
    Arbitrum1495459853
    10
    Arbitrum1164266201
    11
    Arbitrum1938392422
    12
    Arbitrum1595874274
    13
    Arbitrum592778096
    14
    Arbitrum1415052603
    15
    Arbitrum238840
    16
    Arbitrum642897124
    17
    Arbitrum1013897422
    18
    Arbitrum11263067
    19
    Arbitrum15907390
    20
    Arbitrum1244476783
    ...
    464
    11KB
    391s