Type alias DidDocument<IdType>

DidDocument<IdType>: {
    alsoKnownAs?: string[];
    assertionMethod?: IdType[];
    authentication?: IdType[];
    capabilityDelegation?: IdType[];
    id: Did;
    keyAgreement?: IdType[];
    service?: Service<IdType>[];
    verificationMethod?: VerificationMethod<IdType>[];
}

Type Parameters

Type declaration

  • Optional alsoKnownAs?: string[]
  • Optional assertionMethod?: IdType[]
  • Optional authentication?: IdType[]
  • Optional capabilityDelegation?: IdType[]
  • id: Did
  • Optional keyAgreement?: IdType[]
  • Optional service?: Service<IdType>[]
  • Optional verificationMethod?: VerificationMethod<IdType>[]