Use the signMessage method exported from the useSolanaWallets hook to sign a message with an Solana wallet.

signMessage: (message: Uint8Array) => Promise<Uint8Array>;

Usage

import {useSolanaWallets} from '@privy-io/react-auth/solana';

const {wallets} = useSolanaWallets();

const message = 'Hello world';
const {signature} = await wallets[0].signMessage(new TextEncoder().encode(message));

Parameters

message
string
required

Message to be signed.

Response

signature
string

The signature produced by the wallet.