Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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