MostafaDistinct Wallets Withdrawn ETH from Optimism
    Updated 2022-06-17
    select
    --- date_trunc('day',block_timestamp) as day,
    --- sum(AMOUNT_USD) as Withdrawn_ETH,
    count(distinct(ORIGIN_FROM_ADDRESS)) as Withdrawn_Wallets
    FROM ethereum.core.ez_eth_transfers
    where ORIGIN_TO_ADDRESS = lower('0x25ace71c97b33cc4729cf772ae268934f7ab5fa1')
    and block_timestamp >= current_date - 60
    ---group by 1
    Run a query to Download Data