select origin_from_address,
sum (amount) as Staked_Volume_OLAS,
sum (amount_usd) as Staked_Volume_USD,
count (distinct tx_hash) as Transactions
--avg (amount) as Average_Staked_Volume_OLAS,
--avg (amount_USD) as Average_Staked_Volume_USD,
from crosschain.olas.ez_olas_staking
group by 1
order by 2 desc