UNPKG

@transia/xrpl

Version:

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

16 lines 537 B
import { BaseLedgerEntry, HasOptionalPreviousTxnID } from './BaseLedgerEntry'; export default interface DirectoryNode extends BaseLedgerEntry, HasOptionalPreviousTxnID { LedgerEntryType: 'DirectoryNode'; Flags: number; RootIndex: string; Indexes: string[]; IndexNext?: number; IndexPrevious?: number; Owner?: string; TakerPaysCurrency?: string; TakerPaysIssuer?: string; TakerGetsCurrency?: string; TakerGetsIssuer?: string; DomainID?: string; } //# sourceMappingURL=DirectoryNode.d.ts.map