Replies: 4 comments 2 replies
-
Hey @ruymaster
Please look at any react native apps present at https://github.com/Web3Auth/examples/tree/main/react-native and try running it and see if this is what you need. |
Beta Was this translation helpful? Give feedback.
-
Thanks for your response. I already made some modules based on example. So I got private key with web3auth. But I can't get 12 seed phrase or store generated randomly seed phrase string, as simular as binance wallet extension doing. |
Beta Was this translation helpful? Give feedback.
-
Thanks for replying. Private key can't be converted to seed phrases. You can check this link. |
Beta Was this translation helpful? Give feedback.
-
Thanks, @yashovardhan I understand. It is possible to generate seed with enough entropy. thanks again. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to integrate web3auth in our wallet app. Wallet app is made in react native. I need to get seed phrase for each user, so users can login with web3auth and create wallet automatically. How can I get seed phrase with react native sdk?
I used custom verifier. My code is like this.
const web3Auth = new Web3Auth(WebBrowser, {
clientId: 'xxxxx',
network: OPENLOGIN_NETWORK.TESTNET,
loginConfig: {
google: {
verifier: 'my_verifier',
typeOfLogin: 'google',
name: 'Custom Login with Google',
clientId: 'my_google_client_id'
}
}
});
const state = await web3Auth.login({ loginProvider: LOGIN_PROVIDER.GOOGLE, redirectUrl: resolvedRedirectUrl });
Beta Was this translation helpful? Give feedback.
All reactions