olavTop 20 Protocols with most interacted with USDC from first of Sep
    Updated 2022-10-27
    select b.project_name,
    count(distinct(tx_hash)) as total_tx_num
    from ethereum.core.fact_event_logs a
    left join flipside_prod_db.crosschain.address_labels b
    on a.origin_to_address = b.address
    where 1 = 1
    and contract_address = '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48'
    and contract_address != origin_to_address
    and block_timestamp >= '2022-09-01'
    group by b.project_name
    having b.project_name != ''
    order by total_tx_num desc
    limit 20
    Run a query to Download Data