Replies: 1 comment
-
if they get an API key from your client they definitely could do that. If you proxy, you now have some extra controls. Since you're proxying signup requests to your backend, you can check the kind of sign up that's happening. So if you get a Passkey + Email signup, you should first require the user to verify their email. Or you can restrict signup entirely with that method and only allow email based signups (which inherently go through an email verification flow) and then allow users to add a passkey later |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Today, my frontend is configured as such :
While i was implementing Passkey + Email only signups for users, i was wondering one thing :
Since users can get the api key client-side (or even if i proxy, they could use the proxy i guess), what prevents someone from calling
in order to create the smart account (and even export the private key).
I've tested this locally :
Did i messed up in the account signup process ?
Beta Was this translation helpful? Give feedback.
All reactions