i_danBaseChain: Daily Total Transactions Across Ethereum And L2 Chains 2024
    Updated 2024-11-14
    -- Parts of this query are forked and inspired from https://flipsidecrypto.xyz/optimus_prime/aptos-built-for-a-billion-people-rEKoh9 By Optimus_Prime
    SELECT
    'Ethereum' AS blockchain
    , DATE_TRUNC('day', block_timestamp) AS transaction_day
    , COUNT(*) AS total_transactions
    FROM
    ethereum.core.fact_transactions
    WHERE 1=1
    AND block_timestamp >= '2024-01-01'
    GROUP BY
    2

    UNION ALL

    SELECT
    'Arbitrum' AS blockchain
    , DATE_TRUNC('day', block_timestamp) AS transaction_day
    , COUNT(*) AS total_transactions
    FROM
    arbitrum.core.fact_transactions
    WHERE 1=1
    AND block_timestamp >= '2024-01-01'
    GROUP BY
    2

    UNION ALL

    SELECT
    'Base' AS blockchain
    , DATE_TRUNC('day', block_timestamp) AS transaction_day
    , COUNT(*) AS total_transactions
    FROM
    base.core.fact_transactions
    WHERE 1=1
    AND block_timestamp >= '2024-01-01'
    GROUP BY
    Last run: 16 days ago
    BLOCKCHAIN
    TRANSACTION_DAY
    TOTAL_TRANSACTIONS
    1
    Arbitrum2024-01-01 00:00:00.0001406054
    2
    Base2024-01-01 00:00:00.000415556
    3
    Ethereum2024-01-01 00:00:00.0001101465
    4
    Optimism2024-01-01 00:00:00.000402799
    5
    Polygon2024-01-01 00:00:00.0003059676
    6
    Arbitrum2024-01-02 00:00:00.0001521718
    7
    Base2024-01-02 00:00:00.000369598
    8
    Ethereum2024-01-02 00:00:00.0001128657
    9
    Optimism2024-01-02 00:00:00.000418946
    10
    Polygon2024-01-02 00:00:00.0003730634
    11
    Arbitrum2024-01-03 00:00:00.0001759754
    12
    Base2024-01-03 00:00:00.000341621
    13
    Ethereum2024-01-03 00:00:00.0001092220
    14
    Optimism2024-01-03 00:00:00.000413320
    15
    Polygon2024-01-03 00:00:00.0003916286
    16
    Arbitrum2024-01-04 00:00:00.0001555840
    17
    Base2024-01-04 00:00:00.000337125
    18
    Ethereum2024-01-04 00:00:00.0001116573
    19
    Optimism2024-01-04 00:00:00.000394855
    20
    Polygon2024-01-04 00:00:00.0003590581
    ...
    2295
    103KB
    554s