mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
83 lines
2.5 KiB
Bash
Executable file
83 lines
2.5 KiB
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# Copyright IBM Corp. All Rights Reserved.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
# This script is designed to be run in the org3cli container as the
|
|
# first step of the EYFN tutorial. It creates and submits a
|
|
# configuration transaction to add org3 to the network previously
|
|
# setup in the BYFN tutorial.
|
|
#
|
|
|
|
CHANNEL_NAME="$1"
|
|
DELAY="$2"
|
|
CC_SRC_LANGUAGE="$3"
|
|
TIMEOUT="$4"
|
|
VERBOSE="$5"
|
|
NAME="$6"
|
|
: ${CHANNEL_NAME:="mychannel"}
|
|
: ${DELAY:="3"}
|
|
: ${CC_SRC_LANGUAGE:="go"}
|
|
: ${TIMEOUT:="10"}
|
|
: ${VERBOSE:="false"}
|
|
: ${NAME:="mycc"}
|
|
CC_SRC_LANGUAGE=`echo "$CC_SRC_LANGUAGE" | tr [:upper:] [:lower:]`
|
|
COUNTER=1
|
|
MAX_RETRY=5
|
|
|
|
if [ "$CC_SRC_LANGUAGE" = "go" -o "$CC_SRC_LANGUAGE" = "golang" ]; then
|
|
CC_RUNTIME_LANGUAGE=golang
|
|
CC_SRC_PATH="github.com/hyperledger/fabric-samples/chaincode/abstore/go/"
|
|
elif [ "$CC_SRC_LANGUAGE" = "javascript" ]; then
|
|
CC_RUNTIME_LANGUAGE=node # chaincode runtime language is node.js
|
|
CC_SRC_PATH="/opt/gopath/src/github.com/hyperledger/fabric-samples/chaincode/abstore/javascript/"
|
|
elif [ "$CC_SRC_LANGUAGE" = "java" ]; then
|
|
CC_RUNTIME_LANGUAGE=java
|
|
CC_SRC_PATH="/opt/gopath/src/github.com/hyperledger/fabric-samples/chaincode/abstore/java/"
|
|
else
|
|
echo The chaincode language ${CC_SRC_LANGUAGE} is not supported by this script
|
|
echo Supported chaincode languages are: go, javascript, java
|
|
exit 1
|
|
fi
|
|
|
|
# import utils
|
|
. scripts/utils.sh
|
|
|
|
echo
|
|
echo "========= Creating config transaction to add org3 to network =========== "
|
|
echo
|
|
|
|
# Fetch the config for the channel, writing it to config.json
|
|
fetchChannelConfig ${CHANNEL_NAME} config.json
|
|
|
|
# Modify the configuration to append the new org
|
|
set -x
|
|
jq -s '.[0] * {"channel_group":{"groups":{"Application":{"groups": {"Org3MSP":.[1]}}}}}' config.json ./channel-artifacts/org3.json > modified_config.json
|
|
set +x
|
|
|
|
# Compute a config update, based on the differences between config.json and modified_config.json, write it as a transaction to org3_update_in_envelope.pb
|
|
createConfigUpdate ${CHANNEL_NAME} config.json modified_config.json org3_update_in_envelope.pb
|
|
|
|
echo
|
|
echo "========= Config transaction to add org3 to network created ===== "
|
|
echo
|
|
|
|
echo "Signing config transaction"
|
|
echo
|
|
signConfigtxAsPeerOrg 1 org3_update_in_envelope.pb
|
|
|
|
echo
|
|
echo "========= Submitting transaction from a different peer (peer0.org2) which also signs it ========= "
|
|
echo
|
|
setGlobals 0 2
|
|
set -x
|
|
peer channel update -f org3_update_in_envelope.pb -c ${CHANNEL_NAME} -o orderer.example.com:7050 --tls --cafile ${ORDERER_CA}
|
|
set +x
|
|
|
|
echo
|
|
echo "========= Config transaction to add org3 to network submitted! =========== "
|
|
echo
|
|
|
|
exit 0
|