8.3.2 • Published 5 months ago

typechain v8.3.2

Weekly downloads
16,363
License
MIT
Repository
github
Last release
5 months ago

Features ⚡

  • static typing - you will never call not existing method again
  • IDE support - works with any IDE supporting Typescript
  • extendible - work with many different tools: ethers.js, hardhat, truffle, Web3.js or you can create your own target
  • frictionless - works with simple, JSON ABI files as well as with Truffle/Hardhat artifacts

Installation

npm install --save-dev typechain

You will also need to install a desired target for example @typechain/ethers-v6. Learn more about targets

Take note, that code generated by TypeChain requires TypeScript version 4.3 or newer.

Packages 📦

PackageVersionDescriptionExamples
typechainnpmCore package-
@typechain/ethers-v5npmEthers ver 5 support (⚠️ requires TS 4.0 >=)example
@typechain/ethers-v6npmEthers ver 6 support (⚠️ requires TS 4.0 >=)example
@typechain/starknet.jsnpmStarknet.js ver 3.9
@typechain/truffle-v5npmTruffle ver 5 supportexample
@typechain/web3-v1npmWeb3 ver 1 supportexample
@typechain/hardhatnpmHardhat pluginexample-ethers example-truffle
@typechain/truffle-v4npmTruffle ver 4 support (deprecated)example
@typechain/ethers-v4npmEthers ver 4 support (deprecated)example

eth-sdk

TypeChain generates only TypeScript typings (d.ts) files, if you're looking for "opinionated", "batteries included" solution check out our new project: eth-sdk. It generates typesafe, ready to use ethers.js wrappers and uses etherscan/sourcify to automatically get ABIs based only on smart contract addresses. Under the hood, eth-sdk relies on TypeChain.

Usage

CLI

Note: If you use hardhat just use hardhat plugin.

typechain --target=(ethers-v5|ethers-v6|truffle-v4|truffle-v5|web3-v1|path-to-custom-target) [glob]
  • glob - pattern that will be used to find ABIs, remember about adding quotes: typechain "**/*.json", examples: ./abis/**/*.abi, ./abis/?(Oasis.abi|OasisHelper.abi).
  • --target - ethers-v5, ethers-v6, truffle-v4, truffle-v5, web3-v1 or path to your custom target. Typechain will try to load package named: @typechain/${target}, so make sure that desired package is installed.
  • --out-dir (optional) - put all generated files to a specific dir.
  • --always-generate-overloads (optional) - some targets won't generate unnecessary types for overloaded functions by default, this option forces to always generate them
  • --discriminate-types (optional) - ethers-v5 and ethers-v6 will add an artificial field contractName that helps discriminate between contracts

TypeChain always will rewrite existing files. You should not commit them. Read more in FAQ section.

Example:

typechain --target ethers-v6 --out-dir app/contracts './node_modules/neufund-contracts/build/contracts/*.json'

Videos

Getting started 📚

Motivation

Interacting with blockchain in Javascript is a pain. Developers need to remember not only a name of a given smart contract method or event but also it's full signature. This wastes time and might introduce bugs that will be triggered only in runtime. TypeChain solves these problems (as long as you use TypeScript).

How does it work?

TypeChain is a code generator - provide ABI file and name of your blockchain access library (ethers/truffle/web3.js) and you will get TypeScript typings compatible with a given library.

Step by step guide

Install TypeChain with npm install --save-dev typechain and install desired target.

