hardhat
Version:
Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.
14 lines (9 loc) • 353 B
text/typescript
import type { HardhatPlugin } from "../../../types/plugins.js";
import { definePlugin } from "../../../plugins.js";
import { generateTasks } from "./tasks/index.js";
const hardhatPlugin: HardhatPlugin = definePlugin({
id: "builtin:hhu",
tasks: generateTasks({ prefixWithUtils: true }),
npmPackage: "hardhat",
});
export default hardhatPlugin;