UNPKG

ripple-lib

Version:

Deprecated - consider migrating to xrpl.js: https://xrpl.org/xrpljs2-migration-guide.html

16 lines 647 B
import { Instructions, Prepare } from './types'; import { Adjustment, MaxAdjustment, MinAdjustment, Memo } from '../common/types/objects'; import { RippleAPI } from '..'; export interface Payment { source: Adjustment | MaxAdjustment; destination: Adjustment | MinAdjustment; paths?: string; memos?: Array<Memo>; invoiceID?: string; allowPartialPayment?: boolean; noDirectRipple?: boolean; limitQuality?: boolean; } declare function preparePayment(this: RippleAPI, address: string, payment: Payment, instructions?: Instructions): Promise<Prepare>; export default preparePayment; //# sourceMappingURL=payment.d.ts.map