Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
import { useDynamicContext } from '@dynamic-labs/sdk-react-core'; const SignMessageButton = () => { const { primaryWallet } = useDynamicContext(); const signMessage = async () => { if (!primaryWallet) return; const signature = await primaryWallet.signMessage('example'); console.log('signature', signature); }; return <button onClick={signMessage}>Sign message</button>; };
Was this page helpful?