mlhcount of transactions for each contract
    Updated 2022-07-06
    SELECT
    count(distinct tx_hash),
    CONTRACT_ADDRESS
    from arbitrum.core.fact_event_logs
    group by 2
    order by 1 DESC
    limit 20
    Run a query to Download Data