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

1234567891011121314151617
  1. import { PayChannelLedgerEntry } from '../../common/types/objects';
  2. export declare type FormattedPaymentChannel = {
  3. account: string;
  4. amount: string;
  5. balance: string;
  6. publicKey: string;
  7. destination: string;
  8. settleDelay: number;
  9. expiration?: string;
  10. cancelAfter?: string;
  11. sourceTag?: number;
  12. destinationTag?: number;
  13. previousAffectingTransactionID: string;
  14. previousAffectingTransactionLedgerVersion: number;
  15. };
  16. export declare function parsePaymentChannel(data: PayChannelLedgerEntry): FormattedPaymentChannel;
  17. //# sourceMappingURL=payment-channel.d.ts.map