OneDataAnalystCopy of Daily Amount and Number of xDAI transfers out of address (.....)
    Updated 2022-10-16
    SELECT Date_trunc('day',BLOCK_TIMESTAMP) AS Date, SUM(Amount) AS Transfer_out_Vol, Count(*) AS Transfer_out_txns
    FROM gnosis.core.ez_xdai_transfers
    WHERE ETH_FROM_ADDRESS IN ('0x0681f11412c27035f694d7bd6691bf03fb413ff3','0x0681f11412c27035f694d7bd6691bf03fb413ff3','0xf38f1a8e0dab6a8df95a29135796ae39137b9cee')
    GROUP BY 1

    Run a query to Download Data