Run typechain --target=your_target (you might need to make sure that it's available in your path if you installed it only locally), it will automatically find all .abi files in your project and generate Typescript classes based on them. You can specify your glob pattern: typechain --target=your_target "**/*.abi.json". node_modules are always ignored. We recommend git ignoring these generated files and making typechain part of your build process.

That's it! Now, you can simply import typings, check out our examples for more details.

Targets 🎯

Ethers.js v6

Use ethers-v6 target to generate wrappers for ethers.js lib. To make it work great with Hardhat, use Hardhat plugin.

If you use nodenext aka node16modules flip the flag --node16-modules to generate compatible typings.

If you are using Ethers.js v5, use the @typechain/ethers-v5 target.

If you're using Ethers.js v4, you can find legacy @typechain/ethers-v4 target on npm and commit db551b5.

Truffle v5

Truffle target is great when you use truffle contracts already. Check out truffle-typechain-example for more details.

Now you can simply use your contracts as you did before and get full type safety, yay!

Web3 v1

Generates typings for contracts compatible with latest stable Web3.js version. Typings for library itself are now part of the Web3 1.0.0 library so nothing additional is needed. For now it needs explicit cast as shown here, this will be fixed after improving official typings.

NatSpec support

If you provide solidity artifacts rather than plain ABIs as an input, TypeChain can generate NatSpec comments directly to your typings which enables simple access to docs while coding.

Your own target

This might be useful when you're creating a library for users of your smartcontract and you don't want to lock yourself into any API provided by Web3 access providing library. You can generate basically any code (even for different languages than TypeScript!) that based on smartcontract's ABI.

FAQ 🤔

Q: Should I commit generated files to my repository?

A: NO — we believe that no generated files should go to git repository. You should git ignore them and make typechain run automatically for example in post install hook in package.json:

"postinstall":"typechain"

When you update ABI, just regenerate files with TypeChain and Typescript compiler will find any breaking changes for you.

Q: How do I customize generated code?

A: You can create your own target and generate basically any code.

Q: Generated files won't match current codestyle of my project :(

A: We will automatically format generated classes with prettier to match your coding preferences (just make sure to use .prettierrc file).

Furthermore, TypeChain will silent eslint and tslint errors for generated files.

Usage as API

import { runTypeChain, glob } from 'typechain'

async function main() {
  const cwd = process.cwd()
  // find all files matching the glob
  const allFiles = glob(cwd, [`${config.paths.artifacts}/!(build-info)/**/+([a-zA-Z0-9_]).json`])

  const result = await runTypeChain({
    cwd,
    filesToProcess: allFiles,
    allFiles,
    outDir: 'out directory',
    target: 'target name',
  })
}

main().catch(console.error)

If you don't care about incremental generation just specify the same set of files for filesToProcess and allFiles. For incremental generation example read the source code of hardhat plugin.

Contributing

Check out our contributing guidelines

Licence

Kris Kaczor (krzkaczor) MIT | Github | Twitter

vitacontracts@poofcash/poof-v2-kit@blockswaplab/cip-sdketherless-cli@sirenprotocol/contractsindex-daoindex-coop@bond-labs/contract-librarylot-ref@meetusvr/smart-contracts@infinitebrahmanuniverse/nolb-typec@ponder/ponder@everything-registry/sub-chunk-2993messina-sdk@saxle/daemons@actalink/contracts@algo-foundry/messina-sdkbizzswap@angular-web3/builders@angleprotocol/sdk@amxx/hrearb-tswrap-tokens@borealisswap/borealis-swap-lib@bond-protocol/contract-library@blockswaplab/k2-sdk@blockswaplab/lsd-wizard@blockswaplab/mpc-jscommon_abstrxn@celo/typechain-target-web3-v1-celo@celo/walletkitocto-wallet-sdkocto-defi@catalabs/catalyst-sdk@chainlink/test-helpers@chainlink/belt@carlos0202/local-testnet-deployerautodefender@0xobelisk/aptos-cli@0xpropel/core@aaaaaimtesting/package-test@aaiello/arkive-hardhat@aaiello/hardhat@b-smart/etherless-clichaosverse-sdk-beta@aztec/bridge-clientsnoir-zidennse-test@bsktfi/connect-sdk-evm@bsktfi/connect-sdk-evm-cctp@bsktfi/connect-sdk-evm-core@bsktfi/connect-sdk-evm-portico@bsktfi/connect-sdk-evm-tokenbridgebizboa-bridge-server-tempbizboa-bridge-server-tmp@baseswapfi/sdk-core@baseswapfi/react-wallet-libchronixchronix-test-e2e-packageouter-mint-sdk@connext/nxtp-contractscream-contracts@cross-nft-marketplace/hofa-nft@cross-nft-marketplace/nft-editionscustom-soldappqldapps-bo@dcnsdomains/function@dahlia-labs/minima-pair-registrypresent-contractsdiamond-wallet-jsdms-store-purchase-serverprophet-batching-dl-defi-core-contracts-temp2@aragon/govern-contract-utilsnftstarsdk@anticxyz/dal@anticxyz/so-widget@aurigami/smart-contractsbuidler-project@colony/contractor@darenft/dare-protocol-contracts@dany-armstrong/hardhat-erc20@defi.org/web3-candies@defiedge/sdk@d8x/perpetuals-sdkdealrooms@digitalnative/bookkeeper@dethcrypto/eth-sdk@congson1907/sunswap-core@chung0807/ziden-noircross-chain-shuttleoz-custompacked-solidity-arrays@cloud8little/latticexyz-clip-utilityredstone-evm-connectorredstone-flash-storage@daominhhiep/sdk-core@latch-wallet/common
8.3.2

5 months ago

8.3.0

8 months ago

8.3.1

8 months ago

8.2.1

8 months ago

8.2.0

10 months ago

8.1.1

1 year ago

8.1.0

2 years ago

7.0.1

2 years ago

8.0.0

2 years ago

6.1.0

2 years ago

7.0.0

2 years ago

6.0.3

2 years ago

6.0.5

2 years ago

6.0.4

2 years ago

6.0.1

2 years ago

6.0.0

2 years ago

6.0.2

2 years ago

5.2.0

2 years ago

5.1.2

3 years ago

5.1.1

3 years ago

5.1.0

3 years ago

5.0.0

3 years ago

4.0.3

3 years ago

4.0.2

3 years ago

4.0.1

3 years ago

4.0.0

3 years ago

3.0.0

3 years ago

2.0.1

3 years ago

2.0.0

4 years ago

2.0.0-beta2

4 years ago

2.0.0-beta1

4 years ago

1.0.5

4 years ago

2.0.0--beta.0

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

1.0.0-beta.3

4 years ago

1.0.0-beta.2

4 years ago

1.0.0-beta.1

4 years ago

1.0.0-beta.0

4 years ago

0.9.0-beta.0

4 years ago

0.3.21

5 years ago

0.3.20

5 years ago

0.3.19

5 years ago

0.3.18

5 years ago

0.3.17

5 years ago

0.3.16

5 years ago

0.3.15

5 years ago

0.3.14

5 years ago

0.3.13

5 years ago

0.3.12

5 years ago

0.3.11

5 years ago

0.3.10

5 years ago

0.3.9

5 years ago

0.3.8

5 years ago

0.3.7

5 years ago

0.3.6

5 years ago

0.3.5

6 years ago

0.3.4

6 years ago

0.3.3

6 years ago

0.3.2

6 years ago

0.3.1

6 years ago

0.2.7

6 years ago

0.2.6

6 years ago

0.2.5

6 years ago

0.2.4

6 years ago

0.2.3

6 years ago

0.2.2

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.5

6 years ago

0.1.4

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.9

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.5

6 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago