UNPKG

hardhat-tracer

Version:

Hardhat Tracer plugin

21 lines 579 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Switch = void 0; class Switch { constructor(edrProvider) { this.edrProvider = edrProvider; this.verboseEnabled = false; } async enable() { this.verboseEnabled = true; // @ts-ignore await this.edrProvider._setVerboseTracing(true); } async disable() { this.verboseEnabled = false; // @ts-ignore await this.edrProvider._setVerboseTracing(false); } } exports.Switch = Switch; //# sourceMappingURL=switch.js.map