@transia/xrpl
Version:
A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser
19 lines • 565 B
TypeScript
import { Amount } from '../common';
import { BaseLedgerEntry, HasPreviousTxnID } from './BaseLedgerEntry';
export default interface Check extends BaseLedgerEntry, HasPreviousTxnID {
LedgerEntryType: 'Check';
Account: string;
Destination: string;
Flags: 0;
OwnerNode: string;
PreviousTxnID: string;
PreviousTxnLgrSeq: number;
SendMax: Amount;
Sequence: number;
DestinationNode?: string;
DestinationTag?: number;
Expiration?: number;
InvoiceID?: string;
SourceTag?: number;
}
//# sourceMappingURL=Check.d.ts.map