SELECT
round(sum(amount),2) as total_volume,
avg(amount) as stake_size,
count(distinct tx_id) as no_of_txns,
COUNT(DISTINCT origin_address) as stakers_count
FROM ethereum.udm_events
WHERE origin_address = from_address
AND to_address = '0xae7ab96520de3a18e5e111b5eaab095312d7fe84'
AND event_type = 'native_eth'