January 2020
Intermediate to advanced
530 pages
11h 11m
English
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:
/* * 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 ...
Read now
Unlock full access