Closed melanke closed 5 months ago
I am having a strange behavior using verifyMessage with NeoLine. It's always returning false for signed messages with salt, even when copying the results of the signMessage examples it returns false with my wallet.
verifyMessage
false
const resp = await neoline.signMessage({ message: 'Hello World', }) const resp2 = await neoline.verifyMessage(resp) console.log(resp2) // {result: false}
Here is our dAPI documentation, please check the parameters.
You are right, thanks for your response, sorry for the confusion.
I am having a strange behavior using
verifyMessage
with NeoLine. It's always returningfalse
for signed messages with salt, even when copying the results of the signMessage examples it returns false with my wallet.