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.

Offer.d.ts 552B

123456789101112131415161718192021
  1. import { Amount } from '../common';
  2. import BaseLedgerEntry from './BaseLedgerEntry';
  3. export default interface Offer extends BaseLedgerEntry {
  4. LedgerEntryType: 'Offer';
  5. Flags: number;
  6. Account: string;
  7. Sequence: number;
  8. TakerPays: Amount;
  9. TakerGets: Amount;
  10. BookDirectory: string;
  11. BookNode: string;
  12. OwnerNode: string;
  13. PreviousTxnID: string;
  14. PreviousTxnLgrSeq: number;
  15. Expiration?: number;
  16. }
  17. export declare enum OfferFlags {
  18. lsfPassive = 65536,
  19. lsfSell = 131072
  20. }
  21. //# sourceMappingURL=Offer.d.ts.map