Skip to main content

Documentation Index

Fetch the complete documentation index at: https://hedera-0c6e0218-mintlify-enhance-hollow-account-docs-97196.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

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