useSignMessage
Description
This hook provides functionality to sign an arbitrary message.
Returns
data (
Hex
): The signature generated.error (
Error | null
): An error object if the transaction failed, otherwisenull
.isPending (
boolean
): A boolean indicating whether the transaction is currently pending.isSuccess (
boolean
): A boolean indicating whether the transaction was successfully sent.isError (
boolean
): A boolean indicating whether an error occurred during the transaction process.signMessage : A function that signs a message and returns the signature.
signMessageAsync : A function that signs a message and returns a promise that resolves to the signature.
Example
Last updated