airgap-coin-lib
Version:
The airgap-coin-lib is a protocol agnostic library to prepare, sign and broadcast cryptocurrency transactions.
16 lines • 504 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var MichelsonType = /** @class */ (function () {
function MichelsonType(name) {
this.name = name;
}
MichelsonType.prototype.eval = function () {
// default implementation, no action required
};
MichelsonType.prototype.setName = function (name) {
this.name = name;
};
return MichelsonType;
}());
exports.MichelsonType = MichelsonType;
//# sourceMappingURL=MichelsonType.js.map