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