Issue while signing data using eth_signTypedData_v3 using third party libraries. the main issue is web3auth wallet is accepting object while all other wallets accepts data as stringified object for EIP712Domain. Please refer to the same issue resolved by walletlink (coinbase wallet now).
That's why some libraries could not work properly with web3auth wallet, found this issue when working with biconomy gasless transactions related discussion https://github.com/Web3Auth/Web3Auth/discussions/504
provider.send("eth_signTypedData_v3",[userEthAddress, Data]);
in the above piece of code web3Auth wallet must accept Data as string or in both string/object
Issue while signing data using eth_signTypedData_v3 using third party libraries. the main issue is web3auth wallet is accepting object while all other wallets accepts data as stringified object for EIP712Domain. Please refer to the same issue resolved by walletlink (coinbase wallet now).
https://github.com/coinbase/coinbase-wallet-sdk/issues/60
That's why some libraries could not work properly with web3auth wallet, found this issue when working with biconomy gasless transactions related discussion https://github.com/Web3Auth/Web3Auth/discussions/504
provider.send("eth_signTypedData_v3",[userEthAddress, Data]);
in the above piece of code web3Auth wallet must accept Data as string or in both string/object