0-MIDnumber of transactions in ethereum blockchain
    Updated 2022-11-28
    select date_trunc('day',block_timestamp)as day,count(tx_id)as number_of_tx
    from ethereum.udm_events
    where day>='2022-01-01'
    and symbol='USDC'
    group by 1
    Run a query to Download Data