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
0.0.8
I get the following error when I use the SDK in a frontend project using Remix.This is due to the fact that Remix does not accept process variables.
process
ReferenceError: process is not defined at http://localhost:5173/node_modules/.vite/deps/@biconomy_sdk.js?v=350b1863:8544:22
It is comming from here
https://github.com/bcnmy/sdk/blob/ebe66df681e14f88c0f0ff864add79f600f12d55/src/sdk/account/utils/Utils.ts#L360C1-L374C2
Ensure that the imported SDK can be used without problems.
Putting typeof process !== undefined before using process may fix this bug
typeof process !== undefined
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is there an existing issue for this?
Package Version
0.0.8
Current Behavior
I get the following error when I use the SDK in a frontend project using Remix.This is due to the fact that Remix does not accept
process
variables.It is comming from here
https://github.com/bcnmy/sdk/blob/ebe66df681e14f88c0f0ff864add79f600f12d55/src/sdk/account/utils/Utils.ts#L360C1-L374C2
Expected Behavior
Ensure that the imported SDK can be used without problems.
Putting
typeof process !== undefined
before using process may fix this bugSteps To Reproduce
No response
Package.json (or lockfile) content
No response
Link to Minimal Reproducible Example (StackBlitz, CodeSandbox, GitHub repo etc.)
No response
Anything else?
No response
The text was updated successfully, but these errors were encountered: