Position Manager
Contract to create v3 positions.
Code#
NonfungiblePositionManager.sol
Address#
NonfungiblePositionManager is deployed at 0x8eF88E4c7CfbbaC1C163f7eddd4B578792201de6 on the Polygon mainnet.
Events#
IncreaseLiquidity#
Emitted when a position NFT is created via mint or liquidity is increased for a position NFT.
tokenIdThe ID of the token for which liquidity was increased.liquidityThe amount by which liquidity for the NFT position was increasedactualLiquidityThe actual liquidity that was added into a pool. Could differ fromliquiditywhen using FeeOnTransfer tokensamount0The amount of token0 that was paid for the increase in liquidityamount1The amount of token1 that was paid for the increase in liquidity
DecreaseLiquidity#
Emitted when liquidity is removed from a position NFT.
tokenIdThe ID of the token for which liquidity was decreasedliquidityThe amount by which liquidity for the NFT position was decreasedamount0The amount of token0 that was accounted for the decrease in liquidityamount1The amount of token1 that was accounted for the decrease in liquidity
Collect#
Emitted when tokens are collected for a position NFT. The amounts reported may not be exactly equivalent to the amounts transferred, due to rounding behavior
tokenIdThe ID of the token for which underlying tokens were collectedrecipientThe address of the account that received the collected tokensamount0The amount of token0 owed to the position that was collectedamount1The amount of token1 owed to the position that was collected
Read-Only Functions#
positions#
Returns the position information associated with a given token ID. Throws if the token ID is not valid.
Params
tokenIdThe ID of the token that represents the position
Returns
nonceThe nonce for permitsoperatorThe address that is approved for spendingtoken0The address of the token0 for a specific pooltoken1The address of the token1 for a specific pooltickLowerThe lower end of the tick range for the positiontickUpperThe higher end of the tick range for the positionliquidityThe liquidity of the positionfeeGrowthInside0LastX128The fee growth of token0 as of the last action on the individual positionfeeGrowthInside1LastX128The fee growth of token1 as of the last action on the individual positiontokensOwed0The uncollected amount of token0 owed to the position as of the last computationtokensOwed1The uncollected amount of token1 owed to the position as of the last computation
State-Changing Functions#
mint#
Creates a new position wrapped in a NFT. Call this when the pool does exist and is initialized. Note that if the pool is created but not initialized a method does not exist, i.e. the pool is assumed to be initialized.
Params
paramsThe params necessary to mint a position, encoded asMintParamsin calldata
Returns
tokenIdThe ID of the token that represents the minted positionliquidityThe amount of liquidity for this positionamount0The amount of token0amount1The amount of token1Emits IncreaseLiquidity.
increaseLiquidity#
Increases the amount of liquidity in a position, with tokens paid by the msg.sender
Params
tokenIdThe ID of the token for which liquidity is being increasedamount0DesiredThe desired amount of token0 to be spentamount1DesiredThe desired amount of token1 to be spentamount0MinThe minimum amount of token0 to spend, which serves as a slippage check,amount1MinThe minimum amount of token1 to spend, which serves as a slippage check,deadlineThe time by which the transaction must be included to effect the change
Returns
liquidityThe new liquidity amount as a result of the increaseamount0The amount of token0 to achieve resulting liquidityamount1The amount of token1 to achieve resulting liquidityEmits IncreaseLiquidity.
decreaseLiquidity#
Remove the amount of liquidity in a position and accounts it to the position
Params
tokenIdThe ID of the token for which liquidity is being decreasedliquidityThe amount by which liquidity will be decreasedamount0MinThe minimum amount of token0 that should be accounted for the burned liquidityamount1MinThe minimum amount of token1 that should be accounted for the burned liquiditydeadlineThe time by which the transaction must be included to effect the change
Returns
amount0The amount of token0 accounted to the position's tokens owedamount1The amount of token1 accounted to the position's tokens owedEmits DecreaseLiquidity.
collect#
Collects up to a maximum amount of fees owed to a specific position to the recipient
Params
tokenIdThe ID of the NFT for which tokens are being collectedrecipientThe account that should receive the tokensamount0MaxThe maximum amount of token0 to collectamount1MaxThe maximum amount of token1 to collect
Returns
amount0The amount of fees collected in token0amount1The amount of fees collected in token1Emits Collect.
burn#
Burns a token ID, which deletes it from the NFT contract. The token must have 0 liquidity and all tokens must be collected first.
tokenIdThe ID of the token that is being burned