@solarity/hardhat-migrate
Version:
The simplest way to deploy smart contracts
16 lines • 426 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Stats = void 0;
class BaseStats {
_stats = {
currentMigration: 0,
};
get currentMigration() {
return this._stats.currentMigration;
}
set currentMigration(currentMigration) {
this._stats.currentMigration = currentMigration;
}
}
exports.Stats = new BaseStats();
//# sourceMappingURL=Stats.js.map