How to use the did-resolver.default function in did-resolver

To help you get started, we’ve selected a few did-resolver examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github 3box / 3box-js / src / replicator.js View on Github external
const pinDID = did => {
  if (!did) return
  // We resolve the DID in order to pin the ipfs object
  try {
    resolveDID(did)
    // if this throws it's not a DID
  } catch (e) {}
}
github decentralized-identity / element / packages / element-lib / src / func / resolve.js View on Github external
const updated = await syncFromBlockNumber({
      didUniqueSuffixes: [parsed.id],
      transactionTime,
      initialState: {}, // set from cache
      reducer,
      storage,
      blockchain,
    });
    const record = updated[parsed.id];
    if (record) {
      return record.doc;
    }
    return null;
  });

  return resolver.default(did);
};

did-resolver

Resolve DID documents

Apache-2.0
Latest version published 1 year ago

Package Health Score

63 / 100
Full package analysis

Similar packages