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-fund.d.ts 450B

12345678910
  1. import { Instructions, Prepare } from './types';
  2. import { RippleAPI } from '..';
  3. export declare type PaymentChannelFund = {
  4. channel: string;
  5. amount: string;
  6. expiration?: string;
  7. };
  8. declare function preparePaymentChannelFund(this: RippleAPI, address: string, paymentChannelFund: PaymentChannelFund, instructions?: Instructions): Promise<Prepare>;
  9. export default preparePaymentChannelFund;
  10. //# sourceMappingURL=payment-channel-fund.d.ts.map