Interface PaymentTransactionParams

Contains payment transaction parameters.

The full documentation is available at: https://developer.algorand.org/docs/get-details/transactions/transactions/#payment-transaction

interface PaymentTransactionParams {
    amount: number | bigint;
    closeRemainderTo?: string | Address;
    receiver: string | Address;
}

Properties

amount: number | bigint

Integer amount to send, in microAlgos. Must be nonnegative.

closeRemainderTo?: string | Address

Optional, indicates the sender will close their account and the remaining balance will transfer to this account

receiver: string | Address

Algorand address of recipient

Generated using TypeDoc