当前位置: 首页 > 软件库 > Web3 > 区块链 >

TypeChain

授权协议 MIT License
开发语言
所属分类 Web3、 区块链
软件类型 开源软件
地区 不详
投 递 者 南门新荣
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

TypeChain

TypeChain

�� TypeScript bindings for Ethereum smart contracts

Build Status

Used by the best:
Maker DAO Uniswap AAVE
Optimism zkSync Kyber Arbitrum

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 owntarget
  • 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-v4. Learn more about targets

Packages ��

Package Version Description Examples
typechain Core package -
@typechain/ethers-v5 Ethers ver 5 support ( ⚠️ requires TS 4.0 >=) example
@typechain/ethers-v4 Ethers ver 4 support example
@typechain/truffle-v5 Truffle ver 5 support example
@typechain/truffle-v4 Truffle ver 4 support example
@typechain/web3-v1 Web3 ver 1 support example
@typechain/hardhat Hardhat plugin example-ethers example-truffle

Usage

CLI

Note: If you use hardhat just usehardhat plugin.

typechain --target=(ethers-v4|ethers-v5|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-v4, ethers-v5, truffle-v4, truffle-v5, web3-v1 or path to your custom target. Typechain will tryto 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 bydefault, this option forces to always generate them

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

Example:

typechain --target ethers-v5 --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 smartcontract method or event but also it's full signature. This wastes time and might introduce bugs that will be triggeredonly 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) andyou will get TypeScript typings compatible with a given library.

Step by step guide

Install TypeChain with yarn add --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 itonly locally), it will automatically find all .abi files in your project and generate Typescript classes based onthem. You can specify your glob pattern: typechain --target=your_target "**/*.abi.json". node_modules are alwaysignored. 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 v4 / v5

Use ethers-v5 target to generate wrappers for ethers.js lib. To make itwork great with Hardhat, use Hardhat plugin.

Truffle v4 / v5

Truffle target is great when you use truffle contracts already. Check outtruffle-typechain-example for more details. It requireinstalling typings for truffle library itself.

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 partof the Web3 1.0.0 library so nothing additional is needed. For now it needs explicit cast as shownhere, this will be fixedafter improving official typings.

NatSpec support

If you provide solidity artifacts rather than plain ABIs as an input, TypeChain can generate NatSpec comments directlyto 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 yourselfinto any API provided by Web3 access providing library. You can generate basically any code (even for differentlanguages 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 maketypechain 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 foryou.

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 touse .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 ofhardhat plugin.

Contributing

Check out our contributing guidelines

Licence

Kris Kaczor (krzkaczor) MIT | Github | Twitter

相关阅读

相关文章

相关问答

相关文档