Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ibm-blockchain-js

Package Overview
Dependencies
Maintainers
2
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ibm-blockchain-js - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

11

index.js

@@ -881,3 +881,3 @@ 'use strict';

ctorMsg: {
function: 'invoke',
function: name,
args: args

@@ -953,3 +953,3 @@ },

ctorMsg: {
function: 'query',
function: name,
args: args

@@ -978,6 +978,9 @@ },

}
options.success = function(statusCode, data){
console.log('[ibc-js]', name, ' - success:', data);
if(cb) cb(null, data.OK);
if(cb){
if(data && data.result) cb(null, data.result.message);
else cb(null, data.OK);
}
};

@@ -984,0 +987,0 @@ options.failure = function(statusCode, e){

{
"name": "ibm-blockchain-js",
"version": "1.1.1",
"version": "1.1.2",
"description": "A library for easily interacting with IBM Blockchain.",

@@ -5,0 +5,0 @@ "main": "index.js",

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