1.0.0 • Published 4 years ago

hindy v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

Hyperledger Indy Client

A small library which wraps the indy-sdk.

Installation

npm install @palpatine/indy-client

Usage

import IndyClient from '@palpatine/indy-client';

const indyClient = new IndyClient('faber', 'http://localhost:8080');

await indyClient.connectAsync();
await indyClient.useWalletAsync('myWallet', '123456', true);

//create a verinym
await indyClient.addDidAsync('steward_did', '000000000000000000000000Steward1');

Output should be 35,666

Tests

npm run test

Contributing

In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.