Output of signing a message.

interface SolanaSignMessageOutput {
    signature: Uint8Array<ArrayBufferLike>;
    signatureType?: "ed25519";
    signedMessage: Uint8Array<ArrayBufferLike>;
}

Properties

signature: Uint8Array<ArrayBufferLike>

Message signature produced. If the signature type is provided, the signature must be Ed25519.

signatureType?: "ed25519"

Optional type of the message signature produced. If not provided, the signature must be Ed25519.

signedMessage: Uint8Array<ArrayBufferLike>

Message bytes that were signed. The wallet may prefix or otherwise modify the message before signing it.