Understanding Chaincode
Lets look at our first chaincode application and deploy it to our basic-network.
We'll cover the following...
Lets start with a simple chaincode to ensure we understand the basic concepts.
We will use a simple Land Record(landrec) chaincode which will do CRUD operations on basic land records.
We will be using javascript(node) as the language for our chaincode. GO is also supported though.
We will use the fabric-contract-api
node package to write our chaincode.