我想在现有的VSCC和ESCC中分别添加一些额外的验证和认可逻辑。是否有关于如何编辑和部署我的自定义VSCC和ESCC到Hyperledger Fabric的文档?
答案 0 :(得分:6)
所有系统链代码,特别是VSCC和ESCC,都应该实现Chaincode
接口:
// Chaincode interface must be implemented by all chaincodes. The fabric runs
// the transactions by calling these functions as specified.
type Chaincode interface {
// Init is called during Instantiate transaction after the chaincode container
// has been established for the first time, allowing the chaincode to
// initialize its internal data
Init(stub ChaincodeStubInterface) pb.Response
// Invoke is called to update or query the ledger in a proposal transaction.
// Updated state variables are not committed to the ledger until the
// transaction is committed.
Invoke(stub ChaincodeStubInterface) pb.Response
}
目前,所有系统链代码都静态编译为对等代码并列在importsysccs.go文件中。此外,必须在链代码部分的core.yaml
文件中启用它们,例如:
chaincode:
# system chaincodes whitelist. To add system chaincode "myscc" to the
# whitelist, add "myscc: enable" to the list below, and register in
# chaincode/importsysccs.go
system:
cscc: enable
lscc: enable
escc: enable
vscc: enable
qscc: enable
接下来,您将实例化您的链代码,并希望提供自定义VSCC和ESCC,您需要将它们的名称提供给LSCC。例如,如果您将使用peer cli,则可以执行以下操作:
peer chaincode instantiate -o localhost:7050 -n myCC -v 1.0 -C mychannel -c '{"Args": ["init"]}' --vscc myVSCC --escc myESCC
答案 1 :(得分:2)
VSCC和ESCC是系统链代码,接口与链代码完全相同,所以请查看链代码文档或转到VSCC source code。您可以添加自己的验证系统链代码并将其与链代码相关联。
系统链代码是使用对等可执行文件构建的,不会通过事务安装/实例化进程。它在对等体启动时加载,因此需要在core / scc / importsysccs.go中进行一些注册。看看 systemChaincodes 变量,您可以看到其他人的注册方式。