UNPKG

lisk-framework

Version:

Lisk blockchain application platform

17 lines 572 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.BaseCCCommand = void 0; const lisk_codec_1 = require("@liskhq/lisk-codec"); class BaseCCCommand { get name() { const name = this.constructor.name.replace('CCCommand', ''); return name.charAt(0).toLowerCase() + name.substring(1); } constructor(stores, events) { this.stores = stores; this.events = events; this.schema = lisk_codec_1.emptySchema; } } exports.BaseCCCommand = BaseCCCommand; //# sourceMappingURL=base_cc_command.js.map