New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@arcblock/vc

Package Overview
Dependencies
Maintainers
4
Versions
509
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@arcblock/vc

Javascript lib to work with ArcBlock Verifiable Credentials

1.8.20
Source
npm
Version published
Weekly downloads
6.7K
86.54%
Maintainers
4
Weekly downloads
 
Created
Source

Verifiable Credentials

styled with prettier docs Gitter

Javascript library to manipulate Verifiable Credentials (VC) to DID Protocol

Usage

yarn add @arcblock/vc
const VC = require('@arcblock/vc');

const issuer = fromRandom();
const owner = fromRandom();
const vc = create({
  type: 'EmailVerificationCredential',
  issuer: {
    wallet: issuer,
    name: 'DID.KYC.Email',
  },
  subject: {
    id: owner.toAddress(),
    key: 'value',
    method: 'SHA3',
  },
});

console.log(vc);

const result = VC.verify({ vc, ownerDid: owner.toAddress(), trustedIssuers: issuer.toAddress() });
console.log(result); // true

Documentation

For full documentation, checkout https://ocap-js.netlify.com

Keywords

forge

FAQs

Package last updated on 06 Apr 2021

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