UNPKG

mcps-sdk-js

Version:

MCPS JavaScript SDK

23 lines 545 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Utils = void 0; const mathjs = require("mathjs"); /** * Utils for the MCPS SDK * @category Modules * @since v0.17 */ class Utils { /** @hidden */ constructor(client) { /** @hidden */ this.mathConfig = { number: 'BigNumber', precision: 64, }; this.client = client; this.math = mathjs.create(mathjs.all, this.mathConfig); } } exports.Utils = Utils; //# sourceMappingURL=utils.js.map