Josh956Ethereum all transactions
    Updated 2022-10-10
    with a as (select date_trunc('second', block_timestamp) as second, count(*) as ct
    from ethereum.core.fact_transactions
    group by 1)
    select sum(ct)
    from a
    Run a query to Download Data