New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@rainblock/protocol

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rainblock/protocol

Protocol Buffer Definitions for Rainblock

latest
npmnpm
Version
4.1.1
Version published
Maintainers
1
Created
Source

Rainblock Protobuf Specification

This package includes protobufs for the RainBlock project.

To run tests, run

$ npm install

To install prototool and git hooks if you are running from a git repository.

$ npm test

Will run the linter with the correct configuration and check that the protobuf can be generated.

If there are linting errors, you can try running:

$ npm run format

Which will attempt to format the file so it passes the linter.

Typescript Usage

This repository automatically generates a npm package with typings you can import into your project.

After running

$ npm install @rainblock/protocol

on your project, you can import the protocol definitions, which are usable by libraries such as gRPC, like in the example below:

import { VerifierService, VerifierClient, TransactionRequest, TransactionReply, VerifierStorageService, grpc } from '@rainblock/protocol'

const client = new VerifierClient("localhost:9000", grpc.credentials.createInsecure());
const request = new TransactionRequest();
client.submitTransaction(request, (err, reply: TransactionReply) => {
    if (err) {
        console.error(err);
    } else {
        console.log(reply.getCode());
    }
});

FAQs

Package last updated on 13 Apr 2019

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