Self-sovereign identity manager — create DIDs, manage credentials,
share verifiable claims with zero-knowledge selective disclosure.
Solidus Identity is the self-sovereign identity hub of the Solidus Network. Users create W3C DIDs, receive verifiable credentials (from KYC, email, phone verification), and selectively share claims with third parties — all without a central authority.
- DID creation — Client-side Ed25519 key generation,
did:solidusmethod - Credential inbox — Receive and manage verifiable credentials
- Selective sharing — Share specific claims via QR code without revealing full credentials
- OIDC bridge — "Login with Solidus" for third-party applications
- Trust score — Reputation scoring based on credential history
- Social recovery — 3-of-5 guardian-based key recovery (planned)
- 31-page app — Full identity management interface, dark/light mode
identity/
├── apps/
│ ├── backend/ Fastify API server
│ │ └── src/routes/ 12 endpoints: auth, credentials, sharing, trust-score
│ └── frontend/ Next.js 15 application
│ └── src/app/ 31 pages with real API integration
| Endpoint | Description |
|---|---|
POST /auth/challenge |
Create DID authentication challenge |
POST /auth/verify |
Verify signed challenge |
GET /credentials |
List user's credentials |
POST /credentials/share |
Generate shareable credential presentation |
GET /did/:did |
Resolve a DID document |
POST /did/create |
Register a new DID |
GET /trust-score |
Calculate identity trust score |
| Component | Technology |
|---|---|
| Backend | Node.js, Fastify, PostgreSQL |
| Frontend | Next.js 15, React, Tailwind CSS |
| Identity | W3C DIDs, Verifiable Credentials |
| Auth | EdDSA challenge-response, OIDC bridge |
| SDK | @solidus/sdk, @solidus/auth, @solidus/jwt |
- W3C DID Core —
did:solidus:<network>:<identifier> - W3C VC Data Model v2.0 — Credential issuance and verification
- Ed25519Signature2020 — Credential proofs
- OpenID Connect — OAuth2/OIDC bridge for third-party login
Proprietary. All rights reserved. See Solidus Network for more information.