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.

paymentChannelFund.d.ts 352B

123456789
  1. import { BaseTransaction } from './common';
  2. export interface PaymentChannelFund extends BaseTransaction {
  3. TransactionType: 'PaymentChannelFund';
  4. Channel: string;
  5. Amount: string;
  6. Expiration?: number;
  7. }
  8. export declare function validatePaymentChannelFund(tx: Record<string, unknown>): void;
  9. //# sourceMappingURL=paymentChannelFund.d.ts.map