defi__joshno. of ETH tx
    Updated 2025-03-19
    select
    block_timestamp :: date as date,
    count(tx_hash) as no_of_tx
    from ethereum.core.fact_transactions
    where block_timestamp :: date between '2024-09-01' and '2024-09-11'
    group by date
    order by no_of_tx desc;

    Last run: 23 days ago
    DATE
    NO_OF_TX
    1
    2024-09-11 00:00:00.0001170510
    2
    2024-09-10 00:00:00.0001166560
    3
    2024-09-09 00:00:00.0001158357
    4
    2024-09-03 00:00:00.0001129081
    5
    2024-09-06 00:00:00.0001124382
    6
    2024-09-05 00:00:00.0001121084
    7
    2024-09-07 00:00:00.0001115728
    8
    2024-09-04 00:00:00.0001108873
    9
    2024-09-02 00:00:00.0001086384
    10
    2024-09-08 00:00:00.0001085480
    11
    2024-09-01 00:00:00.0001011212
    11
    397B
    3s