import TransactionType from '../TransactionType'; import SignerEntry from '../util/SignerEntry'; import BaseTransactionInstructions from './BaseInstructions'; /** * The SignerListSet transaction creates, replaces, or removes a list of signers that can be used to multi-sign a transaction. * Taken from https://xrpl.org/signerlistset.html. * * @extends BaseTransactionInstructions * * @property SignerEntries - Array of SignerEntry objects, indicating the addresses and weights of signers in this list. * @property SignerQuorum - A target number for the signer weights. A multi-signature from this list is * valid only if the sum weights of the signatures provided is greater than or equal to this value. */ export default interface SignerListSetInstructions extends BaseTransactionInstructions { readonly TransactionType: TransactionType.SignerListSet; readonly SignerEntries: Array<{ SignerEntry: SignerEntry; }>; readonly SignerQuorum: number; } //# sourceMappingURL=SignerListSetInstructions.d.ts.map