anon-identity
Version:
Decentralized identity framework with DIDs, Verifiable Credentials, and privacy-preserving selective disclosure
20 lines • 519 B
TypeScript
export interface DIDDocument {
'@context': string[];
id: string;
verificationMethod: VerificationMethod[];
authentication?: string[];
assertionMethod?: string[];
keyAgreement?: string[];
capabilityInvocation?: string[];
capabilityDelegation?: string[];
created?: string;
updated?: string;
}
export interface VerificationMethod {
id: string;
type: string;
controller: string;
publicKeyMultibase?: string;
publicKeyJwk?: any;
}
//# sourceMappingURL=did.d.ts.map