force-transfer
Enable admins to securely transfer tokens between specified addresses on the Osmosis blockchain using a BIP-39 mnemonic for transaction signing.
Instructions
Force transfer tokens (admin only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | Amount to transfer | |
denom | Yes | Token denomination to force transfer | |
gas | No | Gas limit (default: auto-estimate) | |
gasPrice | No | Gas price (default: 0.025uosmo) | |
memo | No | Transaction memo | |
mnemonic | Yes | BIP-39 mnemonic phrase for signing the transaction (must be admin) | |
transferFromAddress | Yes | Address to transfer from | |
transferToAddress | Yes | Address to transfer to |
Input Schema (JSON Schema)
{
"properties": {
"amount": {
"description": "Amount to transfer",
"type": "string"
},
"denom": {
"description": "Token denomination to force transfer",
"type": "string"
},
"gas": {
"description": "Gas limit (default: auto-estimate)",
"type": "string"
},
"gasPrice": {
"description": "Gas price (default: 0.025uosmo)",
"type": "string"
},
"memo": {
"description": "Transaction memo",
"type": "string"
},
"mnemonic": {
"description": "BIP-39 mnemonic phrase for signing the transaction (must be admin)",
"type": "string"
},
"transferFromAddress": {
"description": "Address to transfer from",
"type": "string"
},
"transferToAddress": {
"description": "Address to transfer to",
"type": "string"
}
},
"required": [
"mnemonic",
"denom",
"amount",
"transferFromAddress",
"transferToAddress"
],
"type": "object"
}