github.com/kchristidis/fabric@v1.0.4-0.20171028114726-837acd08cde1/examples/chaincode/chaintool/example02/chaincode.yaml (about) 1 # Copyright IBM Corp. All Rights Reserved. 2 # 3 # SPDX-License-Identifier: Apache-2.0 4 # 5 6 7 # ---------------------------------- 8 # chaincode example02 9 # ---------------------------------- 10 # 11 # Copyright (C) 2016 - Hyperledger 12 # All rights reserved 13 # 14 15 Schema: 1 16 Name: org.hyperledger.chaincode.example02 17 Version: 0.1-SNAPSHOT 18 19 Platform: 20 Name: org.hyperledger.chaincode.golang 21 Version: 1 22 23 Provides: [self] # 'self' is a keyword that means there should be $name.cci (e.g. org.hyperledger.chaincode.example02.cci) 24 25 26 27 28 29 30 31 32 33 34