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
Typechain seems to output duplicate types under the returns and arguments directories. E.g. I have a small contract with 3 methods which generates exactly the same file in TypeArguments and TypeReturns:
Why are the type-arguments and types-returns separate things and could they be merged? It's very unclear whether I should be using types from the arguments or returns side of things. Further, the duplication makes exporting to other packages annoying due to naming clashes. E.g.
index.ts
export * from './types-arguments'
export * from './types-returns'
The text was updated successfully, but these errors were encountered:
Typechain seems to output duplicate types under the
returns
andarguments
directories. E.g. I have a small contract with 3 methods which generates exactly the same file in TypeArguments and TypeReturns:types-arguments
types-returns
Why are the type-arguments and types-returns separate things and could they be merged? It's very unclear whether I should be using types from the arguments or returns side of things. Further, the duplication makes exporting to other packages annoying due to naming clashes. E.g.
index.ts
The text was updated successfully, but these errors were encountered: