-
Notifications
You must be signed in to change notification settings - Fork 1
/
deployChaincode.sh
212 lines (166 loc) · 7 KB
/
deployChaincode.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
. ./envVar.sh
fileName=$1
presetup(){
echo Vendoring Go dependencies ...
pushd ./artifacts/src/github.com/$fileName/go
GO111MODULE=on go mod vendor
popd
echo Finished vendoring Go dependencies
}
presetup
CHANNEL_NAME="mychannel"
CC_RUNTIME_LANGUAGE="golang"
VERSION="1"
CC_SRC_PATH="./artifacts/src/github.com/${fileName}/go"
CC_NAME=$fileName
packageChaincode(){
rm -rf ${CC_NAME}.tar.gz
setGlobalsForPeer0Org1
peer lifecycle chaincode package ${CC_NAME}.tar.gz \
--path ${CC_SRC_PATH} --lang ${CC_RUNTIME_LANGUAGE} \
--label ${CC_NAME}_${VERSION}
echo "===================== Chaincode is packaged on peer0.org1 ===================== "
}
# packageChaincode
installChaincode(){
setGlobalsForPeer0Org1
peer lifecycle chaincode install ${CC_NAME}.tar.gz
echo "===================== Chaincode is installed on peer0.org1 ===================== "
setGlobalsForPeer1Org1
peer lifecycle chaincode install ${CC_NAME}.tar.gz
echo "===================== Chaincode is installed on peer1.org1 ===================== "
setGlobalsForPeer0Org2
peer lifecycle chaincode install ${CC_NAME}.tar.gz
echo "===================== Chaincode is installed on peer0.org2 ===================== "
setGlobalsForPeer1Org2
peer lifecycle chaincode install ${CC_NAME}.tar.gz
echo "===================== Chaincode is installed on peer1.org2 ===================== "
}
# installChaincode
queryInstalled(){
setGlobalsForPeer0Org1
peer lifecycle chaincode queryinstalled >&log.txt
cat log.txt
PACKAGE_ID=$(sed -n "/${CC_NAME}_${VERSION}/{s/^Package ID: //; s/, Label:.*$//; p;}" log.txt)
echo PackageID is ${PACKAGE_ID}
echo "===================== Query installed successful on peer0.org1 on channel ===================== "
}
# queryInstalled
approveForMyOrg1(){
setGlobalsForPeer0Org1
peer lifecycle chaincode approveformyorg -o localhost:7050 \
--ordererTLSHostnameOverride orderer.example.com --tls $CORE_PEER_TLS_ENABLED \
--cafile $ORDERER_CA --channelID $CHANNEL_NAME --name ${CC_NAME} --version ${VERSION} \
--init-required --package-id ${PACKAGE_ID} --sequence ${VERSION}
echo "===================== chaincode approved from org 1 ===================== "
}
# approveForMyOrg1
# --signature-policy "OR ('Org1MSP.member')"
# --peerAddresses localhost:7051 --tlsRootCertFiles $PEER0_ORG1_CA --peerAddresses localhost:9051 --tlsRootCertFiles $PEER0_ORG2_CA
# --peerAddresses peer0.org1.example.com:7051 --tlsRootCertFiles $PEER0_ORG1_CA --peerAddresses peer0.org2.example.com:9051 --tlsRootCertFiles $PEER0_ORG2_CA
#--channel-config-policy Channel/Application/Admins
# --signature-policy "OR ('Org1MSP.peer','Org2MSP.peer')"
checkCommitReadyness(){
setGlobalsForPeer0Org1
peer lifecycle chaincode checkcommitreadiness \
--channelID $CHANNEL_NAME --name ${CC_NAME} --version ${VERSION} \
--sequence ${VERSION} --output json --init-required
echo "===================== checking commit readyness from org 1 ===================== "
}
# checkCommitReadyness
approveForMyOrg2(){
setGlobalsForPeer0Org2
peer lifecycle chaincode approveformyorg -o localhost:7050 \
--ordererTLSHostnameOverride orderer.example.com --tls $CORE_PEER_TLS_ENABLED \
--cafile $ORDERER_CA --channelID $CHANNEL_NAME --name ${CC_NAME} \
--version ${VERSION} --init-required --package-id ${PACKAGE_ID} \
--sequence ${VERSION}
echo "===================== chaincode approved from org 2 ===================== "
}
# approveForMyOrg2
checkCommitReadyness(){
setGlobalsForPeer0Org1
peer lifecycle chaincode checkcommitreadiness --channelID $CHANNEL_NAME --peerAddresses localhost:7051 --tlsRootCertFiles $PEER0_ORG1_CA --name ${CC_NAME} --version ${VERSION} --sequence ${VERSION} --output json --init-required
echo "===================== checking commit readyness from org 1 ===================== "
}
# checkCommitReadyness
commitChaincodeDefination(){
setGlobalsForPeer0Org1
peer lifecycle chaincode commit -o localhost:7050 --ordererTLSHostnameOverride orderer.example.com \
--tls $CORE_PEER_TLS_ENABLED --cafile $ORDERER_CA \
--channelID $CHANNEL_NAME --name ${CC_NAME} \
--peerAddresses localhost:7051 --tlsRootCertFiles $PEER0_ORG1_CA \
--peerAddresses localhost:9051 --tlsRootCertFiles $PEER0_ORG2_CA \
--version ${VERSION} --sequence ${VERSION} --init-required
}
# commitChaincodeDefination
queryCommitted(){
setGlobalsForPeer0Org1
peer lifecycle chaincode querycommitted --channelID $CHANNEL_NAME --name ${CC_NAME}
}
# queryCommitted
chaincodeInvokeInit(){
setGlobalsForPeer0Org1
peer chaincode invoke -o localhost:7050 \
--ordererTLSHostnameOverride orderer.example.com \
--tls $CORE_PEER_TLS_ENABLED --cafile $ORDERER_CA \
-C $CHANNEL_NAME -n ${CC_NAME} \
--peerAddresses localhost:7051 --tlsRootCertFiles $PEER0_ORG1_CA \
--peerAddresses localhost:9051 --tlsRootCertFiles $PEER0_ORG2_CA \
--isInit -c '{"function":"initLedger","Args":[]}'
}
# chaincodeInvokeInit
chaincodeInvoke(){
# setGlobalsForPeer0Org1
# peer chaincode invoke -o localhost:7050 --ordererTLSHostnameOverride orderer.example.com \
# --tls $CORE_PEER_TLS_ENABLED --cafile $ORDERER_CA -C $CHANNEL_NAME -n ${CC_NAME} \
# --peerAddresses localhost:7051 --tlsRootCertFiles $PEER0_ORG1_CA \
# --peerAddresses localhost:9051 --tlsRootCertFiles $PEER0_ORG2_CA \
# -c '{"function":"initLedger","Args":[]}'
setGlobalsForPeer0Org1
## Create Car
# peer chaincode invoke -o localhost:7050 \
# --ordererTLSHostnameOverride orderer.example.com \
# --tls $CORE_PEER_TLS_ENABLED \
# --cafile $ORDERER_CA \
# -C $CHANNEL_NAME -n ${CC_NAME} \
# --peerAddresses localhost:7051 \
# --tlsRootCertFiles $PEER0_ORG1_CA \
# --peerAddresses localhost:9051 --tlsRootCertFiles $PEER0_ORG2_CA $PEER_CONN_PARMS \
# -c '{"function": "CreateCar","Args":["Car-ABCDEEE", "Audi", "R8", "Red", "Pavan"]}'
## Change car owner
peer chaincode invoke -o localhost:7050 \
--ordererTLSHostnameOverride orderer.example.com \
--tls $CORE_PEER_TLS_ENABLED \
--cafile $ORDERER_CA \
-C $CHANNEL_NAME -n ${CC_NAME} \
--peerAddresses localhost:7051 --tlsRootCertFiles $PEER0_ORG1_CA \
--peerAddresses localhost:9051 --tlsRootCertFiles $PEER0_ORG2_CA \
-c '{"function": "","Args":[]}'
}
# chaincodeInvoke
chaincodeQuery(){
setGlobalsForPeer0Org1
# Query all cars
# peer chaincode query -C $CHANNEL_NAME -n ${CC_NAME} -c '{"Args":["queryAllCars"]}'
# Query Car by Id
peer chaincode query -C mychannel -n users -c '{"function": "QueryAllBossId","Args":[""]}'
#'{"Args":["GetSampleData","Key1"]}'
}
# chaincodeQuery
# Run this function if you add any new dependency in chaincode
# presetup
packageChaincode
installChaincode
queryInstalled
approveForMyOrg1
checkCommitReadyness
approveForMyOrg2
checkCommitReadyness
commitChaincodeDefination
queryCommitted
chaincodeInvokeInit
sleep 5
# chaincodeInvoke
sleep 3
# chaincodeQuery