You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

NegativeUNL.d.ts 403B

12345678910111213
  1. import BaseLedgerEntry from './BaseLedgerEntry';
  2. interface DisabledValidator {
  3. FirstLedgerSequence: number;
  4. PublicKey: string;
  5. }
  6. export default interface NegativeUNL extends BaseLedgerEntry {
  7. LedgerEntryType: 'NegativeUNL';
  8. DisabledValidators?: DisabledValidator[];
  9. ValidatorToDisable?: string;
  10. ValidatorToReEnable?: string;
  11. }
  12. export {};
  13. //# sourceMappingURL=NegativeUNL.d.ts.map