meteor-nem-library
Version:
Meteor NIS1 Library
50 lines (49 loc) • 1.1 kB
TypeScript
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;
/**
* Create XEM with an absolute quantity
* @param quantity
* @returns {MosaicTransferable}
*/
static fromAbsolute(quantity: number): XEM;
/**
* Create XEM with an relative quantity
* @param quantity
* @returns {MosaicTransferable}
*/
static fromRelative(quantity: number): XEM;
/**
* constructor
* @param quantity - Relative quantity
*/
constructor(quantity: number);
}