API reference v1.0
Introduction
periphery
tokenomics
NonfungiblePositionManager

NonfungiblePositionManager

NonfungiblePositionManager

NFT positions Wraps Algebra positions in the ERC721 non-fungible token interface

Modifiers

isAuthorizedForToken

Functions

constructor

ERC721Permit, PeripheryImmutableState

constructor(address,address,address,address) public

NameTypeDescription
_factoryaddress
_WNativeTokenaddress
tokenDescriptoraddress
_poolDeployeraddress

positions

positions(uint256) view external

Returns the position information associated with a given token ID.

NameTypeDescription
tokenIduint256The ID of the token that represents the position

Returns:

NameTypeDescription
nonceuint96
operatoraddress
token0address
token1address
tickLowerint24
tickUpperint24
liquidityuint128
feeGrowthInside0LastX128uint256
feeGrowthInside1LastX128uint256
tokensOwed0uint128
tokensOwed1uint128

mint

checkDeadline

mint(struct INonfungiblePositionManager.MintParams) payable external

Creates a new position wrapped in a NFT

NameTypeDescription
paramsstruct INonfungiblePositionManager.MintParamsThe params necessary to mint a position, encoded as `MintParams` in calldata

Returns:

NameTypeDescription
tokenIduint256
liquidityuint128
amount0uint256
amount1uint256

tokenURI

tokenURI(uint256) view public

NameTypeDescription
tokenIduint256

Returns:

NameTypeDescription
[0]string

baseURI

baseURI() pure public

Returns:

NameTypeDescription
[0]string

increaseLiquidity

checkDeadline

increaseLiquidity(struct INonfungiblePositionManager.IncreaseLiquidityParams) payable external

Increases the amount of liquidity in a position, with tokens paid by the `msg.sender`

NameTypeDescription
paramsstruct INonfungiblePositionManager.IncreaseLiquidityParamstokenId 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

Returns:

NameTypeDescription
liquidityuint128
amount0uint256
amount1uint256

decreaseLiquidity

isAuthorizedForToken, checkDeadline

decreaseLiquidity(struct INonfungiblePositionManager.DecreaseLiquidityParams) payable external

Decreases the amount of liquidity in a position and accounts it to the position

NameTypeDescription
paramsstruct INonfungiblePositionManager.DecreaseLiquidityParamstokenId 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

Returns:

NameTypeDescription
amount0uint256
amount1uint256

collect

isAuthorizedForToken

collect(struct INonfungiblePositionManager.CollectParams) payable external

Collects up to a maximum amount of fees owed to a specific position to the recipient

NameTypeDescription
paramsstruct INonfungiblePositionManager.CollectParamstokenId 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

Returns:

NameTypeDescription
amount0uint256
amount1uint256

burn

isAuthorizedForToken

burn(uint256) payable external

Burns a token ID, which deletes it from the NFT contract. The token must have 0 liquidity and all tokens must be collected first.

NameTypeDescription
tokenIduint256The ID of the token that is being burned

getApproved

getApproved(uint256) view public

NameTypeDescription
tokenIduint256

Returns:

NameTypeDescription
[0]address