0x0D203C32bbd48653fcbf1898B7a8d757d391f7Bc2022, lowest monthly transaction volumn on Ethereum
    Updated 2022-08-24
    SELECT
    date_trunc('month',BLOCK_TIMESTAMP) as month1,
    count(DISTINCT(TX_HASH)) AS monthly_transcation
    FROM ethereum.core.fact_transactions
    WHERE block_timestamp::DATE BETWEEN '2022-01-01' AND '2022-07-31'
    group by 1
    order by 1
    Run a query to Download Data