در این قسمت ابتدا یک peer به basic network اضافه می کنیم و در ادامه برای اشنایی با کامند ها بصورت درسی یک channel ساخته و هر دو peer را عضو آن می کنیم. پس از ان یک chaincode نصب کرده و با کامند های invoke و query آشنا می شویم.
برای دیدن این ویدیو به کانال یوتیوب مراجعه نمایید : https://youtu.be/OoArzAgtZsU
دستوراتی که در این قسمت از آن ها استفاده شده است :
step1: create channel peer channel create -o orderer.example.com:7050 -c safa -f /etc/hyperledger/configtx/channel.tx step2: join channel peer channel join -b safa.block -o orderer.example.com:7050 peer channel update -o orderer.example.com:7050 -c safa -f /etc/hyperledger/configtx/Org1MSPanchors.tx step3: Install the chaincode on peer peer chaincode install -n mychain -p github.com/sacc -v 1.0 step4: Instantiate the chaincode on the channel peer chaincode instantiate -n mychain -v 1.0 -o orderer.example.com:7050 -C mychannel -c '{"Args":["name","amir"]}' step5 : peer chaincode query -C safa -n mychain -c '{"Args":["query","name"]}' step6: peer chaincode invoke -C safa -n mychain -c '{"Args":["set","family","fatemi"]}'