IResolve Did
interface IResolveDid
Contract for resolving a DID into a DID Document.
Typical usage:
val resolver: IResolveDid = DidResolver(httpClient)
val doc = resolver.send(IResolveDid.Options(did = "did:web:example.com"))
.document()
.orElse(null)Content copied to clipboard
Implementations should be pure resolvers (no signature verification).