Wikist-oA67h0Gritnova L6 a - Ethereum Transaction Count
    Updated 2023-04-22
    select
    date_trunc('week', block_timestamp) as weekly,
    count(distinct tx_hash) as Transaction_Count
    from ethereum.core.fact_transactions
    group by 1
    order by weekly