select
origin_from_address,
sum(lp_token_amount_usd) as amount
from optimism.velodrome.ez_lp_actions
where
pool_address = '0xd16232ad60188b68076a235c65d692090caba155' and
lp_action = 'deposit' and
lp_token_amount_usd is not null
group by 1
order by 2 desc
limit 10