farid-c9j0VMthe 30 most popular events that have been used on Flow over the last week.
    Updated 2022-06-18
    with top_30 as (
    select event_type as popular_events,
    count(tx_id) as event_count
    from flow.core.fact_events
    where block_timestamp::date >= CURRENT_DATE() - 7
    group by event_type
    order by event_count desc limit 30
    )

    select *
    from top_30
    Run a query to Download Data