You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Example: This contract has a target property. The ethers v6 type generated by TypeChain looks like this:
/* * Interface 'Module' incorrectly extends interface 'BaseContract'. * Types of property 'target' are incompatible. * Type 'TypedContractMethod<[], [string], "view">' is not assignable to type 'string | Addressable'.ts(2430) */exportinterfaceModuleextendsBaseContract{// ~~~~~~ // ...target: TypedContractMethod<[],[string],"view">;// ...}
Expected behavior: TypeChain should probably skip over functions that clash with ethers built-ins.
The text was updated successfully, but these errors were encountered:
Example: This contract has a
target
property. The ethers v6 type generated by TypeChain looks like this:Expected behavior: TypeChain should probably skip over functions that clash with ethers built-ins.
The text was updated successfully, but these errors were encountered: