hedera_create_fungible_token
Build an unsigned fungible token on Hedera Token Service with customizable properties like name, symbol, supply, and keys.
Instructions
Build (unsigned) a new fungible token (HTS). Treasury defaults to the payer.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| memo | No | ||
| name | Yes | Token name | |
| kycKey | No | KYC public key (enables grant/revoke KYC) | |
| symbol | Yes | Token symbol | |
| wipeKey | No | Wipe public key (enables wipe) | |
| adminKey | No | Admin public key (enables future updates) | |
| decimals | No | Decimals (default 0) | |
| pauseKey | No | Pause public key (enables pause/unpause) | |
| freezeKey | No | Freeze public key (enables freeze/unfreeze) | |
| maxSupply | No | Required if supplyType=finite | |
| supplyKey | No | Supply public key (enables mint/burn) | |
| supplyType | No | Default infinite | |
| customFeeHbar | No | Optional fixed HBAR fee charged on each transfer | |
| initialSupply | No | Initial supply in base units (default 0) | |
| payerAccountId | No | ||
| treasuryAccountId | No | Treasury (defaults to payer) | |
| feeCollectorAccountId | No | Account that collects the custom fee (defaults to treasury) |