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
Describe the bug When I try to initialize the SDK, I'm seeing
Error: Cannot find module 'ethers/lib/utils' Require stack: - /home/stadolf/work/univax/node_modules/.pnpm/[email protected]/node_modules/jolocom-lib/js/utils/helper.js ...
in your helper.ts you import from ethers (https://github.com/jolocom/jolocom-lib/blob/develop/ts/utils/helper.ts#L7) but your package.json requires etherumjs-util instead (https://github.com/jolocom/jolocom-lib/blob/develop/package.json#L80). That library contains the needed code but you require the "wrong" library. When I install ethers on my side it runs well. Think you only have to import your needed helpers from ethereumjs-util instead.
ethers
etherumjs-util
ethereumjs-util
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
When I try to initialize the SDK, I'm seeing
in your helper.ts you import from
ethers
(https://github.com/jolocom/jolocom-lib/blob/develop/ts/utils/helper.ts#L7) but your package.json requiresetherumjs-util
instead (https://github.com/jolocom/jolocom-lib/blob/develop/package.json#L80). That library contains the needed code but you require the "wrong" library. When I installethers
on my side it runs well. Think you only have to import your needed helpers fromethereumjs-util
instead.The text was updated successfully, but these errors were encountered: