rezarwzAverage Daily # of Txs
    Updated 2025-02-24
    SELECT
    blockchain,
    avg(Daily_Active_User) as "Average Daily # of Txs",
    median(Daily_Active_User) as "Median Daily # of Txs"
    from
    (
    SELECT
    'Blast' as blockchain,
    block_timestamp :: date as date,
    count(DISTINCT from_address) as Daily_Active_User,
    count(tx_hash) as "Daily # of TXs"
    FROM
    blast.core.fact_transactions
    where
    BLOCK_TIMESTAMP :: date >= '2024-02-29'
    group by
    1,
    2
    union
    all
    SELECT
    'Base' as blockchain,
    block_timestamp :: date as date,
    count(DISTINCT from_address) as Daily_Active_User,
    count(tx_hash) as "Daily # of TXs"
    FROM
    Base.core.fact_transactions
    group by
    1,
    2
    union
    all
    SELECT
    'Optimism' as blockchain,
    block_timestamp :: date as date,
    count(DISTINCT from_address) as Daily_Active_User,
    Last run: 2 months ago
    BLOCKCHAIN
    Average Daily # of Txs
    Median Daily # of Txs
    1
    Blast47186.71270731480.5
    2
    Arbitrum170051.793129119562
    3
    Base509925.938808332304
    4
    Optimism58189.90016662318.5
    4
    130B
    240s