Chaincode for Operators(运营商的链码手册)
原文地址:https://hyperledger-fabric.readthedocs.io/en/latest/chaincode4noah.html 链码是什么? Chaincode is a program, written in Go, and eventually in other programming languages such as Java, that implements a prescribed interface. Chaincode runs in a secured Docker container isolated from the endorsing peer process. Chaincode initializes and manages ledger state through transactions submitted by applications.链码是用Go编写的程序,最终用Java等其他编程语言编写,实现指定的接口。链码运行在与背书对等进程隔离的安全Docker容器中。链码通过应用程序提交的事务初始化和管理分类帐状态。 A chai...