NERO
Dashboard

Create a Project

Sign up, create your first project, and get a Client ID

Create a Project

Step 1 — Sign Up

Go to nero-mpc-dashboard.vercel.app and create an account using email/password or Google OAuth.

First-time users are guided through an onboarding flow:

  1. Set your display name
  2. Confirm your email
  3. Accept Terms of Service

Step 2 — Create a Project

From the dashboard home, click Create Project (or follow the Getting Started wizard).

Fill in the project form:

FieldDescriptionDefault
Project nameA label for your app (e.g., "My DApp Production")Required
Environmentdevelopment, staging, or productiondevelopment
MPC modeDKLS (2-party threshold ECDSA)DKLS
Chain compatibilityEVM chains (Ethereum, NERO, Polygon, etc.)EVM selected

The project is created with default settings:

  • All social login providers enabled
  • Email passwordless and SMS OTP enabled
  • Default chain IDs: NERO Mainnet (1689), NERO Testnet (689), Ethereum (1), Polygon (137), Arbitrum (42161), Optimism (10)

Step 3 — Get Your Client ID

After creation, the project overview page displays your Client ID. This identifies your project in API requests.

The project overview shows quick links to:

  • API Keys
  • Authentication configuration
  • Analytics
  • Team management
  • Webhooks
  • Customization
  • Settings

Step 4 — Generate an API Key

Navigate to API Keys and click Create Key. See the API Keys page for details.

Step 5 — Use in the SDK

import { NeroMpcSDK } from "@nerochain/mpc-sdk";

const sdk = new NeroMpcSDK({
  backendUrl: "https://mpc-auth.nerochain.io",
  apiKey: "nero_sk_your_api_key_here",
  chainId: 689,
});

await sdk.initialize();

Project Settings

After creation, you can update:

  • Project name and environment
  • CORS origins — comma-separated URLs allowed to call the API from browsers
  • Chain IDs — which EVM networks your project supports
  • Delete project — soft delete (marks inactive, preserves data)

Daily Limits

Each project inherits daily limits from its plan:

LimitFreeGrowthScale
Wallet creations/day101,00010,000+
Signing operations/day505,00050,000+

On this page