Options for signing an EVM message.

interface SignMessageOptions {
    address: `0x${string}`;
    idempotencyKey?: string;
    message: string;
}

Properties

address: `0x${string}`

The address of the account.

idempotencyKey?: string

The idempotency key.

message: string

The message to sign.