forked from IBM/FabricNodeSDK-Starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
generate-cfgtx.sh
executable file
·30 lines (25 loc) · 1.47 KB
/
generate-cfgtx.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
#!/bin/sh
CHANNEL_NAME="mychannel"
PROJPATH=$(pwd)
CLIPATH=$PROJPATH/cli/peers
echo
echo "##########################################################"
echo "######### Generating Orderer Genesis block ##############"
echo "##########################################################"
$PROJPATH/configtxgen -profile TwoOrgsGenesis -outputBlock $CLIPATH/genesis.block
echo
echo "#################################################################"
echo "### Generating channel configuration transaction 'channel.tx' ###"
echo "#################################################################"
$PROJPATH/configtxgen -profile TwoOrgsChannel -outputCreateChannelTx $CLIPATH/channel.tx -channelID $CHANNEL_NAME
cp $CLIPATH/channel.tx $PROJPATH/configuration/channel.tx
echo
echo "#################################################################"
echo "####### Generating anchor peer update for ShopOrg ##########"
echo "#################################################################"
$PROJPATH/configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate $CLIPATH/ShopOrgMSPAnchors.tx -channelID $CHANNEL_NAME -asOrg ShopOrgMSP
echo
echo "##################################################################"
echo "####### Generating anchor peer update for RepairShopOrg ##########"
echo "##################################################################"
$PROJPATH/configtxgen -profile TwoOrgsChannel -outputAnchorPeersUpdate $CLIPATH/FitCoinOrgMSPAnchors.tx -channelID $CHANNEL_NAME -asOrg FitCoinOrgMSP