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