UNPKG

@nextrope/xrpl

Version:

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

11 lines 380 B
import { Permission } from '../transactions'; import { BaseLedgerEntry, HasPreviousTxnID } from './BaseLedgerEntry'; export default interface Delegate extends BaseLedgerEntry, HasPreviousTxnID { LedgerEntryType: 'Delegate'; Account: string; Authorize: string; Permissions: Permission[]; OwnerNode: string; Flags: 0; } //# sourceMappingURL=Delegate.d.ts.map