-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
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
fix: explicitly add web3-utils dependency #191
base: dev
Are you sure you want to change the base?
fix: explicitly add web3-utils dependency #191
Conversation
Testing with Smock failed due to the missing web3-utils dependency. The dependecy is now explicitly added to the package.json file.
package.json
Outdated
@@ -109,7 +109,8 @@ | |||
"ts-node": "10.0.0", | |||
"tsconfig-paths": "^3.9.0", | |||
"typechain": "5.1.1", | |||
"typescript": "4.5.2" | |||
"typescript": "4.5.2", | |||
"web3-utils": "^4.0.5" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
blz explicit version 🙏
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure 😁
Should be ok now ✅
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
getting this error on gh tests, any clue?
error @noble/[email protected]: The engine "node" is incompatible with this module. Expected version ">= 16". Got "14.21.3"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Huh, let me try them locally
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm getting no issues on my end (I'm using yarn 1.22.19
and node v16.15.0
)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm! @0xGorilla wdyt?
Description
Testing with Smock failed due to the missing web3-utils dependency.
The dependency is now explicitly added to the package.json file.
Metadata