sriniEthereum traces agg
    Updated 2022-10-17
    select date_trunc('day', block_timestamp) as date_, to_address, count(*) as calls_
    from ethereum.core.fact_traces
    where block_timestamp >= '2022-10-01'
    and block_timestamp < '2022-10-11'
    and type = 'CALL'
    group by 1, 2
    order by calls_ desc
    Run a query to Download Data