NonfungiblePositionManager
Wraps Pancake V3 positions in the ERC721 non-fungible token interface
Contract Info
Solidity API
Position
constructor
positions
Returns the position information associated with a given token ID.
Throws if the token ID is not valid.
Parameters
tokenId
uint256
The ID of the token that represents the position
Return Values
nonce
uint96
The nonce for permits
operator
address
The address that is approved for spending
token0
address
The address of the token0 for a specific pool
token1
address
The address of the token1 for a specific pool
fee
uint24
The fee associated with the pool
tickLower
int24
The lower end of the tick range for the position
tickUpper
int24
The higher end of the tick range for the position
liquidity
uint128
The liquidity of the position
feeGrowthInside0LastX128
uint256
The fee growth of token0 as of the last action on the individual position
feeGrowthInside1LastX128
uint256
The fee growth of token1 as of the last action on the individual position
tokensOwed0
uint128
The uncollected amount of token0 owed to the position as of the last computation
tokensOwed1
uint128
The uncollected amount of token1 owed to the position as of the last computation
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.
Parameters
params
struct INonfungiblePositionManager.MintParams
The params necessary to mint a position, encoded as MintParams
in calldata
Return Values
tokenId
uint256
The ID of the token that represents the minted position
liquidity
uint128
The amount of liquidity for this position
amount0
uint256
The amount of token0
amount1
uint256
The amount of token1
isAuthorizedForToken
tokenURI
baseURI
_Returns the base URI set via {setBaseURI}. This will be automatically added as a prefix in {tokenURI} to each token's URI, or to the token ID if no specific URI is set for that token ID.
increaseLiquidity
Increases the amount of liquidity in a position, with tokens paid by the msg.sender
Parameters
params
struct INonfungiblePositionManager.IncreaseLiquidityParams
tokenId The ID of the token for which liquidity is being increased, amount0Desired The desired amount of token0 to be spent, amount1Desired The desired amount of token1 to be spent, amount0Min The minimum amount of token0 to spend, which serves as a slippage check, amount1Min The minimum amount of token1 to spend, which serves as a slippage check, deadline The time by which the transaction must be included to effect the change
Return Values
liquidity
uint128
The new liquidity amount as a result of the increase
amount0
uint256
The amount of token0 to acheive resulting liquidity
amount1
uint256
The amount of token1 to acheive resulting liquidity
decreaseLiquidity
Decreases the amount of liquidity in a position and accounts it to the position
Parameters
params
struct INonfungiblePositionManager.DecreaseLiquidityParams
tokenId The ID of the token for which liquidity is being decreased, amount The amount by which liquidity will be decreased, amount0Min The minimum amount of token0 that should be accounted for the burned liquidity, amount1Min The minimum amount of token1 that should be accounted for the burned liquidity, deadline The time by which the transaction must be included to effect the change
Return Values
amount0
uint256
The amount of token0 accounted to the position's tokens owed
amount1
uint256
The amount of token1 accounted to the position's tokens owed
collect
Collects up to a maximum amount of fees owed to a specific position to the recipient
Parameters
params
struct INonfungiblePositionManager.CollectParams
tokenId The ID of the NFT for which tokens are being collected, recipient The account that should receive the tokens, amount0Max The maximum amount of token0 to collect, amount1Max The maximum amount of token1 to collect
Return Values
amount0
uint256
The amount of fees collected in token0
amount1
uint256
The amount of fees collected in token1
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.
Parameters
tokenId
uint256
The ID of the token that is being burned
_getAndIncrementNonce
Gets the current nonce for a token ID and then increments it, returning the original value
getApproved
_Returns the account approved for tokenId
token.
Requirements:
tokenId
must exist._
_approve
_Overrides approve to use the operator in the position, which is packed with the position permit nonce
Last updated