Documentation 📘
Comprehensive guides for building with εαϋμμα's decentralized identity framework.
Getting Started
εαϋμμα provides a decentralized identity framework for Web3 ecosystems. Start with our core packages:
npm install @eaymuma/identity-sdk
npm install @eaymuma/interoperability-bridge
Pro Tip:
Use our developer console at εαϋμμα/roadmap.html to test identity verification flows before deployment.
Core API Reference
IdentityVerification
Verify decentralized identities across Web2 and Web3 platforms.
IdentityVerification.generateProof({
method: 'zero-knowledge',
identityHash: userCredential
})
IdentityResolver
Map decentralized identifiers across multiple blockchain systems.
IdentityResolver.mapToEVMAddress('
credential: userProof,
provider: 'eth-mainnet'
)
Quick Examples
1. Identity Registration Flow
Register a user's identity with ZKP support
import { IdentityVerification } from '@eaymuma/identity-sdk';
const verification = new IdentityVerification();
const result = await verification.register({...});
2. Cross-Platform Credential Exchange
Share credentials between Web2 and Web3 systems
import { InteropBridge } from '@eaymuma/interoperability';
const bridge = new InteropBridge();
const web2Credential = await bridge.convert({
source: 'blockstack',
target: 'ethereum',
credential: userToken
});