UNPKG

@nextrope/xrpl

Version:

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

10 lines 360 B
import { ClawbackAmount } from '../common'; import { BaseTransaction } from './common'; export interface Clawback extends BaseTransaction { TransactionType: 'Clawback'; Account: string; Amount: ClawbackAmount; Holder?: string; } export declare function validateClawback(tx: Record<string, unknown>): void; //# sourceMappingURL=clawback.d.ts.map