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.

RippleState.d.ts 848B

12345678910111213141516171819202122232425262728
  1. import { IssuedCurrencyAmount } from '../common';
  2. import BaseLedgerEntry from './BaseLedgerEntry';
  3. export default interface RippleState extends BaseLedgerEntry {
  4. LedgerEntryType: 'RippleState';
  5. Flags: number;
  6. Balance: IssuedCurrencyAmount;
  7. LowLimit: IssuedCurrencyAmount;
  8. HighLimit: IssuedCurrencyAmount;
  9. PreviousTxnID: string;
  10. PreviousTxnLgrSeq: number;
  11. LowNode?: string;
  12. HighNode?: string;
  13. LowQualityIn?: number;
  14. LowQualityOut?: number;
  15. HighQualityIn?: number;
  16. HighQualityOut?: number;
  17. }
  18. export declare enum RippleStateFlags {
  19. lsfLowReserve = 65536,
  20. lsfHighReserve = 131072,
  21. lsfLowAuth = 262144,
  22. lsfHighAuth = 524288,
  23. lsfLowNoRipple = 1048576,
  24. lsfHighNoRipple = 2097152,
  25. lsfLowFreeze = 4194304,
  26. lsfHighFreeze = 8388608
  27. }
  28. //# sourceMappingURL=RippleState.d.ts.map