prepare-burn-token-factory-tokens
Generates a transaction to burn specified token factory tokens on the Osmosis blockchain, requiring sender address, token denomination, and amount.
Instructions
Prepares a transaction to burn tokens
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | Amount of tokens to burn | |
burnFrom | No | Address to burn tokens from (optional, defaults to sender) | |
denom | Yes | The token factory denomination to burn | |
sender | Yes | The sender's address (must be the token creator) |
Input Schema (JSON Schema)
{
"properties": {
"amount": {
"description": "Amount of tokens to burn",
"type": "string"
},
"burnFrom": {
"description": "Address to burn tokens from (optional, defaults to sender)",
"type": "string"
},
"denom": {
"description": "The token factory denomination to burn",
"type": "string"
},
"sender": {
"description": "The sender's address (must be the token creator)",
"type": "string"
}
},
"required": [
"sender",
"denom",
"amount"
],
"type": "object"
}