Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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