@nextrope/xrpl
Version:
A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser
17 lines • 647 B
TypeScript
import { BaseTransaction, Account, GlobalFlagsInterface } from './common';
export declare enum MPTokenIssuanceSetFlags {
tfMPTLock = 1,
tfMPTUnlock = 2
}
export interface MPTokenIssuanceSetFlagsInterface extends GlobalFlagsInterface {
tfMPTLock?: boolean;
tfMPTUnlock?: boolean;
}
export interface MPTokenIssuanceSet extends BaseTransaction {
TransactionType: 'MPTokenIssuanceSet';
MPTokenIssuanceID: string;
Holder?: Account;
Flags?: number | MPTokenIssuanceSetFlagsInterface;
}
export declare function validateMPTokenIssuanceSet(tx: Record<string, unknown>): void;
//# sourceMappingURL=MPTokenIssuanceSet.d.ts.map