argosjs
Version:
Ethereum smart-contract events visualiser
14 lines (13 loc) • 341 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var Watcher = /** @class */ (function () {
/**
* Create a watcher for any network
*/
function Watcher() {
console.log("Watcher instance initialised!");
}
return Watcher;
}());
exports.Watcher = Watcher;
exports.default = Watcher;