The helper contract ParticleInfoReader has a function to view which uniswap pool has the deepest liquidity:
ParticleInfoReader::getDeepPool:
The issue is that uniswap supports more feeTiers:
https://docs.uniswap.org/concepts/protocol/fees#pool-fees-tiers:
If you look at the contract:
https://etherscan.io/address/0x1f98431c8ad98523631ae4a59f267346ea31f984#readContract
it returns tick spacing 1 for fee tier 100.
Hence this might not return the pool with the deepest liquidity.
Consider adding 100 to the list of fee tiers.
