Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Enable or disable privacy mode for the wallet.
async setPrivacyEnabled(privacyEnabled: boolean): Promise<WalletSettings | undefined>
// Enable privacy mode const settings = await wallet.setPrivacyEnabled(true); console.log("Privacy enabled:", settings?.privateEnabled); // Disable privacy mode await wallet.setPrivacyEnabled(false);