
Security News
Feross on TBPN: How North Korea Hijacked Axios
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.
@rainblock/protocol
Advanced tools
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.
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
Protocol Buffer Definitions for Rainblock
The npm package @rainblock/protocol receives a total of 3 weekly downloads. As such, @rainblock/protocol popularity was classified as not popular.
We found that @rainblock/protocol demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.

Security News
OpenSSF has issued a high-severity advisory warning open source developers of an active Slack-based campaign using impersonation to deliver malware.

Research
/Security News
Malicious packages published to npm, PyPI, Go Modules, crates.io, and Packagist impersonate developer tooling to fetch staged malware, steal credentials and wallets, and enable remote access.