UNPKG

@nextrope/xrpl

Version:

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

10 lines 447 B
import { Amount, MPTAmount } from '../common'; import { BaseTransaction, Account } from './common'; export interface LoanBrokerCoverWithdraw extends BaseTransaction { TransactionType: 'LoanBrokerCoverWithdraw'; LoanBrokerID: string; Amount: Amount | MPTAmount; Destination?: Account; } export declare function validateLoanBrokerCoverWithdraw(tx: Record<string, unknown>): void; //# sourceMappingURL=loanBrokerCoverWithdraw.d.ts.map