UNPKG

@nextrope/xrpl

Version:

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

8 lines 327 B
import { Account, BaseTransaction } from './common'; export interface EscrowCancel extends BaseTransaction { TransactionType: 'EscrowCancel'; Owner: Account; OfferSequence: number | string; } export declare function validateEscrowCancel(tx: Record<string, unknown>): void; //# sourceMappingURL=escrowCancel.d.ts.map