kingharald-ethTop 10 events in downward trend
    Updated 2022-08-12
    select event_name, count(distinct(tx_hash)) as tx_num from optimism.core.fact_event_logs
    where tx_status = 'SUCCESS'
    and event_name != ''
    and block_timestamp::date between '2022-06-06' and '2022-06-16'
    group by event_name
    order by tx_num desc
    limit 10
    Run a query to Download Data