TokenGetInfo
TokenGetInfoQuery
Gets information about Token instance
Field | Type | Description |
---|---|---|
| Standard info sent from client to node, including the signed payment, and what kind of response is requested (cost, state proof, both, or neither) | |
| The 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
Field | Type | Description |
---|---|---|
| Standard response from node to client, including the requested fields: cost, or state proof, or both, or neither | |
| TokenInfo | The information requested about this token instance |
TokenInfo
The metadata about a Token instance
Field | Type | Description |
---|---|---|
| ID of the token instance | |
| string | The name of the token. It is a string of ASCII only characters |
| string | The symbol of the token. It is a UTF-8 capitalized alphabetical string |
| uint32 | The number of decimal places a token is divisible by |
| uint64 | The total supply of tokens that are currently in circulation |
| The ID of the account which is set as Treasury | |
| The 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) | |
| The 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. | |
| The key which can freeze or unfreeze an account for token transactions. If empty, freezing is not possible | |
| The key which can wipe token balance of an account. If empty, wipe is not possible | |
| The key which can change the supply of a token. The key is used to sign Token Mint/Burn operations | |
| The 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 | |
| The default KYC status (KycNotApplicable or Revoked) of Hedera accounts relative to this token. KycNotApplicable is returned if KYC key is not set, otherwise Revoked | |
| bool | Specifies whether the token was deleted or not |
| An account which will be automatically charged to renew the token's expiration, at autoRenewPeriod interval | |
| uint64 | The interval at which the auto-renew account will be charged to extend the token's expiry |
| uint64 | The 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 |
| string | The memo associated with the token |
| The token type | |
| The token supply type | |
| int64 | For tokens of type |
| The key which can change the custom fee schedule of the token; if not set, the fee schedule is immutable | |
| repeated CustomFee | The custom fees to be assessed during a CryptoTransfer that transfers units of this token |
| The Key which can pause and unpause the Token | |
| Specifies whether the token is paused or not. PauseNotApplicable is returned if pauseKey is not set. | |
| bytes | The ledger ID the response was returned from; please see HIP-198 for the network-specific IDs. |
Last updated