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

@tonomy/antelope-ssi-toolkit

Package Overview
Dependencies
Maintainers
3
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tonomy/antelope-ssi-toolkit

A toolkit allowing Antelope (formerly EOSIO) accounts to use SSI components:

  • 1.1.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-33.33%
Maintainers
3
Weekly downloads
 
Created
Source

Antelope Self-sovereign identity (SSI) Toolkit

A toolkit allowing Antelope (formerly EOSIO) accounts to use SSI components:

  • Verifiable Credentials
  • DIDComm (planned)

Install

npm i @tonomy/antelope-ssi-toolkit

Usage

Create a and verify a credential

import { createSigner, issue, verify } from '@tonomy/antelope-ssi-toolkit';
import { PrivateKey } from "@greymass/eosio";

const vc = {
    '@context': ['https://www.w3.org/2018/credentials/v1'],
    id: "https://example.com/id/1234324",
    type: ['VerifiableCredential'],
    issuer: {
        id: `did:antelope:telos:university`,
    },
    issuanceDate: (new Date()).toISOString(),
    credentialSubject: {
        degree: {
            type: 'BachelorDegree',
            name: 'Bachelor of Music'
        }
    }
}

const issuer = {
    did: "did:antelope:telos:university#active",
    signer: createSigner(PrivateKey.from("PVT_K1_2bfGi9rYsXQSXXTvJbDAPhHLQUojjaNLomdm3cEJ1XTzMqUt3V")),
    alg: 'ES256K-R'
}

const vcJwt = await issue(vc, {
    issuer
});

const isVerified = await verify(vcJwt);

Development

TSDX scaffolds your new library inside /src.

To run TSDX, use:

npm start # or yarn start

This builds to /dist and runs the project in watch mode so any edits you save inside src causes a rebuild to /dist.

To do a one-off build, use npm run build or yarn build.

To run tests, use npm test or yarn test.

Publish

npm run build
npm publish

FAQs

Package last updated on 24 Feb 2023

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc