Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 713 Bytes

README.md

File metadata and controls

37 lines (25 loc) · 713 Bytes

SelfKey DID Resolver

Library for resolving DIDs in SelfKey method space

Install

npm i --save selfkey-did-resolver

Usage

The following example script shows how we can integrate the did-resolver library:

const selfkeyResolver = require('selfkey-did-resolver')
const did = 'did:key:0x62dfbf9cee9c6eded64d7e0b1e72165f0d26a7c8'

runTest = async () => {
  const doc = await selfkeyResolver(did)
  console.log(JSON.stringify(doc, undefined, 2))
}

runTest()

Alternatively you can run the script via the command line by passing the DID string as an argument:

node src/index.js did:key:0x62dfbf9cee9c6eded64d7e0b1e72165f0d26a7c8

Tests

npm run test