Skip to content

DID resolver for Ethereum Addresses with support for key management

License

Notifications You must be signed in to change notification settings

veramolabs/ens-did-resolver

 
 

Repository files navigation

npm npm

ens DID Resolver

This is the reference implementation for the did:ens resolver.

The Ethereum community has established ENS names as their identifiers (see Etherscan) for web3 projects. This DID method specification has two purposes:

  • to wrap existing ENS names as DIDs to be interoperable with applications relying on Decentralized Identifiers
  • to define a canonical way to augment ENS names with DID capabilities such as services and verification methods.

Usage

This library should be used with did-resolver.

npm i ens-did-resolver did-resolver
import { getResolver } from 'ens-did-resolver'
import { Resolver } from 'did-resolver'

const infuraProjectId = '<create a free project at infura.io>'

const resolver = new Resolver({
  ...getResolver({ infuraProjectId })
})

const result = await resolver.resolve('did:ens:vitalik.eth')
console.dir(result.didDocument, { depth: 4 })

About

DID resolver for Ethereum Addresses with support for key management

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 96.5%
  • JavaScript 3.5%