Interface DidCreateOptions<TKms>

Represents options during the creation of a Decentralized Identifier (DID).

Implementations of this interface may contain properties and methods that provide specific options or metadata during the DID creation processes following specific DID method specifications.

interface DidCreateOptions<TKms> {
    verificationMethods?: DidCreateVerificationMethod<TKms>[];
}

Type Parameters

  • TKms

Hierarchy (view full)

Properties

verificationMethods?: DidCreateVerificationMethod<TKms>[]

Optional. An array of verification methods to be included in the DID document.