hardhat
Version:
Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.
16 lines (11 loc) • 373 B
text/typescript
import type { HardhatPlugin } from "../../../types/plugins.js";
import { definePlugin } from "../../../plugins.js";
export type * from "./type-extensions.js";
const hardhatPlugin: HardhatPlugin = definePlugin({
id: "builtin:artifacts",
hookHandlers: {
hre: () => import("./hook-handlers/hre.js"),
},
npmPackage: "hardhat",
});
export default hardhatPlugin;