v3-periphery
v3-periphery copied to clipboard
mint could be separated from increaseLiquidity if token id is counterfactual
we use multicall everywhere for batch operations
mint contains duplicated logic with increaseLiquidity
however we cannot mint a token and then increase its liquidity because we do not know the minted token id until after the mint succeeds
we could reduce the duplication of logic if the token id were counterfactually computed from the sender address + mint nonce, but it would be costly and introduce mint ordering dependency
can't figure out a good way to do this, making p1