make_asset_transfer_txn
Create asset transfer transactions on the Algorand blockchain to send tokens between addresses with configurable parameters for fees, notes, and network selection.
Instructions
Create an asset transfer transaction
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| from | Yes | Sender address in standard Algorand format (58 characters) | |
| to | Yes | Recipient address in standard Algorand format (58 characters) | |
| assetIndex | Yes | Index of the asset being transferred | |
| amount | Yes | Amount of asset base units to transfer | |
| note | No | Transaction note field (up to 1000 bytes) | |
| closeRemainderTo | No | Address to send remaining asset balance to (close asset holding) | |
| rekeyTo | No | Address to rekey the sender account to | |
| fee | No | Transaction fee in microAlgos. If not set, uses suggested fee from the network | |
| flatFee | No | If true, fee is used as-is (flat fee). If false (default), fee is per-byte | |
| network | No | Algorand network to use (default: mainnet) | |
| itemsPerPage | No | Number of items per page for paginated responses (default: 10) |