multi-send
Send tokens to multiple addresses in a single transaction on the Osmosis blockchain, using a BIP-39 mnemonic for signing, with customizable gas, gas price, and memo.
Instructions
Send tokens to multiple addresses in a single transaction
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gas | No | Gas limit (default: auto-estimate) | |
gasPrice | No | Gas price (default: 0.025uosmo) | |
inputs | Yes | Input sources (usually just sender) | |
memo | No | Transaction memo | |
mnemonic | Yes | BIP-39 mnemonic phrase for signing the transaction | |
outputs | Yes | Output destinations |
Input Schema (JSON Schema)
{
"properties": {
"gas": {
"description": "Gas limit (default: auto-estimate)",
"type": "string"
},
"gasPrice": {
"description": "Gas price (default: 0.025uosmo)",
"type": "string"
},
"inputs": {
"description": "Input sources (usually just sender)",
"items": {
"properties": {
"address": {
"type": "string"
},
"coins": {
"items": {
"properties": {
"amount": {
"type": "string"
},
"denom": {
"type": "string"
}
},
"required": [
"denom",
"amount"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"address",
"coins"
],
"type": "object"
},
"type": "array"
},
"memo": {
"description": "Transaction memo",
"type": "string"
},
"mnemonic": {
"description": "BIP-39 mnemonic phrase for signing the transaction",
"type": "string"
},
"outputs": {
"description": "Output destinations",
"items": {
"properties": {
"address": {
"type": "string"
},
"coins": {
"items": {
"properties": {
"amount": {
"type": "string"
},
"denom": {
"type": "string"
}
},
"required": [
"denom",
"amount"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"address",
"coins"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"mnemonic",
"inputs",
"outputs"
],
"type": "object"
}