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:
- Set your display name
- Confirm your email
- 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:
| Field | Description | Default |
|---|---|---|
| Project name | A label for your app (e.g., "My DApp Production") | Required |
| Environment | development, staging, or production | development |
| MPC mode | DKLS (2-party threshold ECDSA) | DKLS |
| Chain compatibility | EVM 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:
| Limit | Free | Growth | Scale |
|---|---|---|---|
| Wallet creations/day | 10 | 1,000 | 10,000+ |
| Signing operations/day | 50 | 5,000 | 50,000+ |