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-create.d.ts 568B

1234567891011121314
  1. import { Instructions, Prepare } from './types';
  2. import { RippleAPI } from '..';
  3. export declare type PaymentChannelCreate = {
  4. amount: string;
  5. destination: string;
  6. settleDelay: number;
  7. publicKey: string;
  8. cancelAfter?: string;
  9. sourceTag?: number;
  10. destinationTag?: number;
  11. };
  12. declare function preparePaymentChannelCreate(this: RippleAPI, address: string, paymentChannelCreate: PaymentChannelCreate, instructions?: Instructions): Promise<Prepare>;
  13. export default preparePaymentChannelCreate;
  14. //# sourceMappingURL=payment-channel-create.d.ts.map