Skip to main content
Constructs a TokenId.
ConstructorDescription
new TokenId(<shard>,<realm>,<token>)Initializes the TokenId object
new TokenId()

Methods

MethodTypeDescription
TokenId.fromString(<tokenId>)StringConstructs a token ID from a String value
TokenId.fromSolidityAddress(<address>)StringConstructs 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