hypns-did-resolver

1.0.3 • Public • Published

Hypns-did-resolver

Decentralized resolver of HyPNS DIDs

Decentralized Identity Standards

See: decentralized-identity/did-resolver

Usage

This is the HyPNS version of ethr DID Resolver, for those who don't like to pay gas fees every time a DID changes.

Implements the interface at decentralized-identity/did-resolver which allows DID method implementors to release npm packages that applications can add.

Exports a resolver function and shows how to configure it in a local resolver object.

Optionally pass in your own hypns node or let the resolver make one for you, and get those DIDs resolved!

Uses js-did-hypns under the hood.

Exported resolver function

import { Resolver } from 'did-resolver'
import hypnsResolve from 'hypns-did-resolver'

//returns an object of { methodName: resolveFunction}
hypnsResolver = hypnsResolve.getResolver({ hypnsNode? }) // hypnsNode optional

//If you are using one method you can simply pass the result of getResolver( into the constructor
const resolver = new Resolver(hypnsResolver)

Resolve a DID Document

The resolver presents a simple resolve() function that returns a ES6 Promise returning the DID document.

resolver.resolve('did:hypns:DEADBEEFDEADBEEFDEADBEEFDEADBEEF/some/path#fragment=123').then(doc => console.log)

// You can also use ES7 async/await syntax
const doc = await resolver.resolve('did:hypns:DEADBEEFDEADBEEFDEADBEEFDEADBEEF/some/path#fragment=123')

Test

You can see an example usage and run the test as node test.mjs or npm run test and check out the console. It creates a new DID, publishes it to HyPNS, then resolves that DID Doc back for you.

Caching

Resolving DID Documents can be expensive. OH WAIT, THAT'S FOR BLOCKCHAIN. Hypns is free since it uses hypercore-protocol and it's self hosted by you and your friends. No need to cache, it's already done for you.

But you can still enable the cache.

Package Sidebar

Install

npm i hypns-did-resolver

Weekly Downloads

2

Version

1.0.3

License

ISC

Unpacked Size

5.39 kB

Total Files

4

Last publish

Collaborators

  • douganderson444