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.

PayChannel.d.ts 557B

1234567891011121314151617181920
  1. import BaseLedgerEntry from './BaseLedgerEntry';
  2. export default interface PayChannel extends BaseLedgerEntry {
  3. LedgerEntryType: 'PayChannel';
  4. Account: string;
  5. Destination: string;
  6. Amount: string;
  7. Balance: string;
  8. PublicKey: string;
  9. SettleDelay: number;
  10. OwnerNode: string;
  11. PreviousTxnID: string;
  12. PreviousTxnLgrSeq: number;
  13. Flags: number;
  14. Expiration?: number;
  15. CancelAfter?: number;
  16. SourceTag?: number;
  17. DestinationTag?: number;
  18. DestinationNode?: string;
  19. }
  20. //# sourceMappingURL=PayChannel.d.ts.map