Skip to main content

TokenGetInfoQuery

Gets information about Token instance
FieldTypeDescription
headerQueryHeaderStandard info sent from client to node, including the signed payment, and what kind of response is requested (cost, state proof, both, or neither)
tokenTokenIDThe token for which information is requested. If invalid token is provided, INVALID_TOKEN_ID response is returned.

TokenGetInfoResponse

Response when the client sends the node TokenGetInfoQuery
FieldTypeDescription
headerResponseHeaderStandard response from node to client, including the requested fields: cost, or state proof, or both, or neither
tokenInfoTokenInfoThe information requested about this token instance

TokenInfo

The metadata about a Token instance
FieldTypeDescription
tokenIdTokenIDID of the token instance
namestringThe name of the token. It is a string of ASCII only characters
symbolstringThe symbol of the token. It is a UTF-8 capitalized alphabetical string
decimalsuint32The number of decimal places a token is divisible by
totalSupplyuint64The total supply of tokens that are currently in circulation
treasuryAccountIDThe ID of the account which is set as Treasury
adminKeyKeyThe key which can perform update/delete operations on the token. If empty, the token can be perceived as immutable (not being able to be updated/deleted)
kycKeyKeyThe key which can grant or revoke KYC of an account for the token’s transactions. If empty, KYC is not required, and KYC grant or revoke operations are not possible.
freezeKeyKeyThe key which can freeze or unfreeze an account for token transactions. If empty, freezing is not possible
wipeKeyKeyThe key which can wipe token balance of an account. If empty, wipe is not possible
supplyKeyKeyThe key which can change the supply of a token. The key is used to sign Token Mint/Burn operations
defaultFreezeStatusTokenFreezeStatusThe default Freeze status (not applicable, frozen or unfrozen) of Hedera accounts relative to this token. FreezeNotApplicable is returned if Token Freeze Key is empty. Frozen is returned if Token Freeze Key is set and defaultFreeze is set to true. Unfrozen is returned if Token Freeze Key is set and defaultFreeze is set to false
defaultKycStatusTokenKycStatusThe default KYC status (KycNotApplicable or Revoked) of Hedera accounts relative to this token. KycNotApplicable is returned if KYC key is not set, otherwise Revoked
isDeletedboolSpecifies whether the token was deleted or not
autoRenewAccountAccountIDAn account which will be automatically charged to renew the token’s expiration, at autoRenewPeriod interval
autoRenewPerioduint64The interval at which the auto-renew account will be charged to extend the token’s expiry
expiryuint64The epoch second at which the token will expire; if an auto-renew account and period are specified, this is coerced to the current epoch second plus the autoRenewPeriod
memostringThe memo associated with the token
tokenTypeTokenTypeThe token type
supplyTypeTokenSupplyTypeThe token supply type
maxSupplyint64For tokens of type FUNGIBLE_COMMON - The Maximum number of fungible tokens that can be in circulation. For tokens of type NON_FUNGIBLE_UNIQUE - the maximum number of NFTs (serial numbers) that can be in circulation
fee_schedule_keyKeyThe key which can change the custom fee schedule of the token; if not set, the fee schedule is immutable
custom_feesrepeated CustomFeeThe custom fees to be assessed during a CryptoTransfer that transfers units of this token
pause_keyKeyThe Key which can pause and unpause the Token
pause_statusTokenPauseStatusSpecifies whether the token is paused or not. PauseNotApplicable is returned if pauseKey is not set.
ledger_idbytesThe ledger ID the response was returned from; please see HIP-198 for the network-specific IDs.