Updated 2023-04-05
    SELECT
    DATE(block_timestamp) as date,
    COUNT(distinct tx_hash) as num_transactions
    FROM
    ethereum.core.fact_transactions
    WHERE
    block_timestamp::date >= '2022-03-01'
    GROUP BY
    1
    ORDER BY
    1 ASC
    Run a query to Download Data