ripple-lib
Version:
Deprecated - consider migrating to xrpl.js: https://xrpl.org/xrpljs2-migration-guide.html
14 lines • 544 B
TypeScript
import { Instructions, Prepare } from './types';
import { RippleAPI } from '..';
export declare type PaymentChannelClaim = {
channel: string;
balance?: string;
amount?: string;
signature?: string;
publicKey?: string;
renew?: boolean;
close?: boolean;
};
declare function preparePaymentChannelClaim(this: RippleAPI, address: string, paymentChannelClaim: PaymentChannelClaim, instructions?: Instructions): Promise<Prepare>;
export default preparePaymentChannelClaim;
//# sourceMappingURL=payment-channel-claim.d.ts.map