NFT ID

The ID of a non-fungible token (NFT). The NFT ID is composed of the token ID and a serial number.

ConstructorDescription

new NftId(<tokenId>,<serial>)

Initializes the NftId object

new NftId()

Methods

MethodTypeRequirement

NftId.fromString(<id>)

String

Optional

Java
new NftId(new TokenId(0,0,2), 56562);

// v1.5.0
JavaScript
new NftId(new TokenId(0,0,2), 56562);

// v1.4.10

Last updated