@transmute/did-key-common
Version:
This module contains commont interfaces and factories for did:key.
12 lines (10 loc) • 313 B
text/typescript
import { LdVerificationMethod } from '@transmute/ld-key-pair';
export interface DidDocument {
id: string;
verificationMethod: LdVerificationMethod[];
assertionMethod?: string[];
authentication?: string[];
capabilityInvocation?: string[];
capabilityDelegation?: string[];
keyAgreement?: string[];
}