mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-21 09:05:10 +00:00
Update with Java Contract Change-Id: I1a70473f038576d741c8c9ac83e527b5e51e88ca Signed-off-by: Matthew B. White <whitemat@uk.ibm.com> [FAB-15213] Update Commercial Paper for Java Change-Id: Ie116962a6c3952e52269323492f5f292e9b65e95 Signed-off-by: Matthew B. White <whitemat@uk.ibm.com>
45 lines
1.5 KiB
Bash
Executable file
45 lines
1.5 KiB
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
function _exit(){
|
|
printf "Exiting:%s\n" "$1"
|
|
exit -1
|
|
}
|
|
|
|
# Where am I?
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )"
|
|
|
|
cd "${DIR}/organization/magnetocorp/configuration/cli"
|
|
docker-compose -f docker-compose.yml up -d cliMagnetoCorp
|
|
|
|
echo "
|
|
Install and Instantiate a Smart Contract in either langauge
|
|
|
|
JavaScript Contract:
|
|
|
|
docker exec cliMagnetoCorp peer chaincode install -n papercontract -v 0 -p /opt/gopath/src/github.com/contract -l node
|
|
docker exec cliMagnetoCorp peer chaincode instantiate -n papercontract -v 0 -l node -c '{\"Args\":[\"org.papernet.commercialpaper:instantiate\"]}' -C mychannel -P \"AND ('Org1MSP.member')\"
|
|
|
|
Java Contract:
|
|
|
|
docker exec cliMagnetoCorp peer chaincode install -n papercontract -v 0 -p /opt/gopath/src/github.com/contract-java -l java
|
|
docker exec cliMagnetoCorp peer chaincode instantiate -n papercontract -v 0 -l java -c '{\"Args\":[\"org.papernet.commercialpaper:instantiate\"]}' -C mychannel -P \"AND ('Org1MSP.member')\"
|
|
|
|
|
|
Run Applications in either langauage (can be different from the Smart Contract)
|
|
|
|
JavaScript Client Aplications:
|
|
|
|
To add identity to the wallet: node addToWallet.js
|
|
To issue the paper : node issue.js
|
|
|
|
Java Client Applications:
|
|
|
|
(remember to build the Java first with 'mvn')
|
|
|
|
To add identity to the wallet: java addToWallet
|
|
To issue the paper : java issue
|
|
"
|
|
|
|
echo "Suggest that you change to this dir> cd ${DIR}/organization/magnetocorp/"
|