mattkstewA Surge of Optimism 4
    Updated 2022-12-20
    select
    event_name,
    count(*)


    from optimism.core.fact_event_logs
    where block_timestamp between '2022-11-06' and '2022-12-14'
    and event_name is not null
    group by 1
    order by 2 desc
    limit 25
    Run a query to Download Data