Javascript library to manipulate Verifiable Credentials (VC) to DID Protocol
TODO: deprecated this package
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.address,
key: 'value',
method: 'SHA3',
},
});
console.log(vc);
const result = VC.verify({ vc, ownerDid: owner.address, trustedIssuers: issuer.address });
console.log(result);
Documentation
For full documentation, checkout https://asset-chain.netlify.com