UNPKG

@nextrope/xrpl

Version:

A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser

18 lines 539 B
import { BaseLedgerEntry, HasPreviousTxnID } from './BaseLedgerEntry'; export default interface PayChannel extends BaseLedgerEntry, HasPreviousTxnID { LedgerEntryType: 'PayChannel'; Account: string; Destination: string; Amount: string; Balance: string; PublicKey: string; SettleDelay: number; OwnerNode: string; Flags: number; Expiration?: number; CancelAfter?: number; SourceTag?: number; DestinationTag?: number; DestinationNode?: string; } //# sourceMappingURL=PayChannel.d.ts.map