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

fabric-contract-api

Package Overview
Dependencies
Maintainers
1
Versions
221
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fabric-contract-api - npm Package Compare versions

Comparing version 1.4.0-snapshot.42 to 1.4.0-snapshot.43

10

lib/contract.js

@@ -27,2 +27,3 @@ /*

constructor(name) {
this.__isContract = true;
if (name && name.trim() !== '') {

@@ -36,2 +37,11 @@ this.name = name.trim();

/**
* isContract provides functionality to check if a passed object is a contract type. Enables
* checking if its a contract for when contract-api is "required" by different modules
* @param {Object} obj
*/
static _isContract(obj) {
return obj instanceof Contract || Boolean(obj.__isContract);
}
/**
* 'beforeTransaction' will be called before any of the transaction functions within your contract

@@ -38,0 +48,0 @@ * Override this method to implement your own processing. Examples of what you may wish to code

2

package.json
{
"name": "fabric-contract-api",
"version": "1.4.0-snapshot.42",
"version": "1.4.0-snapshot.43",
"tag": "unstable",

@@ -5,0 +5,0 @@ "description": "A node.js implementation of Hyperledger Fabric chaincode shim, to allow endorsing peers and user-provided chaincodes to communicate with each other",

@@ -128,4 +128,29 @@ /*

});
it ('should set the __isContract value', () => {
const sc0 = new Contract();
expect(sc0.__isContract).to.deep.equal(true);
});
});
describe('_isContract', () => {
it ('should return true when class is a contract', () => {
expect(Contract._isContract(new SCAlpha())).to.deep.equal(true);
});
it ('should return true when class is not a contract', () => {
class Something {}
expect(Contract._isContract(new Something())).to.deep.equal(false);
});
it ('should return true when class is not instanceOf contract but does have __isContract true', () => {
class Something {
constructor () {
this.__isContract = true;
}
}
expect(Contract._isContract(new Something())).to.deep.equal(true);
});
});
describe('subclass specific functioning', () => {

@@ -132,0 +157,0 @@

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