Message signing for fox wallet
Current Behavior
Message signing failing for fox wallet
Expected Behavior
connecting wallet works fine. But on calling sign message function it fails.
Steps To Reproduce
- install foxwallet android app
- select buy
- select sell in the new opened window
- in the 'you receive' select inr
- select onramp in payment channels
What package is effected by this issue?
@web3-onboard/core
Is this a build or a runtime issue?
Runtime
Package Version
"@web3-onboard/core": "^2.21.6"
Node Version
No response
What browsers are you seeing the problem on?
No response
Relevant log output
No response
Anything else?
No response
Sanity Check
- [X] If this is a build issue, I have included my build config. If this is a runtime issue, I have included reproduction steps and/or a Minimal, Reproducible Example.
This sounds like an issue with Fox wallet - can you provide me with a code example that I can look into?
I can provide these lines of code, which is for signing the message. It works fine for other wallets but for trust it just doesn't work.
const signer = await get(walletStatus)?.signer; if (!signer) { throw new Error('Signer is not available'); } const signedMsg = await signer.signMessage(authData?.messsageToSign);
authData.signedMessage = signedMsg;