You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, usage code in the 3id-did-resolver's README.md doesn't match the actual code.
If I use usage code in README as below :
importThreeIdResolverfrom'@ceramicnetwork/3id-did-resolver'import{Resolver}from'did-resolver'// You need an instance of Ceramic to call getResolver.// This can be either @ceramicnetwork/core or @ceramicnetwork/http-client.// You can also set an address for your own ethr-did-registry contractconstceramic=// ...// getResolver will return an object with a key/value pair of { '3': resolver }// where resolver is a function used by the generic did resolver.constthreeIdResolver=ThreeIdResolver.getResolver(ceramic)constdidResolver=Resolver(threeIdResolver)constdoc=awaitdidResolver.resolve('did:ethr:0xf3beac30c498d9e26865f34fcaa57dbb935b0d74')console.log(doc)
It will comes the error like :
Usage code in README should be modified to :
import{getResolver}from'@ceramicnetwork/3id-did-resolver'import{Resolver}from'did-resolver'// You need an instance of Ceramic to call getResolver.// This can be either @ceramicnetwork/core or @ceramicnetwork/http-client.// You can also set an address for your own ethr-did-registry contractconstceramic=// ...// getResolver will return an object with a key/value pair of { '3': resolver }// where resolver is a function used by the generic did resolver.constthreeIdResolver=getResolver(ceramic)constdidResolver=newResolver(threeIdResolver)constdoc=awaitdidResolver.resolve('did:ethr:0xf3beac30c498d9e26865f34fcaa57dbb935b0d74')console.log(doc)
The text was updated successfully, but these errors were encountered:
Hi, usage code in the 3id-did-resolver's README.md doesn't match the actual code.
If I use usage code in README as below :
It will comes the error like :
Usage code in README should be modified to :
The text was updated successfully, but these errors were encountered: