We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Found version mismatch of viem package between core and v1 packages, causing TypeScript compilation errors.
viem
core
v1
@jpyc/sdk-core
@jpyc/sdk-v1
This mismatch causes TypeScript compilation errors in v1 package when running yarn workspace @jpyc/sdk-v1 run compile:
yarn workspace @jpyc/sdk-v1 run compile
Type 'Chain' is not assignable to type 'Chain | undefined'. Type 'import("viem/_types/types/chain").Chain' is not assignable to type 'import("viem/_types/types/chain").Chain'.
Update viem version in v1 package to match core:
yarn workspace @jpyc/sdk-v1 add [email protected]
The text was updated successfully, but these errors were encountered:
Mameta29
Successfully merging a pull request may close this issue.
🐛 Description
📝 Overview
Found version mismatch of
viem
package betweencore
andv1
packages, causing TypeScript compilation errors.🐛 Current Behavior
@jpyc/sdk-core
uses [email protected]@jpyc/sdk-v1
uses [email protected]This mismatch causes TypeScript compilation errors in
v1
package when runningyarn workspace @jpyc/sdk-v1 run compile
:🔍 How to Reproduce
Update viem version in v1 package to match core:
📚 References
The text was updated successfully, but these errors were encountered: