Interface VerifySignedMessageResult

Represents the result of checking the validity of a signed message.

interface VerifySignedMessageResult {
    isValid: boolean;
    address: string;
}

Properties

Properties

isValid: boolean

Indicates whether the message signature is valid.

address: string

The wallet address associated with the signature.