Skip to main content
Gets the current wallet settings.

Method Signature

async getWalletSettings(): Promise<WalletSettings | undefined>

Returns

settings
WalletSettings | undefined
required
Current wallet settings, or undefined if not available

Example

const settings = await wallet.getWalletSettings();
if (settings) {
  console.log("Privacy enabled:", settings.privateEnabled);
}