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.

paymentChannelCreate.d.ts 442B

123456789101112
  1. import { BaseTransaction } from './common';
  2. export interface PaymentChannelCreate extends BaseTransaction {
  3. TransactionType: 'PaymentChannelCreate';
  4. Amount: string;
  5. Destination: string;
  6. SettleDelay: number;
  7. PublicKey: string;
  8. CancelAfter?: number;
  9. DestinationTag?: number;
  10. }
  11. export declare function validatePaymentChannelCreate(tx: Record<string, unknown>): void;
  12. //# sourceMappingURL=paymentChannelCreate.d.ts.map