
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
plc-did-resolver
Advanced tools
This library is intended to resolve PLC DIDs and retrieve an associated DID Document from the "PLC Directory"
It requires the did-resolver
library, which is the primary interface for resolving DIDs.
This DID Method is not considered "decentralized" at all, and will likely be replaced in the future.
The DID resolver takes the DID and retrieves a document from the PLC Directory associated with that DID.
A minimal DID Document might contain the following information:
{
"@context": ["https://www.w3.org/ns/did/v1", "https://w3id.org/security/suites/secp256k1-2019/v1"],
"id": "did:plc:wuyiqd25zhsut5a2gc46iqoi",
"alsoKnownAs": ["at://okaynick.bsky.social"],
"verificationMethod": [{
"id": "#atproto",
"type": "EcdsaSecp256k1VerificationKey2019",
"controller": "did:plc:wuyiqd25zhsut5a2gc46iqoi",
"publicKeyMultibase": "zQYEBzXeuTM9UR3rfvNag6L3RNAs5pQZyYPsomTsgQhsxLdEgCrPTLgFna8yqCnxPpNT7DBk6Ym3dgPKNu86vt9GR"
}],
"service": [{
"id": "#atproto_pds",
"type": "AtprotoPersonalDataServer",
"serviceEndpoint": "https://bsky.social"
}]
}
The resolver presents a simple resolver()
function that returns a ES6 Promise returning the DID document.
import { Resolver } from 'did-resolver'
import { getResolver } from 'plc-did-resolver'
const plcResolver = getResolver()
const didResolver = new Resolver({
...plcResolver
//...you can flatten multiple resolver methods into the Resolver
})
didResolver.resolve('did:plc:wuyiqd25zhsut5a2gc46iqoi').then(doc => console.log(doc))
// You can also use ES7 async/await syntax
;(async () => {
const doc = await didResolver.resolve('did:plc:wuyiqd25zhsut5a2gc46iqoi')
console.log(doc)
})();
FAQs
Resolve DID documents from PLC Directory
The npm package plc-did-resolver receives a total of 11 weekly downloads. As such, plc-did-resolver popularity was classified as not popular.
We found that plc-did-resolver demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.