HosseinUntitled Query
    Updated 2022-06-25
    select date_trunc('day', block_timestamp) as day, count(distinct(tx_hash)) as transactions_count from optimism.core.fact_event_logs
    where tx_status = 'SUCCESS'
    group by day
    Run a query to Download Data