Options for signing a Solana message.

interface SignMessageOptions {
    address: string;
    idempotencyKey?: string;
    message: string;
}

Properties

address: string

The address of the account.

idempotencyKey?: string

The idempotency key.

message: string

The message to sign.