For the complete documentation index, see llms.txt. This page is also available as Markdown.

NonfungibleTokenPositionDescriptor

해당 컨트랙트는 JSON 메타데이터 문자열에 대한 데이터 URI를 포함하는 문자열을 생성합니다.

Code

Github Link: (Will be updated after official launch)

Address

Events, Read-Only Functions, and State-Changing Functions

Events

UpdateTokenRatioPriority

event UpdateTokenRatioPriority(
    address token,
    int256 priority
)

표시된 가격 비율에서 토큰에 새로운 우선 순위가 부여될 때 발생합니다.

Parameters:

Name
Type
Description

token

address

우선 순위가 부여되는 토큰

priority

int256

비율로 우선 순위를 나타냅니다. 더 높은 정수가 분자 우선 순위를 갖습니다.

Read-Only Functions

tokenURI

function tokenURI(
    contract INonfungiblePositionManager positionManager,
    uint256 tokenId
) external returns (string)

위치 관리자의 특정 토큰 ID를 설명하는 URI를 생성합니다. 이 URI는 data: JSON 콘텐츠가 직접 인라인된 URI일 수 있습니다.

Parameters:

Name
Type
Description

positionManager

contract INonfungiblePositionManager

토큰을 설명할 positionManager

tokenId

uint256

유효하지 않을 수 있는 설명을 생성할 토큰의 ID

Return Values:

Name
Type
Description

String

string

ERC721 호환 메타데이터의 URI

flipRatio

function flipRatio() public returns (bool)

tokenRatioPriority

function tokenRatioPriority() public returns (int256)

Last updated