SELECT block_timestamp::date as date, sum(eth_value) as total_eth_fail_deposited
FROM ethereum.core.fact_transactions
WHERE to_address = '0xae0ee0a63a2ce6baeeffe56e7714fb4efe48d419' and status = 'FAIL' and date <= '2022-06-28'
GROUP BY 1
ORDER BY 1 ASC