@signumjs/core
Version:
Principal package with functions and models for building Signum Network applications.
14 lines (13 loc) • 504 B
TypeScript
import { DefaultSendArgs } from './defaultSendArgs';
import { MultioutRecipientAmount } from '../multioutRecipientAmount';
/**
* The argument object for {@link TransactionApi.sendAmountToMultipleRecipients}
*
* @param recipientAmounts The list of recipients and their respective amounts
* @throws if have duplicate recipient Ids in recipientAmounts
*
* @category args
*/
export interface SendAmountToMultipleRecipientsArgs extends DefaultSendArgs {
recipientAmounts: MultioutRecipientAmount[];
}