-
Notifications
You must be signed in to change notification settings - Fork 0
/
qscc.sh
executable file
·76 lines (61 loc) · 3.21 KB
/
qscc.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
export CORE_PEER_TLS_ENABLED=true
export ORDERER_CA=${PWD}/artifacts/channel/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem
export PEER0_ORG1_CA=${PWD}/artifacts/channel/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt
export PEER0_ORG2_CA=${PWD}/artifacts/channel/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt
export FABRIC_CFG_PATH=${PWD}/artifacts/channel/config/
export CHANNEL_NAME=mychannel
setGlobalsForOrderer() {
export CORE_PEER_LOCALMSPID="OrdererMSP"
export CORE_PEER_TLS_ROOTCERT_FILE=${PWD}/artifacts/channel/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem
export CORE_PEER_MSPCONFIGPATH=${PWD}/artifacts/channel/crypto-config/ordererOrganizations/example.com/users/[email protected]/msp
}
setGlobalsForPeer0Org1() {
export CORE_PEER_LOCALMSPID="Org1MSP"
export CORE_PEER_TLS_ROOTCERT_FILE=$PEER0_ORG1_CA
export CORE_PEER_MSPCONFIGPATH=${PWD}/artifacts/channel/crypto-config/peerOrganizations/org1.example.com/users/[email protected]/msp
export CORE_PEER_ADDRESS=localhost:7051
}
setGlobalsForPeer1Org1() {
export CORE_PEER_LOCALMSPID="Org1MSP"
export CORE_PEER_TLS_ROOTCERT_FILE=$PEER0_ORG1_CA
export CORE_PEER_MSPCONFIGPATH=${PWD}/artifacts/channel/crypto-config/peerOrganizations/org1.example.com/users/[email protected]/msp
export CORE_PEER_ADDRESS=localhost:8051
}
setGlobalsForPeer0Org2() {
export CORE_PEER_LOCALMSPID="Org2MSP"
export CORE_PEER_TLS_ROOTCERT_FILE=$PEER0_ORG2_CA
export CORE_PEER_MSPCONFIGPATH=${PWD}/artifacts/channel/crypto-config/peerOrganizations/org2.example.com/users/[email protected]/msp
export CORE_PEER_ADDRESS=localhost:9051
}
setGlobalsForPeer1Org2() {
export CORE_PEER_LOCALMSPID="Org2MSP"
export CORE_PEER_TLS_ROOTCERT_FILE=$PEER0_ORG2_CA
export CORE_PEER_MSPCONFIGPATH=${PWD}/artifacts/channel/crypto-config/peerOrganizations/org2.example.com/users/[email protected]/msp
export CORE_PEER_ADDRESS=localhost:10051
}
invokeFunctions() {
# Get Transaction By tx id
setGlobalsForPeer0Org1
peer chaincode invoke \
-o localhost:7050 \
--cafile $ORDERER_CA \
--tls $CORE_PEER_TLS_ENABLED \
--peerAddresses localhost:7051 --tlsRootCertFiles $PEER0_ORG1_CA \
-C mychannel -n qscc \
-c '{"function":"GetTransactionByID","Args":["mychannel", "eb00ec055803ca538fc32637e622caa62687c30e07c84d7002ad4e73a13e71b1"]}'
# peer chaincode invoke \
# -o localhost:7050 \
# --cafile $ORDERER_CA \
# --tls $CORE_PEER_TLS_ENABLED \
# --peerAddresses localhost:7051 --tlsRootCertFiles $PEER0_ORG1_CA \
# -C mychannel -n qscc \
# -c '{"function":"GetChainInfo","Args":["mychannel"]}'
# peer chaincode invoke \
# -o localhost:7050 \
# --cafile $ORDERER_CA \
# --tls $CORE_PEER_TLS_ENABLED \
# --peerAddresses localhost:7051 --tlsRootCertFiles $PEER0_ORG1_CA \
# -C mychannel -n qscc \
# -c '{"function":"GetBlockByNumber","Args":["mychannel","2"]}'
}
invokeFunctions