Moeoptimism swap
    Updated 2022-11-09
    select
    date(BLOCK_TIMESTAMP) as days,
    count (distinct tx_hash) as num_txs,
    count(ORIGIN_FROM_ADDRESS) as num_wallets
    from optimism.core.fact_event_logs
    where EVENT_NAME ilike '%swap%'
    group by 1
    Run a query to Download Data