Releases: dethcrypto/TypeChain
Releases · dethcrypto/TypeChain
@typechain/[email protected]
@typechain/[email protected]
@typechain/[email protected]
Major Changes
- 99fafbe: Change default output directory to "typechain-types"
- 0e555af: Generate types to
.ts
files instead of.d.ts
in Ethers v5 and Web3.js targets
Patch Changes
@typechain/[email protected]
Major Changes
- 5c217a6: Changed emitted event types — named events are now used in Contract methods.
- 0e555af: Generate types to
.ts
files instead of.d.ts
in Ethers v5 and Web3.js targets
Minor Changes
-
95517e9: Add support for Solidity structs
// before function deposit(amount: { token: string; value: BigNumberish }): Promise<ContractTransaction> // after export type AmountStruct = { token: string; value: BigNumberish } function deposit(amount: AmountStruct): Promise<ContractTransaction>
Patch Changes
@typechain/[email protected]
[email protected]
Minor Changes
- c7c2913: Escaped reserved words in argument names
@typechain/[email protected]
@typechain/[email protected]
@typechain/[email protected]
Patch Changes
- e6bd016: Fix typing for
getContractAt
when using Hardhat
@typechain/[email protected]
Patch Changes
- 7f57ff8: Support typings for
getContractAt
when using Hardhat