UNPKG

@nextrope/xrpl

Version:

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

7 lines 285 B
import { BaseTransaction } from './common'; export interface OfferCancel extends BaseTransaction { TransactionType: 'OfferCancel'; OfferSequence: number; } export declare function validateOfferCancel(tx: Record<string, unknown>): void; //# sourceMappingURL=offerCancel.d.ts.map