UNPKG

@nextrope/xrpl

Version:

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

13 lines 447 B
import { PriceData } from '../common'; import { BaseTransaction } from './common'; export interface OracleSet extends BaseTransaction { TransactionType: 'OracleSet'; OracleDocumentID: number; LastUpdateTime: number; PriceDataSeries: PriceData[]; Provider?: string; URI?: string; AssetClass?: string; } export declare function validateOracleSet(tx: Record<string, unknown>): void; //# sourceMappingURL=oracleSet.d.ts.map