@nextrope/xrpl
Version:
A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser
18 lines • 535 B
TypeScript
import { BaseLedgerEntry, HasPreviousTxnID } from './BaseLedgerEntry';
export default interface Escrow extends BaseLedgerEntry, HasPreviousTxnID {
LedgerEntryType: 'Escrow';
Account: string;
Destination: string;
Amount: string;
Condition?: string;
CancelAfter?: number;
FinishAfter?: number;
Flags: number;
SourceTag?: number;
DestinationTag?: number;
OwnerNode: string;
DestinationNode?: string;
TransferRate?: number;
IssuerNode?: number;
}
//# sourceMappingURL=Escrow.d.ts.map