TypeChain
TypeChain copied to clipboard
🔌 TypeScript bindings for Ethereum smart contracts
Corrected `avialable` to `available` Corrected `doesnt` to `doesn't` Corrected `solidty` to `solidity`
The Hardhat plugin ignores artifacts with the `$` symbol in their names. This is a valid character. In particular, this leads to incompatibility with the `hardhat-exposed` plugin. TypeChain is deprecated...
``` I found a small spelling mistake in E:\Work\ForPortfolio\contribute\TypeChain\packages\typechain\src\cli\cli.ts GitHub username: @YaroslavGuru Email: sudobe7 ```
fixes #911 Note that this PR should be replaced with commits to maintain ethers-v5 or starknet.js properly, But as we don't have resources to fix including those atm would leave...
Dependencies of TypeChain ( prettier, ethers ) should be upgraded. prettier conflicts with prettier-plugin-solidity plugin because prettier-plugin-solidity depends on prettier v3 which returns promise on format API while v2 would...
TypeChain generates type files with something like this ``` export type { Lock } from"./Lock"; ``` while it should be ``` export type { Lock } from"./Lock/index.js"; ``` when node16Modules...