make_payment_txn
Create payment transactions on the Algorand blockchain by specifying sender, receiver, amount, and network parameters to transfer ALGO tokens.
Instructions
Create a payment transaction
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| from | Yes | Sender address in standard Algorand format (58 characters) | |
| to | Yes | Receiver address in standard Algorand format (58 characters) | |
| amount | Yes | Amount in microAlgos | |
| note | No | Optional transaction note | |
| closeRemainderTo | No | Optional close remainder to address in standard Algorand format | |
| rekeyTo | No | Optional rekey to address in standard Algorand format | |
| 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) |