-
Notifications
You must be signed in to change notification settings - Fork 204
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create IndyVdrSovDidResolver In AFJ #1238
Comments
I'm on it (along with |
BTW do you think it does not make any sense to include an IndyVdrSovDidRegistrar? I was thinking on it just to keep the exact same functionality as Indy SDK with shared components, but according to #1192 it seems it wouldn't be needed. |
When interacting with other agents we should support A So the only complexity here is that what If i want to use Makes sense? |
did:sov and did:indy have different “verkey to identifier” algorithms. Does that matter to your discussion? See: https://hyperledger.github.io/indy-did-method/#nym-transaction-version and the next section on backwards compatibility. |
I would assume all |
Yes. Given the initial verkey (on the ledger) and ledger of the |
Yes I think so. I've seen that IndySdkSovRegistrar is already storing created DIDs in a did:indy qualified form, so it will be quite straightforward to just support the new method. My concern was mainly because, if I understand correctly, to register DIDs using did:indy there are a few changes needed in both client libraries (indy-vdr in this case) and indy nodes that are not available yet (at least not in their main branches), so probably one of the goals was to just match 1:1 indy-sdk features until everything is ready. However it's true that 99% of people are using AFJ in edge/mobile environments and also not so many are creating public DIDs with endpoints, so the impact of not having this would be very low. BTW do you know if are there any deployed instances of Indy networks supporting all these new did:indy features (i.e. using 1.13.x indy nodes? I've tried resolving the example did:indy DIDs from Universal Resolver but don't seem to be using this new |
All did:sov dids will have a direct mapping to a did:indy did, so in theory the did:indy specification is an extension of the previous did:sov spec. That's why I don't think it's an issue to already start using the new format internally. I think Andrew wanted to do a new release for indy-vdr soon with did indy support.
I think the nodes are up-to-date (@swcurran is that true?), however there's no clients that support it yet. |
Published indy-vdr artifacts do not support did:indy, but the support is in a dev branch that has not been merged. Existing indy networks (Sovrin, Indicio, etc.) have just received a release candidate that will allow upgrading to supporting did:indy. I think the networks will be aggressive at moving the networks to the new release, as it is long overdue. |
Create a Decentralized Identifier resolver for resolving Hyperledger Indy according to the [Indy DID Method Specification
(https://hyperledger.github.io/indy-did-method/#indy-did-method-identifiers) and the legacy Sovrin DID Method Specification.
Although they are similar it is probably best to create two implementations, that leverage the same underlying utils and methods.
IndyVdrSovDidResolver
in the indy-vdr package. For the implementation you can copy theIndySdkSovDidResolver
(from the core pacakge, that is more up to date). and adapt it work with the newIndyVdrPoolService
andIndyVdrPool
. The utils (such as thedidSovUtils
can be copied. It should be possible to resolve adid:sov
did.IndyVdrSovDidResolver
is exported from theindy-vdr
index fileThe text was updated successfully, but these errors were encountered: