You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP โ†’
Socket
Socket
Sign inDemoInstall

@typechain/ethers-v5

Package Overview
Dependencies
Maintainers
2
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@typechain/ethers-v5

๐Ÿ”Œ TypeChain target for ethers-v5


Version published
Weekly downloads
147K
increased by14.85%
Maintainers
2
Install size
57.9 kB
Created
Weekly downloads
ย 

Package description

What is @typechain/ethers-v5?

@typechain/ethers-v5 is a TypeScript code generator that generates TypeScript typings for Ethereum smart contracts. It is specifically designed to work with the ethers.js library (version 5). This package helps developers interact with Ethereum smart contracts in a type-safe manner, reducing the likelihood of runtime errors and improving the developer experience.

What are @typechain/ethers-v5's main functionalities?

Generating TypeScript typings for smart contracts

This feature allows you to generate TypeScript typings for your Ethereum smart contracts. By running the TypeChain command with the ethers-v5 target, you can create type-safe contract interfaces that can be used in your TypeScript project.

const { execSync } = require('child_process');
execSync('npx typechain --target ethers-v5 --out-dir src/types "./artifacts/**/*.json"');

Interacting with smart contracts using type-safe methods

This feature demonstrates how to interact with a smart contract using the generated TypeScript typings. By importing the contract interface and using ethers.js, you can call contract methods in a type-safe manner, ensuring that the correct types are used and reducing the risk of runtime errors.

import { MyContract } from './types/MyContract';
import { ethers } from 'ethers';

async function main() {
  const provider = new ethers.providers.JsonRpcProvider('http://localhost:8545');
  const signer = provider.getSigner();
  const myContract = new ethers.Contract('0xYourContractAddress', MyContract.abi, signer) as MyContract;

  const result = await myContract.myMethod();
  console.log(result);
}

main();

Other packages similar to @typechain/ethers-v5

Readme

Source

Typechain target Ethers-v5

TypeChain

TypeChain target Ethers-v5

๐Ÿ”Œ TypeScript bindings for Ethers 5.x.x smartcontracts

Build Status Coverage Downloads Prettier Software License

Medium post | DappCon Video

This package requires TypeScript >= 4.0. If you need support for earlier TS versions check out: 1.0 version of this package.

TypeChain readme

Contract typings

The main files generated by this target are <contract-name>.d.ts. They declare typesafe interfaces for your contracts on top of ethers Contract instances:

  • typed contract's methods, available both at contract.someMethod(...) and contract.functions.someMethod(...)
  • typed events in contract.interface.events.AnEvent and filters in contract.filters.AnEvent
  • typed method gas estimates in contract.estimateGas.someMethod
  • overrides for the event listener methods (on, once, etc) that return the same contract type.

Note: these are just type declarations to help you call the blockchain properly, so they're not available at runtime, and all of the contracts are still instances of the same Contract class.

Contract factories

This target also generates a concrete factory class for each contract, to help you deploy or connect to contract instances. The factory classes are an extension of ethers' ContractFactory. They serve two main purposes:

  • wrap passing contract ABI and bytecode to the ContractFactory class, so you don't have to load and parse the JSON manually
  • provide a correctly typed interface to ContractFactory (since it returns plain Contract instances).

Abstract contracts or solidity interfaces are handled a bit different, because they have no bytecode. For those, a simplified factory is generated that doesn't extends ContractFactory, and only includes the static connect method, so you can easily connect to a deployed instance without having to pass the ABI manually.

Basic example

Suppose you have an Erc20Token.sol solidity interface and a DummyToken.sol contract implementing it.

import { BigNumber } from 'ethers';
import { Wallet } from 'ethers';

import { DummyTokenFactory } from 'typechain-out-dir/DummyTokenFactory';
import { DummyToken } from 'typechain-out-dir/DummyToken';
import { Erc20TokenFactory } from 'typechain-out-dir/Erc20TokenFactory';

const provider = getYourProvider(...);

// use the concrete contract factory if you need to operate on the bytecode (ie. deploy)
async function deployTestToken(ownerPK: string): Promise<DummyToken> {
    const owner = new Wallet(ownerPK, provider);
    return new DummyTokenFactory(owner).deploy();
}

// to call existing contracts, a factory for both the concrete contract and for the interface
// can be used since the ABI is the same
async function getTokenBalance(walletAddress: string, tokenAddress: string): Promise<BigNumber> {
    const token = Erc20TokenFactory.connect(tokenAddress, provider);
    return token.balanceOf(walletAddress);
}

Keywords

FAQs

Package last updated on 08 Jun 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with โšก๏ธ by Socket Inc