We need to set up a new chaincode directory for our contract. In your Hyperledger Fabric fabric-samples directory, navigate to the chaincode directory. By default, it will be at the following location:
/fabric-samples/chaincode/
Let's look at how to setup the contract project environment:
- In the chaincode folder, create a new folder, with the name corprem.
- In the corprem folder, create an index.js file, with the following values:
/* * SPDX-License-Identifier: Apache-2.0 */'use strict';const corprem = require('./lib/corprem');module.exports.corprem = corprem;module.exports.contracts = [ corprem ];
This will declare the corprem object, which will be used by our peer chaincode to install and instantiate ...