Hyperledger Fabric sample Decentralized Energy on IBM Blockchain Platform
This code pattern demonstrates setting up a network on the IBM Blockchain Platform and deploying the Decentralized smart contract on the network. Next, we generate client-side certificates so the developer can subsequently enroll an application identity and then submit transactions on the smart contract. The application is setup with a Node.js server using the Fabric Node SDK to process requests to the network.
A key application of Blockchain being currently explored is a Decentralized Energy network. The idea stems from a neighborhood where certain Residents are producing energy through Solar panels or other means, and can sell excess energy to Residents needing energy. The transactions would be based on coins in each Resident's account. As per a pre-determined contract and rate, the coins would be debited from the consumer and credited to the producer, for a certain billing period. Each transaction would need to be atomic and added to a Blockchain ledger for trust and verification. The network can include Banks to transact coins for Fiat currency (USD). The network can have Utility Company who can buy or provide energy through the network.
The network consists of Residents, Banks and Utility Companies. Residents can exchange coins for energy among each other. The application assumes a pre-paid system where transactions occur after the energy is consumed and the values are updated. The Resident can exchange coins for Fiat money (USD) with Banks on the network. The Residents can also transact coins for energy with a Utility company on the network.
The code pattern demonstrates how a Node.js smart contract can be packaged using the IBM Blockchain Platform Extension for VS Code. Then, using the extension, you can set up a local instance of the Hyperledger Fabric network, on which you can install and instantiate the contract. Lastly, the application is setup with a Node.js server using the Fabric Node SDK to process transactions that communicate with the network.
When you have completed this code pattern, you will understand how to:
- Package the smart contract using IBM Blockchain Platform Extension for VS Code
- Setup a Hyperledger Fabric network on IBM Blockchain Platform
- Install and instantiate smart contract package onto the IBM Blockchain Platform
- Develop a Node.js server with the Hyperledger Fabric SDK to interact with the deployed network
- Interact with the contract and execute transactions using the SDK.
- The Blockchain Operator clones the GitHub repo with the Decentralized Energy smart contract.
- The Blockchain Operator uses the IBM Blockchain VSCode Extension to package the smart contract.
- The Blockchain Operator creates a IBM Blockchain Platform 2Install chaincode on the peer node.
- The IBM Blockchain Platform creates a Hyperledger Fabric network onto a IBM Cloud Kubernetes Service, enabling us to install and instantiate the Decentralized Energy smart contract on the network.
- The Decentralized Energy web app uses the Hyperledger Fabric Node.js SDK to submit transactions to the Hyperledger Fabric network running on IBM Cloud.
- The Residents, Banks, and Utility Companies interact with the Decentralized Energy web-app and all transaction details are saved onto the IBM Blockchain Platform, unbeknown to the end-user.
- IBM Blockchain Platform Gives you total control of your blockchain network with a user interface that can simplify and accelerate your journey to deploy and manage blockchain components on the IBM Cloud Kubernetes Service.
- IBM Cloud Kubernetes Service Creates a cluster of compute hosts and deploys highly available containers. A Kubernetes cluster lets you securely manage the resources that you need to quickly deploy, update, and scale applications.
- IBM Blockchain Platform Extension for VS Code Designed to assist users in developing, testing, and deploying smart contracts -- including connecting to Hyperledger Fabric environments.
- Hyperledger Fabric v1.4 is a platform for distributed ledger solutions, underpinned by a modular architecture that delivers high degrees of confidentiality, resiliency, flexibility, and scalability.
- Node.js is an open source, cross-platform JavaScript run-time environment that executes server-side JavaScript code.
- IBM Cloud account
- Node v8.x or v10.x and npm v6.x or greater
- VSCode version 1.38.0 or greater
- IBM Blockchain Platform Extension for VSCode
Follow these steps to set up and run this code pattern. The steps are described in detail below.
- Clone the repo
- Package the smart contract
- Create IBM Cloud services
- Build a network
- Deploy Decentralized Energy Smart Contract on the network
- Connect application to the network
- Run the application
Clone this repository in a folder your choice:
git clone https://github.com/IBM/decentralized-energy-fabric-on-IBP20
We will use the IBM Blockchain Platform extension to package the smart contract.
-
Open Visual Studio code and open the
contract
folder from Decentralized Energy repository that was cloned earlier. -
Press the
F1
key to see the different VS code options. ChooseIBM Blockchain Platform: Package Open Project
.
- Click the
IBM Blockchain Platform
extension button on the left. This will show the packaged contracts on top and the blockchain connections on the bottom.
-
Next, right click on the packaged contract (in this case, select decentralized-energy@0.0.1) to export it and choose
Export Package
. -
Choose a location on your machine and save
.cds
file. We will deploy this smart contract package on the IBM Blockchain Platform service in a later step.
Now, we will start creating our Hyperledger Fabric network on the IBM Cloud.
- Create the IBM Cloud Kubernetes Service. You can find the service in the
Catalog
. For this code pattern, we can use theFree
cluster, and give it a name. Note, that the IBM Cloud allows one instance of a free cluster which expires after 30 days. Note: it could take 20 minutes for the IBM Cloud Kubernetes Service setup to complete.
- Create the IBM Blockchain Platform service on the IBM Cloud. You can find the service in the
Catalog
, and give it a name.
- After your kubernetes cluster is up and running, you can deploy your IBM Blockchain Platform on the cluster. Again - wait for the IBM Cloud Kubernetes service to indicate it was deployed. The IBM Blockchain Platform service walks through few steps and finds your cluster on the IBM Cloud to deploy the service on.
- Once the Blockchain Platform is deployed on the Kubernetes cluster, you can launch the console to start configuring your blockchain network.
We will build a network as provided by the IBM Blockchain Platform documentation. This will include creating a channel with a single peer organization with its own MSP and CA (Certificate Authority), and an orderer organization with its own MSP and CA. We will create the respective identities to deploy peers and operate nodes.
- Navigate to the Nodes tab in the left navigation and click Add Certificate Authority.
- Click Create an IBM Cloud Certificate Authority and Next.
- Give it a CA display name of
Org1 CA
and click Next. - Specify an CA Administrator Enroll ID of
admin
and CA Administrator Enroll Secret ofadminpw
, then click Next. - Review the summary and click Add Certificate Authority.
- In the Nodes tab, select the Org1 CA once it is running (indicated by the green box in the tile).
- Click Associate identity on the CA overview panel.
- On the side panel, select Enroll ID.
- Provide an Enroll ID of
admin
and an Enroll secret ofadminpw
. Use the default value ofOrg1 CA Identity
for the Identity display name. - Click Associate identity to add the identity into your wallet and associate the admin identity with the Org1 CA.
- Select the Org1 CA Certificate Authority and ensure the
admin
identity that was created for the CA is visible in the table. - We will register an admin for our organization "org1". Click on the Register User button. Give an Enroll ID of
org1admin
, and Enroll Secret oforg1adminpw
. Set the Type for this identity asclient
. We can specify to Use root affiliation or uncheck this field and select from any of the affiliated organizations from the drop-down list. We will leave the Maximum enrollments field blank. Click Next. - We will not be adding any attributes to this user. Click Register user.
- We will repeat the process to create an identity of the peer. Click on the Register User button. Give an Enroll ID of
peer1
, and Enroll Secret ofpeer1pw
. Set the Type for this identity aspeer
. We can specify to Use root affiliation or uncheck this field and select from any of the affiliated organizations from the drop-down list. Click Next. - We will not be adding any attributes to this user. Click Register user.
- Navigate to the Organizations tab in the left navigation and click Create MSP definition.
- Enter the MSP Display name as
Org1MSP
and an MSP ID ofOrg1MSP
. - Under Root Certificate Authority details, specify the peer CA that we created
Org1 CA
as the root CA for the organization. - Give the Enroll ID and Enroll secret for your organization admin,
org1admin
andorg1adminpw
. Then, give the Identity name asOrg1 Admin
. - Click the Generate button to enroll this identity as the admin of your organization and export the identity to the wallet. Click Export to export the admin certificates to your file system. Finally click Create MSP definition.
- Navigate to the Nodes tab in the left navigation and click Add peer.
- Click Create an IBM Cloud peer and then click Next.
- Give the Peer display name as
Peer Org1
and click Next. - On the next screen, select
Org1 CA
as the Certificate Authority. Then, give the Peer enroll ID and Peer enroll secret for the peer identity that you created for your peer, that is,peer1
, andpeer1pw
. Select the Organization MSP asOrg1MSP
, from the drop-down list. Leave the TLS CSR hostname blank. Click Next. - The next step is to Associate an identity with this peer to make it the admin of your peer. Select your peer admin identity
Org1 Admin
and click Next. - Review the summary and click Add peer.
- Navigate to the Nodes tab in the left navigation and click Add Certificate Authority.
- Click Create an IBM Cloud Certificate Authority and Next.
- Give it a CA display name of
Orderer CA
and click Next. - Specify an CA Administrator Enroll ID of
admin
and CA Administrator Enroll Secret ofadminpw
, then click Next. - Review the summary and click Add Certificate Authority.
- In the Nodes tab, select the Orderer CA once it is running (indicated by the green box in the tile).
- Click Associate identity on the CA overview panel.
- On the side panel, select Enroll ID.
- Provide an Enroll ID of
admin
and an Enroll secret ofadminpw
. Use the default value ofOrderer CA Identity
for the Identity display name. - Click Associate identity to add the identity into your wallet and associate the admin identity with the Orderer CA.
- Select the Orderer CA Certificate Authority and ensure the
admin
identity that was created for the CA is visible in the table. - We will register an admin for the "orderer" organization. Click on the Register User button. Give an Enroll ID of
ordereradmin
, and Enroll Secret ofordereradminpw
. Set the Type for this identity asclient
. We can specify to Use root affiliation or uncheck this field and select from any of the affiliated organizations from the drop-down list. We will leave the Maximum enrollments field blank. Click Next. - We will not be adding any attributes to this user. Click Register user.
- We will repeat the process to create an identity of the orderer. Click on the Register User button. Give an Enroll ID of
orderer1
, and Enroll Secret oforderer1pw
. Set the Type for this identity asorderer
. We can specify to Use root affiliation or uncheck this field and select from any of the affiliated organizations from the drop-down list. Click Next. - We will not be adding any attributes to this user. Click Register user.
- Navigate to the Organizations tab in the left navigation and click Create MSP definition.
- Enter the MSP Display name as
OrdererMSP
and an MSP ID ofOrdererMSP
. - Under Root Certificate Authority details, specify the peer CA that we created
Orderer CA
as the root CA for the organization. - Give the Enroll ID and Enroll secret for your organization admin,
ordereradmin
andordereradminpw
. Then, give the Identity name asOrderer Admin
. - Click the Generate button to enroll this identity as the admin of your organization and export the identity to the wallet. Click Export to export the admin certificates to your file system. Finally click Create MSP definition.
- Navigate to the Nodes tab in the left navigation and click Add ordering service.
- Click Create an IBM Cloud Ordering service and then click Next.
- Give the Ordering service display name as
Orderer
and click Next. - On the next screen, select
Orderer CA
as the Certificate Authority. Then, give the Ordering service enroll ID and Ordering service enroll secret for the peer identity that you created for your orderer, that is,orderer1
, andorderer1pw
. Select the Organization MSP asOrdererMSP
, from the drop-down list. Leave the TLS CSR hostname blank. Click Next. - The next step is to Associate an identity with this peer to make it the admin of your peer. Select your peer admin identity
Orderer Admin
and click Next. - Review the summary and click Add ordering service.
- Navigate to the Nodes tab, and click on the Orderer that we created.
- Under Consortium Members, click Add organization.
- From the drop-down list, select
Org1MSP
, as this is the MSP that represents the peer's organization "Org1". - Click Add organization.
- Navigate to the Channels tab in the left navigation and click Create channel.
- Give the Channel name as
mychannel
. - Select the orderer you created,
Orderer
from the Ordering service drop-down list. - Under Organizations, select
Org1MSP (Org1MSP)
from the drop-down list to add the organization "Org1" as a member of this channel. Click Add button. Set the permissions for this member as Operator. - Scroll down to the Channel creator organization section and select
Org1MSP (Org1MSP)
from the dropdown as the Channel creator MSP and selectOrg1 Admin
from the dropdown under Identity. - Click Create channel.
- Click Join channel to add a peer to the channel.
- Select your
Orderer
as the Ordering service and click Next. - Enter the name of the Channel as
mychannel
and click Next. - Next we need to select which peers should be added to the channel. In our case, we just want to add the peer we created under "Org1". Select
Peer Org1
. - Click Join channel.
- Navigate to the Smart contracts tab in the left navigation and click Install smart contract.
- Browse to the location of the Decentralized Energy smart contract package file (it is probably named
decentralizedenergy@0.0.1.cds
), which we packaged earlier using the IBM Blockchain Platform extension for Visual Studio code. - Click on Add file and find your packaged smart contract.
- Once the contract is uploaded, click Install smart contract.
- Under Installed smart contracts, find the smart contract from the list (Note: ours is called decentralizedenergy) installed on our peer and click Instantiate from the overflow menu on the right side of the row.
- On the side panel that opens, select the channel,
mychannel
on which to instantiate the smart contract. Click Next. - Select the organization members to be included in the endorsement policy. In our case, we need to select
Org1MSP
. Click Next. - We can skip the Setup private data collection step and simply click Next.
- Leave the Function name and Arguments blank.
- Click Instantiate.
- Scroll down to the Instantiated smart contracts section and find the "decentralizedenergy" contract in the list. Click on
Connect with SDK
from the overflow menu on the right side of the row. - From the dropdown for MSP for connection choose
Org1MSP
. - From the dropdown for Certificate Authority choose
Org1 CA
. - Download the connection profile by scrolling down and clicking Download Connection Profile. This will download the connection json which we will use to establish a connection between the Node.js web application and the Blockchain Network.
- You can click Close once the download completes.
- Navigate to the Nodes tab in the left navigation, and under Certificate Authorities, choose your organization CA, Org1 CA.
- Click on Register user.
- Give an Enroll ID of
app-admin
and Enroll Secret ofapp-adminpw
. Set the Type for this identity asclient
. We can specify to Use root affiliation or uncheck this field and select from any of the affiliated organizations from the drop-down list. We will leave the Maximum enrollments field blank. Click Next. - Under Attributes, click on Add attribute. Give attribute as
hf.Registrar.Roles
=*
. This will allow this identity to act as a registrar and issue identities for our app. Click Add attribute. - Click Register user.
- Copy the connection profile you downloaded into server folder and application folder
- Update the server/config.json and the application/config.json file with:
- The connection json file name you downloaded.
- The enroll id and enroll secret for your app admin, which we earlier provided as
app-admin
andapp-adminpw
. - The orgMSP ID, which we provided as
Org1MSP
. - The caName, which can be found in your connection json file under "organization" -> "Org1MSP" -> certificateAuthorities". This would be like an IP address and a port.
- The username you would like to register.
- Update gateway discovery to
{ enabled: true, asLocalhost: false }
to connect to IBP.
Once all this is done, your config.json should look something like this:
{
"connection_file": "mychannel_decentralizedenergy_profile.json",
"channel_name": "mychannel",
"smart_contract_name": "decentralizedenergy",
"appAdmin": "app-admin",
"appAdminSecret": "app-adminpw",
"orgMSPID": "Org1MSP",
"caName": "169.46.208.151:30404",
"userName": "user1",
"gatewayDiscovery": { "enabled": true, "asLocalhost": false }
}
-
-
First, navigate to the
web-app
directory, and install the node dependencies.cd web-app/server npm install
-
Run the
enrollAdmin.js
scriptnode enrollAdmin.js
-
You should see the following in the terminal:
msg: Successfully enrolled admin user app-admin and imported it into the wallet
-
-
-
From the
server
directory, start the server.npm start
-
-
-
In a new terminal, open the web client folder and install the dependencies.
cd web-app/angular-app npm install
-
Start the client:
npm start
-
You can find the app running at http://localhost:4200/ Click on the green "Authorized Access" button to authorize access. Once that is done, you will be able to register Participants such as Residents, Banks and Utility Companies as well as post transactions between these participants.
You can go to the IBM Blockchain Platform v2 console to monitor your network and get information on your channel.
-
Navigate to the
application
directory, and install the node dependencies.cd application npm install
-
Run the
enrollAdmin.js
scriptnode enrollAdmin.js
You should see the following in the terminal:
msg: Successfully enrolled admin user app-admin and imported it into the wallet
-
Now let's register each of our participants. We will register
R1
as resident,B1
as bank,U1
as utility company. Navigate toadd-participants
folder and register the resident identity:cd add-participants node registerResident.js
You should see the following in the terminal:
Successfully registered and enrolled user "R1" and imported it into the wallet
Similarly register bank and utility company on the network.
node registerBank.js
node registerUtilityCompany.js
-
Now add the participants on the state. The contract stores the id of the identity creating the participant as their
participantId
. Let's add our resident:node addResident.js
You should see the following in the terminal:
2019-02-27T06:38:29.252Z - info: [TransactionEventHandler]: _strategySuccess: strategy success for transaction "c092df4098775057a7b712db402e45f3c8420d98fc022dfc331accb580448d4a" ...
Similarly add bank and utility company on the network.
node addBank.js
node addUtilityCompany.js
-
Now let's perform the
EnergyTrade
andCashTrade
transactions. These transactions will verify the sender's id, as the id on the world state before updating the state. In our case that is our resident R1:cd ../invoker-tx/ node energy-trade.js
You should see the following in the terminal followed by updated state of the resident and utility company:
2019-02-27T06:38:29.252Z - info: [TransactionEventHandler]: _strategySuccess: strategy success for transaction "c092df4098775057a7b712db402e45f3c8420d98fc022dfc331accb580448d4a" ...
Similarly, let's do the
CashTrade
transaction between resident and bank.node cash-trade.js
You should see the following in the terminal followed by updated state of the resident and the bank:
2019-02-27T06:38:29.252Z - info: [TransactionEventHandler]: _strategySuccess: strategy success for transaction "c092df4098775057a7b712db402e45f3c8420d98fc022dfc331accb580448d4a" ...
-
If you receive the following error on submitting transaction:
error: [Client.js]: Channel not found for name mychannel
It is safe to ignore this error because the ibp2.0 beta has service discovery enabled. (In order to use service discovery to find other peers please define anchor peers for your channel in the ui). If you really want the message to go away you can add the channels section to the connection profile, but it is a warning rather than a true error telling the user the channel is found but not in the connection profile
As an example you can manually add the following json and updated the IP address and ports manually:
"channels": { "mychannel": { "orderers": [ "169.46.208.151:32078" ], "peers": { "169.46.208.151:31017": {} } } },
This code pattern is licensed under the Apache Software License, Version 2. Separate third-party code objects invoked within this code pattern are licensed by their respective providers pursuant to their own separate licenses. Contributions are subject to the Developer Certificate of Origin, Version 1.1 (DCO) and the Apache Software License, Version 2.