name | string | The publicly visible name of the token. The token name is specified as a Unicode string. Its UTF-8 encoding cannot exceed 100 bytes, and cannot contain the 0 byte (NUL). | N/A |
symbol | string | The publicly visible token symbol. The token symbol is specified as a Unicode string. Its UTF-8 encoding cannot exceed 100 bytes, and cannot contain the 0 byte (NUL). | N/A |
decimals | uint32 | For tokens of type FUNGIBLE_COMMON - the number of decimal places a token is divisible by. For tokens of type NON_FUNGIBLE_UNIQUE - value must be 0. | N/A |
initialSupply | uint64 | Specifies the initial supply of tokens to be put in circulation. The initial supply is sent to the Treasury Account. The supply is in the lowest denomination possible. Maximum supply of tokens:9,223,372,036,854,775,807 . In the case for NON_FUNGIBLE_UNIQUE Type the value must be 0 | N/A |
treasury | AccountID | The account which will act as a treasury for the token. This account will receive the specified initial supply or the newly minted NFTs in the case for NON_FUNGIBLE_UNIQUE Type. | Required |
adminKey | Key | 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) | If set, required |
kycKey | Key | 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. | If set, required |
freezeKey | Key | The key which can sign to freeze or unfreeze an account for token transactions. If empty, freezing is not possible | If set, required |
wipeKey | Key | The key which can wipe the token balance of an account. If empty, wipe is not possible | If set, required |
supplyKey | Key | The key which can change the supply of a token. The key is used to sign Token Mint/Burn operations | If set, required |
freezeDefault | bool | The default Freeze status (frozen or unfrozen) of Hedera accounts relative to this token. If true, an account must be unfrozen before it can receive the token | N/A |
expiry | uint64 | The epoch second at which the token should expire; if an auto-renew account and period are specified, this is coerced to the current epoch second plus the autoRenewPeriod | N/A |
autoRenewAccount | AccountID | An account which will be automatically charged to renew the token’s expiration, at autoRenewPeriod interval | N/A |
autoRenewPeriod | uint64 | The interval at which the auto-renew account will be charged to extend the token’s expiry | N/A |
memo | string | The memo associated with the token (UTF-8 encoding max 100 bytes)N/A | N/A |
tokenType | TokenType | IWA compatibility. Specifies the token type. Defaults to FUNGIBLE_COMMON | N/A |
supplyType | TokenSupplyType | IWA compatibility. Specified the token supply type. Defaults to INFINITE | N/A |
maxSupply | int64 | IWA Compatibility. Depends on TokenSupplyType. For tokens of type FUNGIBLE_COMMON - the maximum number of tokens that can be in circulation. For tokens of type NON_FUNGIBLE_UNIQUE - the maximum number of NFTs (serial numbers) that can be minted. This field can never be changed | N/A |
feeScheduleKey | Key | The key which can change the token’s custom fee schedule; must sign a TokenFeeScheduleUpdate transaction | N/A |
customFees | repeated CustomFee | The custom fees to be assessed during a CryptoTransfer that transfers units of this token | N/A |
pause_key | Key | The Key which can pause and unpause the Token. If Empty the token pause status defaults to PauseNotApplicable, otherwise Unpaused | N/A |