Interface IAccountsTransferRequest

Argument interface for the Wallet.accountsTransfer method.

interface IAccountsTransferRequest {
    destinationAccountId: string;
    feeRate?: number;
    paymentSecret?: string;
    priorityFeeSompi?: bigint | IFees;
    sourceAccountId: string;
    transferAmountSompi: bigint;
    walletSecret: string;
}

Properties

destinationAccountId: string
feeRate?: number
paymentSecret?: string
priorityFeeSompi?: bigint | IFees
sourceAccountId: string
transferAmountSompi: bigint
walletSecret: string

Generated using TypeDoc