MCPcopy Index your code
hub / github.com/dethcrypto/TypeChain

github.com/dethcrypto/TypeChain @8.3.2 sqlite

repository ↗ · DeepWiki ↗ · release 8.3.2 ↗
2,066 symbols 3,359 edges 424 files 6 documented · 0% 1 cross-repo links
README

TypeChain

🔌 TypeScript bindings for Ethereum smart contracts

<a href="https://github.com/ethereum-ts/TypeChain/actions"><img alt="Build Status" src="https://github.com/ethereum-ts/TypeChain/workflows/CI/badge.svg"></a>
<img alt="Downloads" src="https://img.shields.io/npm/dm/typechain.svg">
<a href="https://github.com/dethcrypto/TypeChain/raw/8.3.2/package.json"><img alt="Software License" src="https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square"></a>
<a href="https://discord.gg/wQDkeDgzgv"><img alt="Join our discord!" src="https://img.shields.io/discord/895381864922091630.svg?color=7289da&label=deth&logo=discord&style=flat-square"></a>







<strong>💸 Enjoy using TypeChain? Consider funding development via <a href="https://gitcoin.co/grants/4038/deth-typechain">GitCoin</a> 💸</strong>







<i>Used by the best:</i>


<img src="https://raw.githubusercontent.com/ethereum-ts/TypeChain/master/docs/images/maker-logo.png" height="110" alt="Maker DAO" />
<a href="https://github.com/Uniswap/uniswap-v3-core/blob/main/hardhat.config.ts#L1"><img src="https://raw.githubusercontent.com/ethereum-ts/TypeChain/master/docs/images/uniswap-logo.png" height="90" alt="Uniswap" /></a>
<a href="https://github.com/aave/protocol-v2/blob/master/hardhat.config.ts#L16"><img src="https://raw.githubusercontent.com/ethereum-ts/TypeChain/master/docs/images/aave-logo.png" height="60" alt="AAVE" /></a>



<a href="https://github.com/ethereum-optimism/optimism/blob/master/packages/contracts/hardhat.config.ts#L14"><img src="https://raw.githubusercontent.com/ethereum-ts/TypeChain/master/docs/images/optimism-logo.png" height="90" alt="Optimism" /></a>
<a href="https://github.com/matter-labs/zksync/blob/9687049af1efbd14d8e47d97ebea643e1516da9d/contracts/hardhat.config.ts#L4"><img src="https://raw.githubusercontent.com/ethereum-ts/TypeChain/master/docs/images/zksync-logo.png" height="100" alt="zkSync" /></a>
<a href="https://github.com/KyberNetwork/dao_sc/blob/master/hardhat.config.ts#L8"><img src="https://raw.githubusercontent.com/ethereum-ts/TypeChain/master/docs/images/kyber-logo.png" height="100" alt="Kyber" /></a>
<a href="https://github.com/OffchainLabs/arbitrum/blob/133ac08dbf423ce7ca79343260869e46bf02a543/packages/arb-bridge-eth/package.json#L39"><img src="https://raw.githubusercontent.com/ethereum-ts/TypeChain/master/docs/images/arbitrum-logo.png" height="100" alt="Arbitrum" /></a>

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 📦

Package Version Description Examples
typechain npm Core package -
@typechain/ethers-v5 npm Ethers ver 5 support (⚠️ requires TS 4.0 >=) example
@typechain/ethers-v6 npm Ethers ver 6 support (⚠️ requires TS 4.0 >=) example
@typechain/starknet.js npm Starknet.js ver 3.9
@typechain/truffle-v5 npm Truffle ver 5 support example
@typechain/web3-v1 npm Web3 ver 1 support example
@typechain/hardhat npm Hardhat plugin example-ethers example-truffle
@typechain/truffle-v4 npm Truffle ver 4 support (deprecated) example
@typechain/ethers-v4 npm Ethers 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

```typescript 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])

Extension points exported contracts — how you extend this code

ContractFunction (Interface)
* Global contract function
packages/target-truffle-v5/static/types.d.ts
ContractFunction (Interface)
* Global contract function
packages/target-truffle-v5-test/types/truffle-contracts/types.d.ts
ERC20 (Interface)
(no doc)
packages/target-starknet-test/types/ERC20.ts
EstimateGasOptions (Interface)
(no doc)
packages/target-web3-v1-test/types/types.ts
TypedDeferredTopicFilter (Interface)
(no doc)
packages/target-ethers-v6-test/types/common.ts
TypedEvent (Interface)
(no doc)
packages/target-ethers-v5/static/common.ts
Context (Interface)
(no doc)
packages/hardhat/test/helpers.ts
TypedDeferredTopicFilter (Interface)
(no doc)
packages/hardhat-test/typechain-types/common.ts

Core symbols most depended-on inside this repo

typedAssert
called by 247
packages/test-utils/src/test.ts
call
called by 58
packages/target-web3-v1/static/types.ts
log
called by 30
packages/typechain/src/utils/logger.ts
q18
called by 28
packages/test-utils/src/test.ts
toString
called by 23
packages/typechain/src/parser/parseEvmType.ts
extractBytecode
called by 22
packages/typechain/src/parser/abiParser.ts
parseEvmType
called by 20
packages/typechain/src/parser/parseEvmType.ts
push
called by 20
examples/ethers-v5-nodenext/types/ethers-contracts/Dai.ts

Shape

Method 1,274
Interface 387
Function 264
Class 141

Languages

TypeScript100%

Modules by API surface

packages/target-ethers-v5-test/types/v0.8.9/Rarity/Rarity.ts42 symbols
packages/target-ethers-v5-test/types/v0.6.4/DataTypesInput.ts42 symbols
packages/typechain/src/parser/abiParser.ts40 symbols
examples/ethers-v5-nodenext/types/ethers-contracts/Dai.ts37 symbols
packages/target-truffle-v5-test/types/truffle-contracts/DataTypesInput.d.ts34 symbols
packages/target-ethers-v5-test/types/v0.6.4/Events.ts28 symbols
packages/target-ethers-v5-test/types/v0.8.9/Rarity/IERC721Enumerable.ts27 symbols
packages/target-ethers-v5-test/types/v0.8.9/Rarity/ERC721Enumerable.ts27 symbols
packages/target-ethers-v5-test/types/v0.6.4/DataTypesView.ts25 symbols
packages/target-ethers-v5-test/types/v0.6.4/DataTypesPure.ts25 symbols
packages/target-ethers-v5-test/types/v0.8.9/Rarity/IERC721.ts24 symbols
packages/target-ethers-v5-test/types/v0.8.9/Rarity/ERC721.ts24 symbols

Used by 1 indexed graphs manifest dependencies, hub-wide

Dependencies from manifests, versioned

@changesets/cli2.22.0 · 1×
@ethersproject/abi5.0.0 · 1×
@ethersproject/bytes5.0.0 · 1×
@ethersproject/contracts5.4.0 · 1×
@ethersproject/providers5.0.0 · 1×
@nomicfoundation/hardhat-chai-matchers2.0.0 · 1×
@nomicfoundation/hardhat-ethers3.0.0 · 1×
@nomiclabs/hardhat-etherscan2.1.1 · 1×
@nomiclabs/hardhat-truffle52.0.0 · 1×
@nomiclabs/hardhat-web32.0.0 · 1×
@typechain/ethers-v5workspace:^11.1.2 · 1×
@typechain/ethers-v6workspace:^0.5.1 · 1×

For agents

$ claude mcp add TypeChain \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact