sinahosseinzadehUntitled Query
    Updated 2022-08-08
    select BLOCK_TIMESTAMP::date date ,count(DISTINCT tx_hash) as transactions, count(DISTINCT FROM_ADDRESS)as "unique address"
    from optimism.core.fact_transactions
    where date between '2022-07-01' and '2022-08-01'
    group by 1
    Run a query to Download Data