/** * The EBSI NP DID Method prefix. */ export const KEY_DID_METHOD_PREFIX = "did:key:"; // The content types supported by the resolver. export const DID_LD_JSON = "application/did+ld+json"; export const DID_JSON = "application/did+json"; export const SUPPORTED_CONTENT_TYPES = [DID_LD_JSON, DID_JSON];