Build an increase-liquidity transaction
build_increaseBuild an unsigned transaction to add liquidity to an existing Uniswap v3 position. Accepts desired amounts, recipient, and slippage; returns the transaction and unsigned RLP.
Instructions
Build an UNSIGNED tx that adds liquidity to an EXISTING Uniswap v3 position. Amounts are decimal strings (wei); mins are derived from slippageBps (default 0.5%). Returns the tx plus unsigned rlp. Simulation is OFF by default (needs token approvals + balances); pass simulate=true to attempt it.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| chainId | Yes | ||
| simulate | No | ||
| recipient | Yes | ||
| positionId | Yes | ||
| slippageBps | No | ||
| amount0Desired | Yes | ||
| amount1Desired | Yes |