Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

itn-did-resolver

Package Overview
Dependencies
Maintainers
0
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

itn-did-resolver

Resolve DID documents for ITN Decentralized Identifiers

  • 0.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

ITN DID Resolver

This library is intended to use ITN fully self-managed Decentralized Identifiers and wrap them in a DID Document

It supports the proposed Decentralized Identifiers spec from the W3C Credentials Community Group.

It requires the DID Resolver library, which is the primary interface for resolving DIDs.

DID method

The did:itn method links the identifier cryptographically to the DID Document and through also cryptographically linked provenance information in a Distributed Ledger it ensures resolving to the latest valid version of the DID Document.

DID Document

The DID resolver takes the DID and makes http query to ITN Resolver server. The ITN Resolver server looks for requested DID in ITN CAS, proves DID Document validity from ITN Distributed Ledger and returns resolved DID Document to DID Resolver.

A minimal DID Document might contain the following information:

{
  "@context": [
    "https://www.w3.org/ns/did/v1"
  ],
  "id": "did:itn:5bFQ34F7kLe2bVzWP7te1j",
  "assertionMethod": [
    "did:itn:5bFQ34F7kLe2bVzWP7te1j#c4e60db9161a36efeb0b866c3503ec3c5b429bd156dd7b30c64bea8efb54cf35"
  ],
  "authentication": [
    "did:itn:5bFQ34F7kLe2bVzWP7te1j#c4e60db9161a36efeb0b866c3503ec3c5b429bd156dd7b30c64bea8efb54cf35"
  ],
  "keyAgreement": [
    {
      "id": "did:itn:5bFQ34F7kLe2bVzWP7te1j#5e367434275dd5f4d6a0eeb2b5a22710b588288fa5ec165e2bdb9a8e7b6e176c",
      "type": "X25519KeyAgreementKey2019",
      "controller": "did:itn:5bFQ34F7kLe2bVzWP7te1j",
      "publicKeyBase58": "Hz1Vip4r2MNFFkW7TLQvLLKjK3AnfSNNBypmvUvvSbcc"
    }
  ],
  "verificationMethod": [
    {
      "id": "did:itn:5bFQ34F7kLe2bVzWP7te1j#c4e60db9161a36efeb0b866c3503ec3c5b429bd156dd7b30c64bea8efb54cf35",
      "type": "Ed25519VerificationKey2018",
      "controller": "did:itn:5bFQ34F7kLe2bVzWP7te1j",
      "publicKeyBase58": "BPJgF3sz49umG4JrAR2Um7juqVfAUDqTLGjRYmV3oDxe"
    }
  ]
}

Resolving a DID document

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

import { Resolver } from 'did-resolver'
import { getResolver } from 'itn-did-resolver'

// getResolver() accepts a DID Resolver server url
const itnResolver = getResolver("https://resolver.itn.mobi")

const didResolver = new Resolver({
    ...itnResolver
    //...you can flatten multiple resolver methods into the Resolver
})

didResolver.resolve('did:itn:881ZoZaRvZ66N1GrSenVKc').then(doc => console.log(doc))

// You can also use ES7 async/await syntax
;(async () => {
    const doc = await didResolver.resolve('did:itn:881ZoZaRvZ66N1GrSenVKc')
    console.log(doc)
})();

Keywords

FAQs

Package last updated on 02 Sep 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc