Sign messages
signMessage(message: string, nonce?: string): Promise<WalletSignMessageOutput>WalletSignMessageOutput:
Name
Is Required
Description
Sign a message and retrieve a signature that represents the wallet
const MESSAGE = "Hello, Fantasys!";
const result = await wallet.signMessage(MESSAGE);
const { signature, fullMessage } = result;
// You can then verify the signatureLast updated