select origin_from_address as users, sum(event_inputs:value/1e18) as Volume
from optimism.core.fact_event_logs
where origin_to_address = '0x170a5714112daeff20e798b6e92e25b86ea603c1'
and origin_from_address = event_inputs:from and contract_address = '0x8c6f28f2f1a3c87f0f938b96d27520d9751ec8d9'
and block_timestamp > '2022-01-01'
group by 1
order by 2 DESC
limit 5