transfer_asset
Transfer Algorand Standard Assets between accounts securely using a sender mnemonic, recipient address, asset ID, and specified amount. Supports optional transaction notes for clarity.
Instructions
Transfer an Algorand Standard Asset
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | Amount to transfer | |
assetId | Yes | Asset ID to transfer | |
fromMnemonic | Yes | Sender account mnemonic phrase (25 words) | |
note | No | Optional transaction note | |
toAddress | Yes | Recipient address |
Input Schema (JSON Schema)
{
"properties": {
"amount": {
"description": "Amount to transfer",
"type": "number"
},
"assetId": {
"description": "Asset ID to transfer",
"type": "number"
},
"fromMnemonic": {
"description": "Sender account mnemonic phrase (25 words)",
"type": "string"
},
"note": {
"description": "Optional transaction note",
"type": "string"
},
"toAddress": {
"description": "Recipient address",
"type": "string"
}
},
"required": [
"fromMnemonic",
"toAddress",
"assetId",
"amount"
],
"type": "object"
}