send_payment
Send Algo payment transactions on the Algorand blockchain. Requires a mnemonic phrase, recipient address, and amount in microAlgos. Optional note field for transaction details.
Instructions
Send Algo payment transaction (WARNING: Requires mnemonic phrase)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | Amount in microAlgos (1 Algo = 1,000,000 microAlgos) | |
mnemonic | Yes | Sender account mnemonic phrase (25 words) | |
note | No | Optional transaction note | |
toAddress | Yes | Recipient address |
Input Schema (JSON Schema)
{
"properties": {
"amount": {
"description": "Amount in microAlgos (1 Algo = 1,000,000 microAlgos)",
"type": "number"
},
"mnemonic": {
"description": "Sender account mnemonic phrase (25 words)",
"type": "string"
},
"note": {
"description": "Optional transaction note",
"type": "string"
},
"toAddress": {
"description": "Recipient address",
"type": "string"
}
},
"required": [
"mnemonic",
"toAddress",
"amount"
],
"type": "object"
}