khanhDAI amount that bridged from Optimism to Ethereum per month
    Updated 2022-09-15
    SELECT DATE_TRUNC('MONTH', BLOCK_TIMESTAMP) AS "Time", SUM(AMOUNT) as "DAI Total Volume"
    FROM ethereum.core.ez_token_transfers
    WHERE ORIGIN_TO_ADDRESS = '0x25ace71c97b33cc4729cf772ae268934f7ab5fa1'
    AND SYMBOL = 'DAI'
    GROUP BY "Time"
    Run a query to Download Data