msafadoostdaily number of distinct wallets have deposited ETH to Optimism via the native bridge in the last 60 days
    Updated 2022-06-16
    SELECT DATE(BLOCK_TIMESTAMP),
    COUNT(DISTINCT(ETH_FROM_ADDRESS))
    FROM ethereum.core.ez_eth_transfers
    WHERE BLOCK_TIMESTAMP >= CURRENT_DATE - 60
    AND ETH_TO_ADDRESS = '0x99c9fc46f92e8a1c0dec1b1747d010903e884be1' -- deposit address
    GROUP by 1
    ORDER by 1
    Run a query to Download Data