UNPKG

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) 293 B
import type { HardhatPlugin } from "../../../types/plugins.js"; import "./type-extensions.js"; const hardhatPlugin: HardhatPlugin = { id: "builtin:artifacts", hookHandlers: { hre: () => import("./hook-handlers/hre.js"), }, npmPackage: "hardhat", }; export default hardhatPlugin;