Creating DIDs using the Wallet2 API does not currently support accepting additional arguments, which might be needed by a specific DID registrar:
|
val did = DidService.registerByKey(req.method, key) |
Thus it is currently not possible to pass the domain and path for creating DIDs with the method did:web:
|
"web" -> DidWebCreateOptions(domain = args["domain"]?.content ?: "", path = args["path"]?.content ?: "") |
Creating DIDs using the Wallet2 API does not currently support accepting additional arguments, which might be needed by a specific DID registrar:
waltid-identity/waltid-libraries/protocols/waltid-openid4vc-wallet-server/src/main/kotlin/id/walt/wallet2/server/handlers/Wallet2RouteHandler.kt
Line 384 in 7b83728
Thus it is currently not possible to pass the
domainandpathfor creating DIDs with the methoddid:web:waltid-identity/waltid-libraries/waltid-did/src/commonMain/kotlin/id/walt/did/dids/DidService.kt
Line 197 in 7b83728