Replies: 9 comments 12 replies
-
Hey @irfanonk With MFA, I'm assuming you're using the same verifier for both. Right? If so, it should return the same address. Meanwhile, can you try https://github.com/Web3Auth/examples/tree/main/web-single-factor-auth/react-evm-sfa-example and see if you're able to replicate the same or not? If not, please share which SDK and its version are you using. And the initialization and login code snippets for both approaches. |
Beta Was this translation helpful? Give feedback.
-
aa missed that point. there are two different verifier but i could not use them interchangeably since one of them has sub jwt verifier the other is email. If any issue emerge i will continue here. |
Beta Was this translation helpful? Give feedback.
-
I have created a new verifier with sub id. then create wallet with the same user with sfa and mfa. they return different wallet address. Get Accoıunts button returns these for [email protected]: sfa: 0x9fe7374f17E4ebacF819162a7a6a7204A40e8F96 |
Beta Was this translation helpful? Give feedback.
-
I am having the exact same issue.
|
Beta Was this translation helpful? Give feedback.
-
We have released a fix to this. Please update your packages to the latest and try again. Let us know if you're still facing the issue. |
Beta Was this translation helpful? Give feedback.
-
Can anyone answer on this, please? |
Beta Was this translation helpful? Give feedback.
-
Hey folks, We noticed this issue and are working on a fix for this. The MFA returns a sub key from the main key due to which this issue is arising. Here's the PR where the work on this issue is going on: #1208 Please expect this to release by mid February. |
Beta Was this translation helpful? Give feedback.
-
The issue is fixed now. You can check out the example here 👉 https://github.com/Web3Auth/examples/tree/main/web-single-factor-auth/react-evm-sfa-example. Please use the latest web3auth packages. When using SFA and Web3Auth Core SDK together, you would need to use const web3authCore = new Web3AuthCore({
clientId,
chainConfig,
web3AuthNetwork: "cyan",
useCoreKitKey: true // <-- this is a new addition, please update your web3auth SDK to latest.
}); |
Beta Was this translation helpful? Give feedback.
-
@shahbaz17 The example that is linked isn't available anymore. Also the I figured
However doing so i'm getting an error of
I get the error by running:
What am I missing? Thanks |
Beta Was this translation helpful? Give feedback.
-
hi i have enabled mfa with Open Login Adapter using cognito and provider returns an address. but when i implement single factor auth without openloginadaptor it returns a different address. The custom login providers (cognito) and the emails remain the same but it end up giving a different wallet address. I was thinking to get exactly the same address from the same email. Is it supposed to be so?
this provider with mfa returns address 0x5844762a298d6A63e1b302e4382a91b02FA4404D
and that provider with sfa returns address 0x35318fF704DaF98C0FC3B11AD17752d86caFDe8C
Beta Was this translation helpful? Give feedback.
All reactions