Increase specific liquidity from specific pool.
interface IncreaseLiquidityOptions {
// pool object ID
pool: string;
// liquidity NFT ID
nft: string;
// Operator address
address: string;
// Amount of coin A
amountA: string | number;
// Amount of coin B
amountB: string | number;
// Acceptable wasted amount percentage. Range: [0, 100)
slippage: string | number;
// Expires timeout(ms), defaults 180_000
deadline?: number;
// Custom transaction handler
txb?: Transaction;
}
const tx = await pool.increaseLiquidity({
pool: '0x2c6fc12bf0d093b5391e7c0fed7e044d52bc14eb29f6352a3fb358e33e80729e',
nft: '0x...',
address: '0xc851a734b97870c41435b06c8254f1ef4cef0d53cfe1bcb0ba21a175b528311e',
amountA: 50,
amountB: 60,
slippage: 0.1,
...
});