TypeChain Hardhat plugin
Zero-config TypeChain support for Hardhat
Description
Automatically generate TypeScript bindings for smartcontracts while using Hardhat.
Installation
If you use Ethers/Waffle do:
npm install --save-dev typechain @typechain/hardhat @typechain/ethers-v5
If you're a Truffle user you need:
npm install --save-dev typechain @typechain/hardhat @typechain/truffle-v5
And add the following statements to your hardhat.config.js
:
require('@typechain/hardhat')
require('@nomiclabs/hardhat-ethers')
require('@nomiclabs/hardhat-waffle')
Or, if you use TypeScript, add this to your hardhat.config.ts
:
import '@typechain/hardhat'
import '@nomiclabs/hardhat-ethers'
import '@nomiclabs/hardhat-waffle'
Here's a sample tsconfig.json
:
{
"compilerOptions": {
"target": "es2018",
"module": "commonjs",
"strict": true,
"esModuleInterop": true,
"outDir": "dist",
"resolveJsonModule": true
},
"include": ["./scripts", "./test", "./typechain"],
"files": ["./hardhat.config.ts"]
}
Now typings should be automatically generated each time contract recompilation happens.
Warning: before running it for the first time you need to do hardhat clean
, otherwise TypeChain will think that
there is no need to generate any typings. This is because this plugin will attempt to do incremental generation and
generate typings only for changed contracts. You should also do hardhat clean
if you change any TypeChain related
config option.
Features
- Zero Config Usage - Run the compile task as normal, and Typechain artifacts will automatically be generated in a
root directory called
typechain-types
. - Incremental generation - Only recompiled files will have their types regenerated
- Frictionless - return type of
ethers.getContractFactory
will be typed properly - no need for casts
Tasks
This plugin overrides the compile task and automatically generates new Typechain artifacts on each compilation.
There is an optional flag --no-typechain
which can be passed in to skip Typechain compilation.
This plugin adds the typechain task to hardhat:
Generate Typechain typings for compiled contracts
Configuration
This plugin extends the hardhatConfig
optional typechain
object. The object contains two fields, outDir
and
target
. outDir
is the output directory of the artifacts that TypeChain creates (defaults to typechain
). target
is one of the targets specified by the TypeChain docs (defaults to
ethers
).
This is an example of how to set it:
module.exports = {
typechain: {
outDir: 'src/types',
target: 'ethers-v5',
alwaysGenerateOverloads: false,
externalArtifacts: ['externalArtifacts/*.json'],
},
}
Usage
npx hardhat compile
- Compiles and generates Typescript typings for your contracts. Example Waffle + Ethers test that
uses typedefs for contracts:
import { ethers, waffle } from 'hardhat'
import chai from 'chai'
import CounterArtifact from '../artifacts/contracts/Counter.sol/Counter.json'
import { Counter } from '../src/types/Counter'
const { deployContract } = waffle
const { expect } = chai
describe('Counter', () => {
let counter: Counter
beforeEach(async () => {
const signers = await ethers.getSigners()
counter = (await deployContract(signers[0], CounterArtifact)) as Counter
const initialCount = await counter.getCount()
expect(initialCount).to.eq(0)
})
describe('count up', async () => {
it('should count up', async () => {
await counter.countUp()
let count = await counter.getCount()
expect(count).to.eq(1)
})
})
describe('count down', async () => {
it('should fail', async () => {
await counter.countDown()
})
it('should count down', async () => {
await counter.countUp()
await counter.countDown()
const count = await counter.getCount()
expect(count).to.eq(0)
})
})
})
Examples
Original work done by @RHLSTHRM.
Troubleshooting
Using the types generated by this plugin can lead to Hardhat failing to run. The reason is that the types are not
avialable for loading the config, and that's required to generate the types.
To workaround this issue, you can run TS_NODE_TRANSPILE_ONLY=1 npx hardhat compile
.