ML6Daily transacted distinct wallets
    Updated 2022-08-08
    select count(distinct FROM_ADDRESS) as wallets ,to_date(BLOCK_TIMESTAMP)
    from optimism.core.fact_transactions
    where to_date(BLOCK_TIMESTAMP) > '2022-06-30' and to_date(BLOCK_TIMESTAMP) <= '2022-07-31' and STATUS='SUCCESS'
    group by 2
    Run a query to Download Data