Token ID

Constructs a TokenId.

ConstructorDescription

new TokenId(<shard>,<realm>,<token>)

Initializes the TokenId object

new TokenId()

Methods

MethodTypeDescription

TokenId.fromString(<tokenId>)

String

Constructs a token ID from a String value

TokenId.fromSolidityAddress(<address>)

String

Constructs a token ID from a solidity address

TokenId.fromBytes(<bytes>)

byte[]

Constructs a token ID from bytes

TokenId tokenId = new TokenId(0,0,5);
System.out.println(tokenId);

TokenId tokenIdFromString = TokenId.fromString("0.0.3");
System.out.println(tokenIdFromString);

//Version: 2.0.1

Last updated