# Asset-Transfer-Basic as an external service See the "Chaincode as an external service" documentation for an introduction on how to run chaincode as an external service. This sample includes the external builder and launcher scripts which the peers in your Fabric network will require. **Note:** each organization in a real network would need to setup and host their own instance of the external service. For simplification purpose, in this sample we use the same instance for both organizations. ## Setting up the external builder and launcher External Builders and Launchers is an advanced feature that typically requires custom packaging of the peer image so that it contains all the tools your builder and launcher require. For this sample we use very simple (and crude) shell scripts that can be run directly within the default Fabric peer images. Open the `config/core.yaml` file at the top of the `fabric-samples` hierarchy. Note that this file comes along with the Fabric binaries, so if you don't have it, follow the [Install the Samples, Binaries and Docker Images](https://hyperledger-fabric.readthedocs.io/en/latest/install.html) instructions in the Hyperledger Fabric documentation to download the binaries and config files. Modify the field `externalBuilders` as the following: ``` externalBuilders: - path: /opt/gopath/src/github.com/hyperledger/fabric-samples/asset-transfer-basic/chaincode-external/sampleBuilder name: external-sample-builder ``` This configuration sets the name of the external builder as `externa-sample-builder`, and the path of the builder to the scripts provided in this sample. Note that this is the path within the peer container, not your local machine. To make it so you will need to modify the container compose file to mount a couple of additional volumes. To do so, open the file `test-network/docker/docker-compose-test-net.yaml`, and add to the `volumes` section of both `peer0.org1.example.com` and `peer0.org2.example.com` the following two lines: ``` - ../..:/opt/gopath/src/github.com/hyperledger/fabric-samples - ../../config/core.yaml:/etc/hyperledger/fabric/core.yaml ``` This will mount the fabric-sample builder into the peer container so that it can be found at the location specified in the config file and override the default config file so that the config file modified above is used. ## Packaging and installing Chaincode The Asset-Transfer-Basic external chaincode requires two environment variables to run, `CHAINCODE_SERVER_ADDRESS` and `CHAINCODE_ID`, which are described and set in the `chaincode.env` file. The peer needs a corresponding `connection.json` configuration file so that it can connect to the external Asset-Transfer-Basic service. The address specified in the `connection.json` must correspond to the `CHAINCODE_SERVER_ADDRESS` value in `chaincode.env`, which is `asset-transfer-basic.org1.example.com:9999` in our example. Create a `code.tar.gz` archive containing that one file and have it ready for adding to an Asset-Transfer-Basic external service package: ``` tar cfz code.tar.gz connection.json ``` Package the Asset-Transfer-Basic external service using the supplied `metadata.json` file: ``` tar cfz asset-transfer-basic-external.tgz metadata.json code.tar.gz ``` You are now ready to use the external chaincode. We will use the `test-network` sample to get a network setup and make use of it. ## Starting the test network In a different terminal, from the `test-network` sample directory starts the network using the following command: ``` ./network.sh up createChannel -c mychannel -ca ``` This starts the test network and create the channel. We will now proceed to installing our external chaincode. ## Installing the external chaincode We can't use the `test-network/network.sh` script to install our external chaincode so we will have to do a bit more work by hand but we can still leverage part of the test-network scripts to make this easier. First, get the functions to setup your environment as needed by running the following command (this assumes you are still in the `test-network` directory): ``` . ./scripts/envVar.sh ``` Install the `asset-transfer-basic-external.tar.gz` chaincode on org1: ``` setGlobals 1 ../bin/peer lifecycle chaincode install ../asset-transfer-basic/chaincode-external/asset-transfer-basic-external.tgz ``` setGlobals simply defines a bunch of environment variables suitable to act as one organization or another, org1 or org2. Install it on org2: ``` setGlobals 2 ../bin/peer lifecycle chaincode install ../asset-transfer-basic/chaincode-external/asset-transfer-basic-external.tgz ``` This will output the chaincode pakage identifier such as `basic_1.0:0262396ccaffaa2174bc09f750f742319c4f14d60b16334d2c8921b6842c090c` that you will need to use in the following commands. For convenience it is best to store it in an environment variable so it can be referenced in other commands: ``` set PKGID=basic_1.0:0262396ccaffaa2174bc09f750f742319c4f14d60b16334d2c8921b6842c090 ``` If needed, you can query the installed chaincode to get its package-id: ``` setGlobals 1 ../bin/peer lifecycle chaincode queryinstalled --peerAddresses localhost:7051 --tlsRootCertFiles organizations/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt ``` Edit the `chaincode.env` file in the `fabric-samples/asset-transfer-basic/chaincode-external` directory as necessary to set the `CHAINCODE_ID` variable to the chaincode package-id obtained above. ## Running the Asset-Transfer-Basic external service To run the service in a container, from a different terminal, build an Asset-Transfer-Basic docker image, using the supplied `Dockerfile`, using the following command in the `fabric-samples/asset-transfer-basic/chaincode-external` directory: ``` docker build -t hyperledger/asset-transfer-basic . ``` Then, start the Asset-Transfer-Basic service: ``` docker run -it --rm --name asset-transfer-basic.org1.example.com --hostname asset-transfer-basic.org1.example.com --env-file chaincode.env --network=net_test hyperledger/asset-transfer-basic ``` This will start the container and start the external chaincode service within it. ## Finish installing the Asset-Transfer-Basic external chaincode Finishing the installation of the chaincode on the test network can be done from the terminal you started the network from with the following commands (make sure the package-id is set to the right one): ``` setGlobals 2 ../bin/peer lifecycle chaincode approveformyorg -o localhost:7050 --ordererTLSHostnameOverride orderer.example.com --tls --cafile $PWD/organizations/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem --channelID mychannel --name basic --version 1.0 --package-id $PKGID --sequence 1 setGlobals 1 ../bin/peer lifecycle chaincode approveformyorg -o localhost:7050 --ordererTLSHostnameOverride orderer.example.com --tls --cafile $PWD/organizations/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem --channelID mychannel --name basic --version 1.0 --package-id $PKGID --sequence 1 ../bin/peer lifecycle chaincode commit -o localhost:7050 --ordererTLSHostnameOverride orderer.example.com --tls --cafile $PWD/organizations/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem --channelID mychannel --name basic --peerAddresses localhost:7051 --tlsRootCertFiles $PWD/organizations/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt --peerAddresses localhost:9051 --tlsRootCertFiles organizations/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt --version 1.0 --sequence 1 ``` This effectively approves the chaincode definition for both orgs and commit it using org1. This should end with an output similar to: ``` 2020-08-05 15:41:44.982 PDT [chaincodeCmd] ClientWait -> INFO 001 txid [6bdbe040b99a45cc90a23ec21f02ea5da7be8b70590eb04ff3323ef77fdedfc7] committed with status (VALID) at localhost:7051 2020-08-05 15:41:44.983 PDT [chaincodeCmd] ClientWait -> INFO 002 txid [6bdbe040b99a45cc90a23ec21f02ea5da7be8b70590eb04ff3323ef77fdedfc7] committed with status (VALID) at localhost:9051 ``` The chaincode is now operational and can be used as normal. ## Using the Asset-Transfer-Basic external chaincode From yet another terminal, go to `fabric-samples/asset-transfer-basic/application-javascript` and use the node application to test the chaincode you just installed with the following commands: ``` rm -rf wallet # in case you ran this before npm install node app.js ``` If all goes well, it should run exactly the same as described in the "Writing Your First Application" tutorial.