UNPKG

dwnpm

Version:

Decentralized Registry Package Manager (DRPM) helps developers publish, install, find and manage Decentralized Packages (DPKs) published to Decentralized Web Nodes (DWNs). DRPM does this by looking up a Decentralized Identifier (DID) to find its DID docum

11 lines 484 B
import { LocalKeyManager } from '@web5/crypto'; import { DidWeb } from '@web5/dids'; export class DidWebFacade extends DidWeb { static async create({ keyManager = new LocalKeyManager(), options = {} } = {}) { throw new Error('Method not implemented.' + keyManager + options); } static async getSigningMethod({ didDocument, methodId }) { throw new Error('Method not implemented.' + didDocument + methodId); } } //# sourceMappingURL=did-web-facade.js.map