select
max(amount_out_usd) USD_out
,amount_in_usd
,pool_name
,block_timestamp
,symbol_in
,amount_in
,amount_out
,symbol_out
,tx_hash
from ethereum.core.ez_dex_swaps
where block_timestamp > '2022-01-01'
and platform = 'uniswap-v3'
and amount_out_usd is not null
group by 2, 3, 4, 5, 6, 7, 8, 9
order by 1 desc
limit 1