Updated 2023-12-02
    select date_trunc('day', block_timestamp) as day, count(*) as txs from ethereum.core.fact_transactions
    where from_address = '0xef764bac8a438e7e498c2e5fccf0f174c3e3f8db'
    and block_timestamp < '2021-01-01'
    group by 1
    order by 1 asc
    Run a query to Download Data