SELECT
date(block_timestamp) AS date,
count(DISTINCT tx_id) AS tx_count,
count(DISTINCT origin_address) AS stakers_count,
sum(amount) AS total_eth
FROM ethereum.udm_events
WHERE origin_address = from_address
AND to_address = '0xae7ab96520de3a18e5e111b5eaab095312d7fe84'
AND event_type = 'native_eth'
AND date >= CURRENT_DATE - INTERVAL'3 months'
GROUP BY 1
ORDER BY 1