larrypenguinTransactions Eth Total
    Updated 2023-04-22
    SELECT
    trunc(BLOCK_TIMESTAMP, 'month') as time,
    COUNT(DISTINCT TX_HASH) as transactions
    FROM
    ethereum.core.fact_transactions
    GROUP BY
    time
    ORDER BY
    time DESC
    Run a query to Download Data