@nextrope/xrpl
Version:
A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser
14 lines • 465 B
TypeScript
import { BaseLedgerEntry, HasPreviousTxnID } from './BaseLedgerEntry';
export interface MPTokenIssuance extends BaseLedgerEntry, HasPreviousTxnID {
LedgerEntryType: 'MPTokenIssuance';
Flags: number;
Issuer: string;
AssetScale?: number;
MaximumAmount?: string;
OutstandingAmount: string;
TransferFee?: number;
MPTokenMetadata?: string;
OwnerNode?: string;
LockedAmount?: string;
}
//# sourceMappingURL=MPTokenIssuance.d.ts.map