Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@typechain/ethers-v5
Advanced tools
@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.
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();
@typechain/truffle-v5 is a TypeScript code generator that generates TypeScript typings for Ethereum smart contracts specifically designed to work with the Truffle framework. It provides similar functionality to @typechain/ethers-v5 but is tailored for projects using Truffle instead of ethers.js.
ethers is a library for interacting with the Ethereum blockchain and its ecosystem. While it does not generate TypeScript typings for smart contracts, it provides a comprehensive set of tools for interacting with Ethereum, including contract interaction, wallet management, and more. @typechain/ethers-v5 builds on top of ethers.js to provide type-safe contract interactions.
🔌 TypeScript bindings for Ethers 5.x.x smartcontracts
This package requires TypeScript >= 4.0. If you need support for earlier TS versions check out: 1.0 version of this package.
The main files generated by this target are <contract-name>.ts
. They declare typesafe interfaces for your contracts on
top of ethers Contract
instances:
contract.someMethod(...)
and contract.functions.someMethod(...)
contract.interface.events.AnEvent
and filters in contract.filters.AnEvent
contract.estimateGas.someMethod
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.
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:
ContractFactory
class, so you don't have to load and parse the JSON
manuallyContractFactory
(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.
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);
}
FAQs
🔌 TypeChain target for ethers-v5
The npm package @typechain/ethers-v5 receives a total of 145,572 weekly downloads. As such, @typechain/ethers-v5 popularity was classified as popular.
We found that @typechain/ethers-v5 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.