UNPKG

hardhat-graph-protocol

Version:

A hardhat plugin that extends the runtime environment to inject additional functionality related to the usage of the Graph Protocol.

13 lines 463 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.GraphPluginError = void 0; const plugins_1 = require("hardhat/plugins"); const logger_1 = require("./logger"); class GraphPluginError extends plugins_1.HardhatPluginError { constructor(message) { super('GraphRuntimeEnvironment', message); (0, logger_1.logError)(message); } } exports.GraphPluginError = GraphPluginError; //# sourceMappingURL=error.js.map