I'm looking for a way to use Web3Auth features in my UE project. I tried the demo and it seemed working properly. In the demo, a raw json-shaped string appeared on the screen after logged in.
{
"privKey": "0ajjsdsd....",
"ed25519PrivKey": "0ajjsdsd....",
"error": "",
"sessionId": "4b89....",
"userInfo": {
"email": "john@gmail.com",
"name": "John Dash",
"profileImage": "https://lh3.googleusercontent.com/a/Ajjjsdsmdjmnm...",
"verifier": "torus",
"verifierId": "john@gmail.com",
"typeOfLogin": "google",
"dappShare": "",
"idToken": "eyJh....",
"oAuthIdToken": "",
"oAuthAccessToken": ""
}
}
I would like to know how to generate a wallet address from this type of response. Could anyone tell me possible solutions?
Originally posted by: skk5523
Check the discussion at: https://github.com/orgs/Web3Auth/discussions/1187