UNPKG

@nextrope/xrpl

Version:

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

12 lines 396 B
import { PriceData } from '../common'; import { BaseLedgerEntry, HasPreviousTxnID } from './BaseLedgerEntry'; export default interface Oracle extends BaseLedgerEntry, HasPreviousTxnID { LedgerEntryType: 'Oracle'; LastUpdateTime: number; Owner: string; AssetClass: string; Provider: string; PriceDataSeries: PriceData[]; Flags: 0; } //# sourceMappingURL=Oracle.d.ts.map