Socket
Socket
Sign inDemoInstall

medisot-hyperledger-client

Package Overview
Dependencies
5
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    medisot-hyperledger-client

Hyperledger client for medisot


Version published
Weekly downloads
1
Maintainers
1
Created
Weekly downloads
 

Readme

Source


JIMI
A lightweight library that helps establish connection with the chaincode

How to use
To run the application:

  1. Install the library using:
npm install --save medisot-hyperledger-client
  1. Register the connection dependency that's required by medisot-hyperledger-client to connect with BCN:
container.bind<any>(HyperledgerClientTypes.Connection).toConstantValue(Connection);
  1. Register the medisot-hyperledger-client dependency in the application container:
import { HyperledgerClient, TYPES as HyperledgerClientTypes } from "medisot-hyperledger-client";

container.bind<HyperledgerClient>(TYPES.HyperledgerClient).to(HyperledgerClient);
  1. Inject this dependency wherever required and use it's apis:
export default class AppointmentService {
   constructor(@inject(TYPES.HyperledgerClient) private hyperledgerClient: HyperledgerClient) {}

   public async getAppointment(appointmentId: string, loggedInUser: string) {
       return this.hyperledgerClient.InvokeHandler("getAppointmentById", appointmentId, loggedInUser, null, true).then((appointmentResponse: any) => {
           if (appointmentResponse.success) {
               return AppUtils.createGenericServiceResponseObj(appointmentResponse, SERVICE_RESPONSE_STATUS.SUCCESS, null);
           } else {
               return AppUtils.createGenericServiceResponseObj(null, SERVICE_RESPONSE_STATUS.FAILED, appointmentResponse);
           }
       }).catch((err: any) => {
           return AppUtils.createGenericServiceResponseObj(null, SERVICE_RESPONSE_STATUS.FAILED, err);
       })
   }

   public async createAppointment(appointmentObj: any, username: string) {
       return this.hyperledgerClient.InvokeHandler("bookAppointment", JSON.stringify(appointmentObj), username, null, false).then((bookAppointmentResponse: any) => {
           if (bookAppointmentResponse.success) {
               return AppUtils.createGenericServiceResponseObj(bookAppointmentResponse, SERVICE_RESPONSE_STATUS.SUCCESS, null);
           } else {
               return AppUtils.createGenericServiceResponseObj(null, SERVICE_RESPONSE_STATUS.FAILED, bookAppointmentResponse);
           }
       }).catch((err: any) => {
           return AppUtils.createGenericServiceResponseObj(null, SERVICE_RESPONSE_STATUS.FAILED, err);
       })
   }
}

FAQs

Last updated on 02 Oct 2021

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