BluxBlux
Dashboard

Dashboard

Manage your app, users, and login settings from the Blux Dashboard.

The Blux Dashboard is where you manage everything about your integration that lives outside your code — your users, login providers, access rules, and analytics. Every app you build with Blux is tied to a dashboard project identified by a unique App ID.

Getting started

  1. Sign in at dashboard.blux.cc.
  2. Create an app — you'll be given an App ID.
  3. Pass that appId to createConfig (Vanilla JS) or BluxProvider (React).
<BluxProvider
  config={{
    appName: "MyApp",
    appId: "your-app-id",
    networks: [networks.mainnet],
  }}
>
  {children}
</BluxProvider>
createConfig({
  appName: "MyApp",
  appId: "your-app-id",
  networks: [core.networks.mainnet],
});

Once your app is wired to an appId, every login flows through your dashboard project — so the users, analytics, access rules, and enabled social providers you see there all apply to your live app.

For backend integrations, your project also has an App Secret. It authenticates server-to-server requests that list or look up users and verify wallet ownership. Keep it out of browser code, mobile apps, and source control. See Server API authentication for setup and examples.

The model is similar to other auth platforms: log in, grab your App ID, drop it into your config, and manage the rest from the dashboard — no redeploy needed for most changes.

What you can do

The dashboard is actively evolving — expect new controls and analytics over time.

On this page