UNPKG

@transia/xrpl

Version:

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

11 lines 421 B
import { AuthorizeCredential } from '../common'; import { BaseLedgerEntry, HasPreviousTxnID } from './BaseLedgerEntry'; export default interface DepositPreauth extends BaseLedgerEntry, HasPreviousTxnID { LedgerEntryType: 'DepositPreauth'; Account: string; Flags: 0; OwnerNode: string; Authorize?: string; AuthorizeCredentials?: AuthorizeCredential[]; } //# sourceMappingURL=DepositPreauth.d.ts.map