-
Is there a way I can do something like this using a browser as a runtime (specifically I'm using ReactJS)
I'd have to sign a message using a private key like this and I have no idea how to do it. |
Beta Was this translation helpful? Give feedback.
Answered by
panva
Aug 25, 2022
Replies: 1 comment
-
As per Browser Support, the Web Cryptography API used in a browser does not support the Therefore this won't work in any Web Cryptography API backed runtime, only Node.js. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
0xCaso
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As per Browser Support, the Web Cryptography API used in a browser does not support the
secp256k1
EC curve.Therefore this won't work in any Web Cryptography API backed runtime, only Node.js.