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.

paymentChannelClaim.d.ts 683B

1234567891011121314151617181920
  1. import { BaseTransaction, GlobalFlags } from './common';
  2. export declare enum PaymentChannelClaimFlags {
  3. tfRenew = 65536,
  4. tfClose = 131072
  5. }
  6. export interface PaymentChannelClaimFlagsInterface extends GlobalFlags {
  7. tfRenew?: boolean;
  8. tfClose?: boolean;
  9. }
  10. export interface PaymentChannelClaim extends BaseTransaction {
  11. TransactionType: 'PaymentChannelClaim';
  12. Flags?: number | PaymentChannelClaimFlagsInterface;
  13. Channel: string;
  14. Balance?: string;
  15. Amount?: string;
  16. Signature?: string;
  17. PublicKey?: string;
  18. }
  19. export declare function validatePaymentChannelClaim(tx: Record<string, unknown>): void;
  20. //# sourceMappingURL=paymentChannelClaim.d.ts.map