MostafaDai Most Used For
    Updated 2022-05-17
    select
    distinct origin_function_name as Most_used,
    count (distinct tx_id) as Transactions
    from flipside_prod_db.ethereum.udm_events
    where symbol='DAI'
    and origin_function_name is not null
    group by Most_used
    order by 2 desc
    limit 10
    Run a query to Download Data