import TransactionType from '../TransactionType'; import BaseTransactionInstructions from './BaseInstructions'; /** * A SetRegularKey transaction assigns, changes, or removes the regular key pair associated with an account. * Taken from https://xrpl.org/setregularkey.html. * * @extends BaseTransactionInstructions * * @property RegularKey - A base-58-encoded Address that indicates the regular key pair to be assigned to * the account. If omitted, removes any existing regular key pair from the account. */ export default interface SetRegularKeyInstructions extends BaseTransactionInstructions { readonly TransactionType: TransactionType.SetRegularKey; readonly RegularKey?: string; } //# sourceMappingURL=SetRegularKeyInstructions.d.ts.map