NonfungiblePositionManager
This contract wraps KLAYswap V3 positions in the ERC721 non-fungible token interface
Code
Github Link: (Will be updated after official launch)
Address
Events, Read-Only Functions, and State-Changing Functions
Events
IncreaseLiquidity
Emitted when liquidity is increased for a position NFT
Also emitted when a token is minted
Parameters:
Name | Type | Description |
---|---|---|
| uint256 | The ID of the token for which liquidity was increased |
| uint128 | The amount by which liquidity for the NFT position was increased |
| uint256 | The amount of token0 that was paid for the increase in liquidity |
| uint256 | The amount of token1 that was paid for the increase in liquidity |
DecreaseLiquidity
Emitted when liquidity is decreased for a position NFT
Parameters:
Name | Type | Description |
---|---|---|
| uint256 | The ID of the token for which liquidity was decreased |
| uint128 | The amount by which liquidity for the NFT position was decreased |
| uint256 | The amount of token0 that was accounted for the decrease in liquidity |
| uint256 | The 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
Parameters:
Name | Type | Description |
---|---|---|
| uint256 | The ID of the token for which underlying tokens were collected |
| address | The address of the account that received the collected tokens |
| uint256 | The amount of token0 owed to the position that was collected |
| uint256 | The amount of token1 owed to the position that was collected |
Last updated