@transia/xrpl
Version:
A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser
9 lines • 364 B
TypeScript
import { Amount } from '../common';
import { BaseTransaction } from './common';
export interface ContractClawback extends BaseTransaction {
TransactionType: 'ContractClawback';
Amount: Amount;
ContractAccount?: string;
}
export declare function validateContractClawback(tx: Record<string, unknown>): void;
//# sourceMappingURL=contractClawback.d.ts.map