-
Notifications
You must be signed in to change notification settings - Fork 128
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
Using of native BigInt is a breaking change #291
Comments
iOS 13 Safari does not support BigInt and will give an error: Can't find variable: BigInt. This will give an error on lower versions of the browser. |
Is there any way I can fix this error quickly? |
You could try and use BigInt polyfil which is part of core-js library - https://github.com/zloirock/core-js#numberrange |
Any updates with that? |
Any updates? |
Any updates? |
Introduction of native BigInt could lead to errors on environments that doesn't support BigInt.
Currently, a lot of browsers with older versions does not support BigInt, React Native does not support big int. All applications include address-encoder dependency should use polyfills.
Possible solutions:
The text was updated successfully, but these errors were encountered: