-
Two questions regarding the DID registration on any of the public testnets?
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Great questions!
BackgroundThe expected lifecycle of a The difference comes when you need to update the DID document. From the ethr-did-registry contract's perspective, gas can be supplied either by directly funding the address corresponding to the keypair (classical ethereum external account interaction) or by using meta-transactions. The How it works in veramo nowThis repository contains a NotesThe
This means that the same keypair can control multiple DIDs; each resolvable using a different ethereum network. |
Beta Was this translation helpful? Give feedback.
Great questions!
did:ethr
is used.did:ethr
protocol does not require DIDs to be registered when they are created.Background
The expected lifecycle of a
did:ethr
is that a keypair is created locally and then the public key is used to form the DID:generate keyPair
->did:ethr:${publicKey}
This fresh DID is a valid and resolvable
did:ethr
, and when it is resolved it produces a DID document containing the public key.Up until this point it is very similar to
did:key
, except for the encoding of the publicKey which in the case of did:ethr is HEX.The difference comes when you need to update the DID document.
Only then does one need to interac…