UNPKG

cache-typescript-sdk

Version:
38 lines (37 loc) 736 B
import { MosaicId } from "./MosaicId"; import { MosaicTransferable } from "./MosaicTransferable"; /** * XEM mosaic transferable */ export declare class XEM extends MosaicTransferable { /** * Divisiblity * @type {number} */ static DIVISIBILITY: number; /** * Initial supply * @type {number} */ static INITIALSUPPLY: number; /** * Is tranferable * @type {boolean} */ static TRANSFERABLE: boolean; /** * Is mutable * @type {boolean} */ static SUPPLYMUTABLE: boolean; /** * mosaicId * @type {MosaicId} */ static MOSAICID: MosaicId; /** * constructor * @param amount */ constructor(amount: number); }