zakkisyedtx over time
    select

    date_trunc(hour,block_timestamp) as date,
    count(*) as tx_count,
    count(distinct(from_address)) as users,
    sum(tx_fee) as total_fee,
    avg(gas_price) as avg_gwei
    FROM ethereum.core.fact_transactions
    where to_address = lower('0xb48Eb8368c9C6e9b0734de1Ef4ceB9f484B80b9C')
    group by 1
    order by date desc


    Run a query to Download Data