larrypenguinTransactions Arb Total
    Updated 2023-04-26
    SELECT
    trunc(BLOCK_TIMESTAMP, 'month') as time,
    COUNT(DISTINCT TX_HASH) as transactions
    FROM
    arbitrum.core.fact_transactions
    GROUP BY
    time
    ORDER BY
    time DESC

    /*With event_logs AS (SELECT
    trunc(BLOCK_TIMESTAMP, 'month') as time,
    COUNT(DISTINCT TX_HASH) as transactions
    FROM
    arbitrum.core.fact_event_logs
    GROUP BY
    time
    ORDER BY
    time DESC),

    fact_trans AS (SELECT
    trunc(BLOCK_TIMESTAMP, 'month') as time,
    COUNT(DISTINCT TX_HASH) as transactions
    FROM
    arbitrum.core.fact_transactions
    GROUP BY
    time
    ORDER BY
    time DESC),

    fact_blocks AS (SELECT
    trunc(BLOCK_TIMESTAMP, 'month') as time,
    SUM(TX_COUNT) as transactions
    FROM
    arbitrum.core.fact_blocks
    GROUP BY
    Run a query to Download Data