UNPKG

xrpl

Version:

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

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