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