hardhat
Version:
Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.
15 lines • 582 B
JavaScript
import { definePlugin } from "../../../plugins.js";
import { NETWORK_GLOBAL_OPTION } from "./network-option.js";
const hardhatPlugin = definePlugin({
id: "builtin:network-manager",
hookHandlers: {
config: () => import("./hook-handlers/config.js"),
hre: () => import("./hook-handlers/hre.js"),
network: () => import("./hook-handlers/network.js"),
},
globalOptions: [NETWORK_GLOBAL_OPTION],
npmPackage: "hardhat",
dependencies: () => [import("../artifacts/index.js")],
});
export default hardhatPlugin;
//# sourceMappingURL=index.js.map