radiant_create_ft
Mint a new Glyph Fungible Token on Radiant using a two-transaction commit-and-reveal pattern. Returns transaction IDs and a token reference for subsequent transfers.
Instructions
Mint a new Glyph Fungible Token (FT) on Radiant. Uses the 2-transaction commit+reveal pattern. Returns both transaction IDs and the token reference (tokenRef) for future transfers. Requires a WIF private key.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| wif | No | WIF-encoded private key of the minter (transient). Provide this OR key_alias. | |
| name | Yes | Token name (e.g. 'My Token') | |
| image | No | Image URL or IPFS CID | |
| supply | Yes | Total supply in base units (e.g. 1000000 for 10.000000 with 6 decimals) | |
| ticker | Yes | Token ticker symbol (e.g. 'MTK') | |
| decimals | No | Decimal places (default: 8) | |
| key_alias | No | Alias of a key previously registered with radiant_register_key. Preferred. | |
| description | No | Token description | |
| fee_per_byte | No | Fee rate in photons/byte (default: 10000, the mainnet V2 min-relay floor) | |
| change_address | No | Change address (defaults to minter address) |