All Projects β†’ ethereum-ts β†’ Typechain

ethereum-ts / Typechain

Licence: mit
πŸ”Œ TypeScript bindings for Ethereum smart contracts

Programming Languages

typescript
32286 projects
solidity
1140 projects

Projects that are alternatives of or similar to Typechain

React Ethereum Dapp Example
A starter boilerplate for an Ethereum dapp using web3.js v1.0, truffle, react, and parity
Stars: ✭ 384 (-50.07%)
Mutual labels:  blockchain, ethereum, web3, truffle
Eth Vue
Featured in Awesome Vue [https://github.com/vuejs/awesome-vue], a curated list maintained by vuejs of awesome things related to the Vue.js framework, and Awesome List [https://awesomelists.net/150-Vue.js/3863-Open+Source/18749-DOkwufulueze-eth-vue], this Truffle Box provides everything you need to quickly build Ethereum dApps that have authentication features with vue, including configuration for easy deployment to the Ropsten Network. It's also Gravatar-enabled. Connecting to a running Ganache blockchain network from Truffle is also possible -- for fast development and testing purposes. Built on Truffle 5 and Vue 3, eth-vue uses vuex for state management, vuex-persist for local storage of app state, and vue-router for routing. Authentication functionalities are handled by Smart Contracts running on the Ethereum blockchain.
Stars: ✭ 171 (-77.76%)
Mutual labels:  blockchain, ethereum, web3, truffle
Truffle
A tool for developing smart contracts. Crafted with the finest cacaos.
Stars: ✭ 11,909 (+1448.63%)
Mutual labels:  blockchain, ethereum, truffle, hacktoberfest
Trace
Supply chain transparency platform proof-of-concept based on the Ethereum blockchain ✍️
Stars: ✭ 52 (-93.24%)
Mutual labels:  blockchain, ethereum, web3, truffle
Eth Crypto
Cryptographic javascript-functions for ethereum and tutorials to use them with web3js and solidity
Stars: ✭ 420 (-45.38%)
Mutual labels:  blockchain, ethereum, web3, truffle
Marketprotocol
Ethereum based derivatives trading protocol creating digital tokens for any asset
Stars: ✭ 78 (-89.86%)
Mutual labels:  blockchain, ethereum, web3, truffle
Eattheblocks
Source code for Eat The Blocks, a screencast for Ethereum Dapp Developers
Stars: ✭ 431 (-43.95%)
Mutual labels:  blockchain, ethereum, web3, truffle
Blockchainbooks.github.io
Blockchain Books
Stars: ✭ 139 (-81.92%)
Mutual labels:  blockchain, ethereum, web3
Sablier
The protocol for real-time finance on the Ethereum blockchain
Stars: ✭ 147 (-80.88%)
Mutual labels:  blockchain, ethereum, truffle
Angular Truffle Starter Dapp
Angular CLI + Truffle Starter Dapp; write, compile & deploy smart contracts on Ethereum blockchains
Stars: ✭ 174 (-77.37%)
Mutual labels:  blockchain, ethereum, truffle
Ethermint Archive
Ethereum on Tendermint using Cosmos-SDK!
Stars: ✭ 667 (-13.26%)
Mutual labels:  blockchain, ethereum, truffle
Mythril
Security analysis tool for EVM bytecode. Supports smart contracts built for Ethereum, Hedera, Quorum, Vechain, Roostock, Tron and other EVM-compatible blockchains.
Stars: ✭ 1,968 (+155.92%)
Mutual labels:  blockchain, ethereum, hacktoberfest
Ethvtx
πŸŒ€πŸ›° ethereum-ready & framework-agnostic redux store configuration
Stars: ✭ 125 (-83.75%)
Mutual labels:  blockchain, ethereum, web3
Cyb Archeology
🌎 Personal immortal robot for the The Great Web
Stars: ✭ 117 (-84.79%)
Mutual labels:  blockchain, ethereum, web3
Armors Solidity
Armors-solidity is a framework to build secure smart contracts on Ethereum.
Stars: ✭ 184 (-76.07%)
Mutual labels:  blockchain, ethereum, truffle
Solidity Idiosyncrasies
Solidity gotchas, pitfalls, limitations, and idiosyncrasies.
Stars: ✭ 267 (-65.28%)
Mutual labels:  ethereum, web3, truffle
Go Web3
Ethereum Go Client [obsolete]
Stars: ✭ 120 (-84.4%)
Mutual labels:  blockchain, ethereum, web3
Ganache
A tool for creating a local blockchain for fast Ethereum development.
Stars: ✭ 1,028 (+33.68%)
Mutual labels:  blockchain, ethereum, truffle
Love Ethereum
εŒΊε—ι“Ύε­¦δΉ 
Stars: ✭ 323 (-58%)
Mutual labels:  blockchain, ethereum, truffle
Ergo
The Language for Smart Legal Contracts
Stars: ✭ 108 (-85.96%)
Mutual labels:  blockchain, ethereum, hacktoberfest

TypeChain

TypeChain

πŸ”Œ TypeScript bindings for Ethereum smartcontracts

Build Status Downloads Prettier Software License

Medium post | DappCon Video

Contributed with:
Neufund

Features ⚑

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

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 npm Core package -
@typechain/ethers-v5 npm Ethers ver 5 support (⚠️ requires TS 4.0 >=) example
@typechain/ethers-v4 npm Ethers ver 4 support example
@typechain/truffle-v5 npm Truffle ver 5 support example
@typechain/truffle-v4 npm Truffle ver 4 support example
@typechain/web3-v1 npm Web3 ver 1 support example
@typechain/hardhat npm Hardhat plugin example

Usage

CLI

typechain --target=(ethers-v4|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, 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.
  • --outDir (optional) - put all generated files to a specific dir.

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

Example:

typechain --target ethers-v4 --outDir app/contracts './node_modules/neufund-contracts/build/contracts/*.json'

Demo 🏎️

Demo

Example usage

Getting started πŸ“š

Motivation

Interacting with blockchain in Javascript is a pain. Web3 interface is sluggish and when using it with Typescript it gets even worse. Often, you can't be sure what given method call will actually do without looking at ABI file. TypeChain is here to solve these problems (as long as you use Typescript).

How does it work?

TypeChain is code generator - provide ABI file and you will get Typescript class with flexible interface for interacting with blockchain. Depending on the target parameter it can generate typings for truffle, web3 1.0.0 or ethers.

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 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 v4 / v5

Use ethers-v4 target to generate wrappers for ethers.js lib.

Truffle v4 / v5

Truffle target is great when you use truffle contracts already. Check out truffle-typechain-example for more details. It require installing 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 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, we will silent tslint for generated files with /* tslint:disable */ comments.

Usage as API

You may want to use ts-generator api to kick off whole process by api:

import { tsGenerator } from 'ts-generator'
import { TypeChain } from 'typechain/dist/TypeChain'

async function main() {
  const cwd = process.cwd()

  await tsGenerator(
    { cwd },
    new TypeChain({
      cwd,
      rawConfig: {
        files: 'your-glob-here',
        outDir: 'optional out dir path',
        target: 'your-target',
      },
    }),
  )
}

main().catch(console.error)

Contributing

Check out our contributing guidelines

Licence

Krzysztof Kaczor (krzkaczor) MIT | Github | Twitter

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].