Interface AssetTransferTransactionParams

Contains asset transfer transaction parameters.

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

interface AssetTransferTransactionParams {
    amount: number | bigint;
    assetIndex: number | bigint;
    assetSender?: string | Address;
    closeRemainderTo?: string | Address;
    receiver: string | Address;
}

Properties

amount: number | bigint

Integer amount to send

assetIndex: number | bigint

Asset index uniquely specifying the asset

assetSender?: string | Address

String representation of Algorand address – if provided, and if "sender" is the asset's revocation manager, then deduct from "assetSender" rather than "sender"

closeRemainderTo?: string | Address

Close out remaining asset balance of the sender to this account

receiver: string | Address

The Algorand address of recipient

Generated using TypeDoc