@chainify/types
Advanced tools
Comparing version 1.0.7 to 1.0.8
# @chainify/types | ||
## 1.0.8 | ||
### Patch Changes | ||
- - target is now es6 | ||
## 1.0.7 | ||
@@ -4,0 +10,0 @@ |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Address = void 0; | ||
var Address = /** @class */ (function () { | ||
function Address(fields) { | ||
var _this = this; | ||
this.toString = function () { | ||
return _this.address; | ||
class Address { | ||
constructor(fields) { | ||
this.toString = () => { | ||
return this.address; | ||
}; | ||
@@ -14,5 +13,4 @@ if (fields) { | ||
} | ||
return Address; | ||
}()); | ||
} | ||
exports.Address = Address; | ||
//# sourceMappingURL=Address.js.map |
@@ -21,3 +21,3 @@ "use strict"; | ||
exports.BigNumber = void 0; | ||
var bignumber_js_1 = __importDefault(require("bignumber.js")); | ||
const bignumber_js_1 = __importDefault(require("bignumber.js")); | ||
exports.BigNumber = bignumber_js_1.default; | ||
@@ -24,0 +24,0 @@ __exportStar(require("./Address"), exports); |
{ | ||
"name": "@chainify/types", | ||
"version": "1.0.7", | ||
"version": "1.0.8", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "author": "Liquality <info@liquality.io>", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13192
265