UNPKG

xrpl

Version:

A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser

19 lines 534 B
import { Amount } from '../common'; import { BaseLedgerEntry, HasPreviousTxnID } from './BaseLedgerEntry'; export default interface Offer extends BaseLedgerEntry, HasPreviousTxnID { LedgerEntryType: 'Offer'; Flags: number; Account: string; Sequence: number; TakerPays: Amount; TakerGets: Amount; BookDirectory: string; BookNode: string; OwnerNode: string; Expiration?: number; } export declare enum OfferFlags { lsfPassive = 65536, lsfSell = 131072 } //# sourceMappingURL=Offer.d.ts.map