You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

payment-channel-claim.d.ts 544B

1234567891011121314
  1. import { Instructions, Prepare } from './types';
  2. import { RippleAPI } from '..';
  3. export declare type PaymentChannelClaim = {
  4. channel: string;
  5. balance?: string;
  6. amount?: string;
  7. signature?: string;
  8. publicKey?: string;
  9. renew?: boolean;
  10. close?: boolean;
  11. };
  12. declare function preparePaymentChannelClaim(this: RippleAPI, address: string, paymentChannelClaim: PaymentChannelClaim, instructions?: Instructions): Promise<Prepare>;
  13. export default preparePaymentChannelClaim;
  14. //# sourceMappingURL=payment-channel-claim.d.ts.map