select DISTINCT origin_from_address as wallets,count(tx_hash) as lp_positions
from ethereum.core.fact_event_logs
where tx_status = 'SUCCESS'
and origin_to_address = '0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f'
and origin_function_signature in ('0xe8e33700','0xf305d719')
and block_timestamp > '2022-01-01'
group by 1
order by 2 desc
limit 10