UNPKG

xrpl

Version:

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

10 lines 335 B
import { BaseLedgerEntry, HasPreviousTxnID } from './BaseLedgerEntry'; export interface MPToken extends BaseLedgerEntry, HasPreviousTxnID { LedgerEntryType: 'MPToken'; MPTokenIssuanceID: string; MPTAmount: string; Flags: number; OwnerNode?: string; LockedAmount?: string; } //# sourceMappingURL=MPToken.d.ts.map