UNPKG

@nextrope/xrpl

Version:

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

9 lines 407 B
import { Amount, MPTAmount } from '../common'; import { BaseTransaction } from './common'; export interface LoanBrokerCoverDeposit extends BaseTransaction { TransactionType: 'LoanBrokerCoverDeposit'; LoanBrokerID: string; Amount: Amount | MPTAmount; } export declare function validateLoanBrokerCoverDeposit(tx: Record<string, unknown>): void; //# sourceMappingURL=loanBrokerCoverDeposit.d.ts.map