prepare-mint-token-factory-tokens
Creates a transaction to mint new tokens on the Osmosis blockchain, specifying sender, denomination, amount, and recipient address.
Instructions
Prepares a transaction to mint new tokens
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | Amount of tokens to mint | |
denom | Yes | The token factory denomination to mint | |
mintTo | Yes | Address to mint tokens to | |
sender | Yes | The sender's address (must be the token creator) |
Input Schema (JSON Schema)
{
"properties": {
"amount": {
"description": "Amount of tokens to mint",
"type": "string"
},
"denom": {
"description": "The token factory denomination to mint",
"type": "string"
},
"mintTo": {
"description": "Address to mint tokens to",
"type": "string"
},
"sender": {
"description": "The sender's address (must be the token creator)",
"type": "string"
}
},
"required": [
"sender",
"denom",
"amount",
"mintTo"
],
"type": "object"
}