BluxBlux

Wallet Connect

Enable WalletConnect support in your Blux app.

Adding the walletConnect object to your config enables WalletConnect as a login option. Once configured, users will see a Wallet Connect option in the login modal.

Usage

createConfig({
  appName: "My App",
  networks: [core.networks.mainnet],
  walletConnect: {
    projectId: "YOUR_PROJECT_ID",
    url: "https://yourapp.com",
    description: "A short description of your app",
    icons: ["https://yourapp.com/icon.png"],
  },
});

Options

OptionTypeDescription
projectIdstringYour WalletConnect project ID — get one from the WalletConnect dashboard
urlstringThe URL of your app, used to identify it during the connection flow
descriptionstringA short description of your app shown inside the wallet
iconsstring[]Array of image URLs used as your app icon in supported wallets

WalletConnect is the recommended way to support LOBSTR users, as it connects instantly without requiring the browser extension. See Exclude Wallets for more context.

On this page