Hardhat plugin to support typechain
npm install @nomicfoundation/hardhat-typechainThis plugin integrates TypeChain into Hardhat, automatically generating TypeScript bindings for your smart contracts.
> This plugin is part of the Ethers+Mocha Hardhat Toolbox. If you are using that toolbox, there's nothing else you need to do.
To install this plugin, run the following command:
``bash`
npm install --save-dev @nomicfoundation/hardhat-typechain
In your hardhat.config.ts file, import the plugin and add it to the plugins array:
`ts
import { defineConfig } from "hardhat/config";
import hardhatTypechain from "@nomicfoundation/hardhat-typechain";
export default defineConfig({
plugins: [hardhatTypechain],
});
``
No extra steps are required to use this plugin. It will be run automatically by Hardhat when building your contracts.