Socket
Socket
Sign inDemoInstall

@arcblock/nft-template

Package Overview
Dependencies
8
Maintainers
4
Versions
436
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @arcblock/nft-template

Javascript lib to work with ArcBlock NFT


Version published
Weekly downloads
7
decreased by-91.46%
Maintainers
4
Created
Weekly downloads
 

Readme

Source

Verifiable Credentials

styled with prettier docs Gitter

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); // true

Documentation

For full documentation, checkout https://asset-chain.netlify.com

Keywords

FAQs

Last updated on 07 Apr 2024

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc