# auction-events
**Repository Path**: mirrors_ibm/auction-events
## Basic Information
- **Project Name**: auction-events
- **Description**: Hyperledger Fabric sample Using Event Handling with IBM Blockchain Platform V2.0
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-11-23
- **Last Updated**: 2025-09-21
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# auction-events
>Hyperledger Fabric sample Using Event Handling with the next generation IBM Blockchain Platform
This code pattern demonstrates leveraging the event handling feature within an application that is based on using an IKS cluster with IBM Blockchain Platform V2.0 service on IBM Cloud. We apply this use case to an auction use case. It shows how events can be emitted by using the Hyperledger Fabric SDK and subscribed to by external applications. The application is implemented in Node.js and is using the Hyperledger Fabric SDK for node.js to connect with the network, set up an event listener and catch transactional events.
A client application may use the Fabric Node.js client to register a "listener" to receive blocks as they are added to the channel ledger. This is known as "channel-based events", and it allows a client to start to receive blocks from a specific block number, allowing event processing to run normally on blocks that may have been missed. The Fabric Node.js client can also assist client applications by processing the incoming blocks and looking for specific transactions or chaincode events. This allows a client application to be notified of transaction completion or arbitrary chaincode events without having to perform multiple queries or search through the blocks as they are received. After the transaction proposal has been successfully endorsed, and before the transaction message has been successfully broadcasted to the orderer, the application should register a listener to be notified of the event when the transaction achieves finality, which is when the block containing the transaction gets added to the peer's ledger/blockchain.
Fabric committing peers provides an event stream to publish blocks to registered listeners. A Block gets published whenever the committing peer adds a validated block to the ledger. There are three ways to register a listener to get notified:
* register a `block listener` to get called for every block event. The listener will be passed a fully decoded Block object.
* register a `transaction listener` to get called when the specific transaction by id is committed (discovered inside a published block). The listener will be passed the transaction id, transaction status and block number.
* register a `chaincode event listener` to get called when a specific chaincode event has arrived. The listener is be passed the ChaincodeEvent, block number, transaction id, and transaction status.
In this pattern we are registering a transaction event. So when a transaction is completed/committed - an event will get triggered and the application will catch it and report it.
Audience level : Intermediate Developers
If you have an IBM Cloud Lite account, you can also use the IBM Blockchain Platform Service free for 30 days to do this pattern. Additionally, IKS is free too.
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 2.0
* Install and instantiate smart contract package onto the IBM Blockchain Platform 2.0
* Develop a Node.js server with the Hyperledger Fabric SDK to interact with the deployed network and setup your applications to trigger and catch events
# Architecture flow
***UPDATE***
1. The developer develops a smart contract using Node.js
2. Use the IBM Blockchain Platform Extension for VS Code to package the Decentralized Energy smart contract.
3. Setup and launch the IBM Blockchain Platform 2.0 service
4. The IBM Blockchain Platform 2.0 enables the creation of a network onto a IBM Kubernetes Service, enabling installation and instantiation of the Auction smart contract on the network
5. The Node.js application uses the Fabric SDK to add a listener to specific transactions and subsequently interact with the deployed network on IBM Blockchain Platform 2.0 and issues transactions.
6. Events are emitted as transactions are triggered and blocks are committed to the ledger. The events are sent back to the Node.js application.
# Included components
* [IBM Blockchain Platform 2.0](https://console.bluemix.net/docs/services/blockchain/howto/ibp-v2-deploy-iks.html#ibp-v2-deploy-iks) 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](https://www.ibm.com/cloud/container-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](https://marketplace.visualstudio.com/items?itemName=IBMBlockchain.ibm-blockchain-platform) is designed to assist users in developing, testing, and deploying smart contracts -- including connecting to Hyperledger Fabric environments.
## Featured technologies
+ [Hyperledger Fabric v1.4](https://hyperledger-fabric.readthedocs.io) is a platform for distributed ledger solutions, underpinned by a modular architecture that delivers high degrees of confidentiality, resiliency, flexibility, and scalability.
+ [Node.js](https://nodejs.org) is an open source, cross-platform JavaScript run-time environment that executes server-side JavaScript code.
+ [Hyperledger Fabric SDK for node.js](https://fabric-sdk-node.github.io/release-1.4/index.html) provides a powerful API to interact with a Hyperledger Fabric blockchain.
# Watch the Video
[](https://www.youtube.com/watch?v=KLWLCjKf5Xw)
### Prerequisites
- [IBM Cloud account](https://cloud.ibm.com/registration/?target=%2Fdashboard%2Fapps)
- [Node v8.x or greater and npm v5.x or greater](https://nodejs.org/en/download/)
- [VSCode version 1.39 or greater](https://code.visualstudio.com) 🚨later versions may not work due to this [bug](https://github.com/IBM-Blockchain/blockchain-vscode-extension/issues/1621)🚨
- [IBM Blockchain Platform Extension for VSCode](https://marketplace.visualstudio.com/items?itemName=IBMBlockchain.ibm-blockchain-platform)
## Prerequisites (Local)
If you want to run this pattern locally, without any Cloud services, then all you need is VSCode and the
IBM Blockchain Platform extension.
- [Install VSCode](https://code.visualstudio.com/download)
- [Install IBM Blockchain Platform Extension for VSCode](https://github.com/IBM-Blockchain/blockchain-vscode-extension)
- [Node v8.x or greater and npm v5.x or greater](https://nodejs.org/en/download/)
# Steps (Local Deployment)
> To run a local network, you can find steps [here](./docs/run-local.md).
# Running the application
Follow these steps to set up and run this code pattern. The steps are described in detail below.
### Steps
1. [Clone the repo](#1-clone-the-repo)
2. [Package the smart contract](#2-package-the-smart-contract)
3. [Create IBM Cloud services](#3-create-ibm-cloud-services)
4. [Build a network](#4-build-a-network)
5. [Deploy Auction Event Smart Contract on the network](#5-deploy-auctionevent-smart-contract-on-the-network)
6. [Connect application to the network](#6-connect-application-to-the-network)
7. [Run the application](#7-run-the-application)
## 1. Clone the repo
Clone this repository in a folder of your choice:
```
git clone https://github.com/IBM/auction-events.git
```
# 2. Package the smart contract
We will use the IBM Blockchain Platform extension to package the smart contract.
* Open Visual Studio code and open the `contract` folder from `auction-events` that was cloned earlier.
* Press the `F1` key to see the different VS code options. Choose `IBM Blockchain Platform: Package a Smart Contract 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. **Note** You will see `auction@0.0.1` instead of globalfinancing@1.0.0.
* Next, right click on the packaged contract (in this case, select auction@0.0.1) to export it and choose `Export Package`.
* Choose a location on your machine and save `.cds` file. We will use this packages smart contract later to deploy on the IBM Blockchain Platform 2.0 service.
Now, we will start creating our Hyperledger Fabric network on the IBM Cloud.
## 3. Create IBM Cloud services
* Create the [IBM Cloud Kubernetes Service](https://cloud.ibm.com/catalog/infrastructure/containers-kubernetes). You can find the service in the `Catalog`. For this code pattern, we can use the `Free` cluster, and give it a name. Note, that the IBM Cloud allows one instance of a free cluster and expires after 30 days.
* Create the [IBM Blockchain Platform 2.0](https://console.bluemix.net/catalog/services/blockchain/) service on the IBM Cloud. You can find the service in the `Catalog`, and give a name.
* After your kubernetes cluster is up and running, you can deploy your IBM Blockchain Platform on the cluster. The 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 operating on your blockchain network.
## 4. Build a network
We will build out the network as provided by the IBM Blockchain Platform [documentation](https://console.bluemix.net/docs/services/blockchain/howto/ibp-console-build-network.html#ibp-console-build-network). 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.
### Create your organization and your entry point to your blockchain
* #### Create your peer organization CA
- Click Add Certificate Authority.
- Click IBM Cloud under Create Certificate Authority and Next.
- Give it a Display name of `Org1 CA`.
- Specify an Admin ID of `admin` and Admin Secret of `adminpw`.
* #### Use your CA to register identities
- Select the Org 1 CA Certificate Authority that we created.
- First, we will register an admin for our organization "org1". Click on the Register User button. Give an Enroll ID of `org1admin`, and Enroll Secret of `org1adminpw`. Click Next. Set the Type for this identity as `client` and select from any of the affiliated organizations from the drop-down list. We will leave the Maximum enrollments and Add Attributes fields blank.
- 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 of `peer1pw`. Click Next. Set the Type for this identity as `peer` and select from any of the affiliated organizations from the drop-down list. We will leave the Maximum enrollments and Add Attributes fields blank.
* #### Create the peer organization MSP definition
- Navigate to the Organizations tab in the left navigation and click Create MSP definition.
- Enter the MSP Display name as `Org1 MSP` and an MSP ID of `org1msp`.
- 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` and `org1adminpw`. Then, give the Identity name, `Org1 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.
* Create a peer
- On the Nodes page, click Add peer.
- Click IBM Cloud under Create a new peer and Next.
- Give your peer a Display name of `Peer Org1`.
- On the next screen, select `Org1 CA` as your Certificate Authority. Then, give the Enroll ID and Enroll secret for the peer identity that you created for your peer, `peer1`, and `peer1pw`. Then, select the Administrator Certificate (from MSP), `Org1 MSP`, from the drop-down list and click Next.
- Give the TLS Enroll ID, `admin`, and TLS Enroll secret, `adminpw`, the same values are the Enroll ID and Enroll secret that you gave when creating the CA. Leave the TLS CSR hostname blank.
- The last side panel will ask you to Associate an identity and make it the admin of your peer. Select your peer admin identity `Org1 Admin`.
- Review the summary and click Add Peer.
### Create the node that orders transactions
* #### Create your orderer organization CA
- Click Add Certificate Authority.
- Click IBM Cloud under Create Certificate Authority and Next.
- Give it a unique Display name of `Orderer CA`.
- Specify an Admin ID of `admin` and Admin Secret of `adminpw`.
* #### Use your CA to register orderer and orderer admin identities
- In the Nodes tab, select the Orderer CA Certificate Authority that we created.
- First, we will register an admin for our organization. Click on the Register User button. Give an Enroll ID of `ordereradmin`, and Enroll Secret of `ordereradminpw`. Click Next. Set the Type for this identity as `client` and select from any of the affiliated organizations from the drop-down list. We will leave the Maximum enrollments and Add Attributes fields blank.
- 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 of `orderer1pw`. Click Next. Set the Type for this identity as `peer` and select from any of the affiliated organizations from the drop-down list. We will leave the Maximum enrollments and Add Attributes fields blank.
* #### Create the orderer organization MSP definition
- Navigate to the Organizations tab in the left navigation and click Create MSP definition.
- Enter the MSP Display name as `Orderer MSP` and an MSP ID of `orderermsp`.
- 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` and `ordereradminpw`. Then, give the Identity name, `Orderer 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.
* #### Create an orderer
- On the Nodes page, click Add orderer.
- Click IBM Cloud and proceed with Next.
- Give your peer a Display name of `Orderer`.
- On the next screen, select `Orderer CA` as your Certificate Authority. Then, give the Enroll ID and Enroll secret for the peer identity that you created for your orderer, `orderer1`, and `orderer1pw`. Then, select the Administrator Certificate (from MSP), `Orderer MSP`, from the drop-down list and click Next.
- Give the TLS Enroll ID, `admin`, and TLS Enroll secret, `adminpw`, the same values are the Enroll ID and Enroll secret that you gave when creating the CA. Leave the TLS CSR hostname blank.
- The last side panel will ask to Associate an identity and make it the admin of your peer. Select your peer admin identity `Orderer Admin`.
- Review the summary and click Add Orderer.
* #### Add organization as Consortium Member on the orderer to transact
- 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 `Org1 MSP`, as this is the MSP that represents the peer's organization org1.
- Click Submit.
### Create and join channel
* #### Create the channel
- Navigate to the Channels tab in the left navigation.
- Click Create channel.
- Give the channel a name, `mychannel`.
- Select the orderer you created, `Orderer` from the orderers drop-down list.
- Select the MSP identifying the organization of the channel creator from the drop-down list. This should be `Org1 MSP (org1msp)`.
- Associate available identity as `Org1 Admin`.
- Click Add next to your organization. Make your organization an Operator.
- Click Create.
* #### Join your peer to the channel
- Click Join channel to launch the side panels.
- Select your `Orderer` and click Next.
- Enter the name of the channel you just created. `mychannel` and click Next.
- Select which peers you want to join the channel, click `Peer Org1` .
- Click Submit.
## 5. Deploy the Auction Event Smart Contract on the network
* #### Install a smart contract (**note**: substitute the word `auction` where ever you see the word `fabcar` in the graphics)
- Click the Smart contracts tab to install the smart contract.
- Click Install smart contract to upload the Auction smart contract package file, which you packaged earlier using the Visual Studio code extension.
- Click on Add file and find your packaged smart contract.
- Once the contract is uploaded, click Install.
* #### Instantiate smart contract (**note**: substitute the word `auction` where ever you see the word `fabcar` in the graphics)
- On the smart contracts tab, find the smart contract from the list installed on your peers and click Instantiate from the overflow menu on the right side of the row.
- On the side panel that opens, select the channel, `mychannel` to instantiate the smart contract on. Click Next.
- Select the organization members to be included in the policy, `org1msp`. Click Next.
- Give Function name of `instantiate` and leave Arguments blank. **Note:** `instantiate` is the method in the `my-contract.js` file that initiates the smart contracts on the peer. Some may name this `initLedger`.
- Click Instantiate.
## 6. Connect application to the network
* #### Connect with sdk through connection profile (**note**: substitute the word `auction` where ever you see the word `fabcar` in the graphics)
- Under the Instantiated Smart Contract, click on `Connect with SDK` from the overflow menu on the right side of the row.
- Choose from the dropdown for MSP for connection, `org1msp`.
- Choose from Certificate Authority dropdown, `Org1 CA`.
- Download the connection profile by scrolling down and clicking Download Connection Profile. This will download the connection json which we will use soon to establish connection.
- You can click Close once the download completes.
* #### Create an application admin
- Go to the Nodes tab on the left bar, and under Certificate Authorities, choose your organization CA, Org1 CA.
- Click on Register user.
- Give an Enroll ID and Enroll Secret to administer your application users, `app-admin` and `app-adminpw`.
- Choose `client` as Type and any organization for affiliation. We can pick `org1` to be consistent.
- You can leave the Maximum enrollments blank.
- Under Attributes, click on Add attribute. Give attribute as `hf.Registrar.Roles` = `*`. This will allow this identity to act as registrar and issues identities for our app. Click Add-attribute.
- Click Register.
* #### Update application connection
- Copy the connection profile you downloaded into [application folder](application)
- Update the [config.json](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` and `app-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 peer, , which can be found in your connection json file under "organization" -> "org1msp" -> peers". 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.
```bash
{
"channel_name": "mychannel",
"smart_contract_name": "auction",
"connection_file": "mychannel_auction_profile.json",
"appAdmin": "app-admin",
"appAdminSecret": "app-adminpw",
"orgMSPID": "org1msp",
"caName": "173.193.79.114:32615",
"peer": "grpcs://173.193.79.114:30324",
"orderer": "grpcs://173.193.79.114:32018",
"userName": "user1",
"gatewayDiscovery": { "enabled": true, "asLocalhost": false }
}
```
## 7. Run the application
* #### Enroll admin
- First, navigate to the `application` directory, and install the node dependencies.
```bash
cd application
npm install
```
- Run the `enrollAdmin.js` script
```bash
node enrollAdmin.js
```
This will create a directory called `wallet` and insert the user Admin along with its certificate authority.
- You should see the following in the terminal:
```bash
msg: Successfully enrolled admin user app-admin and imported it into the wallet
```
- In the newest version of the Hyperledger Fabric Node SDK (1.4 release) there are
three main event types that can be subscribed to
1. Contract events - these have to be emitted from the chaincode by calling the
[stub.setEvent(name,payload) method](https://fabric-shim.github.io/master/fabric-shim.ChaincodeStub.html#setEvent__anchor). An example can be seen
in the auction chaincode on [line 141 of contract/lib/auction.js](https://github.com/IBM/auction-events/blob/master/contract/lib/auction.js#L141). These types of
events are great, since you can customize exactly what data you want to send
to the client application. Note that these events will only be triggered once
a certain function within your chaincode is called.
2. Transaction (Commit) events - these are automatically emitted
after a transaction is committed to the ledger.
3. Block events - these are emitted automatically when a block is committed.
Note that there can be mutliple transactions in a block, so you may get multiple
transaction events for one block event.
## 8. Emit Contract Events
- To illustrate each of these three main event types, we will have a separate script
for each, that will show each of the events in action. First, let's check out the
`contractEvents.js` file. This file uses the `addContractListener` function to
look for any `TradeEvent` events that may be published from our chaincode. You can
see in our `contract` directory, that our `StartBidding`, `Offer`, and `CloseBidding`
functions all emit an event my calling `await ctx.stub.setEvent('TradeEvent', Buffer.from(JSON.stringify(tradeEvent)));` Then, our callback function in our `contractEvents.js`
file will fire once it has
detected that the `TradeEvent` is sent. Go ahead and run `contractEvents.js` by
typing in the following command in terminal
```javascript
application$ node contractEvents.js
Wallet path: /Users/Horea.Porutiu@ibm.com/Workdir/testDir/auction-events/application/wallet
gateway connect
************************ Start Trade Event *******************************************************
type: Start Auction
ownerId: auction@acme.org
id: l1
description: Sample Product
status: {"code":1,"text":"FOR_SALE"}
amount: 50
buyerId: auction@acme.org
Block Number: 124 Transaction ID:
6be255d6c2ab968ab9f0bd4bbc3477f51f1e02512d11e86fc509f2f6f0e51a7e Status: VALID
************************ End Trade Event ************************************
closebiddingResponse:
{"listingId":"l1","offers":[{"bidPrice":100,"memberId":"memberB@acme.org"},{"bidPrice":50,"memberId":"memberA@acme.org"}],"productId":"p1","reservePrice":50,"state":"{\"code\":3,\"text\":\"SOLD\"}"}
Transaction to close the bidding has been submitted
```
This above output parses the trade event - it shows us the type of the event, the owner, the id,
the description of the product the status, etc. This is all things we have built and emitted within
our chaincode. Great. Now that we understand how contract events work, let's move onto the block
event listener.
## 9. Emit Block Events
- Block events are different than contract events since you have less control of what exactly
is being output. Go ahead and check out `blockEvents.js`. Note that there may be multiple
transactions within one block, and you can edit how many transactions are in your block by
editing the block batch size for a channel. You can read more details about this
[here](https://hyperledger-fabric.readthedocs.io/en/release-1.4/config_update.html).
The main components of the block are the block header, the block data, and the block
metadata.
- The block header contains the block number, (starting at 0 from the genesis block)
and increased by 1 for every new block appended to the blockchain. It also has
the current block hash (the hash of all transactions in the current block), and
the previous block hash.
- The block data contains a list of the transactions in order.
- The block metadata contains the time when the block was written,
the certificate, public key and signature of the block writer.
- Go ahead and run the `blockEvents.js` script by typing in the following
commands in the terminal. For each `contract.submitTransaction` we submit,
we will have a new block added to the ledger.
Notice the output will be divided by header,
data, and metadata. You can then parse those respective parts of the output
to learn more about each specific part of the block.
```javascript
application$ node blockEvents.js
Wallet path: /Users/Horea.Porutiu@ibm.com/Workdir/testDir/auction-events/application/wallet
gateway connect
*************** start block header **********************
{ number: '396',
previous_hash: 'af979a1632e1ba69a75256dce4bafad40e93ebec6ee17de5b2923bbeb5abfec8',
data_hash: '4db396d91151c432e1f17f32254565bc2445975d6d8c9000ff74a5c2a845dd26' }
*************** end block header **********************
*************** start block data **********************
{ signature: ,
payload:
{ header:
{ channel_header:
{ type: 3,
version: 1,
timestamp: '2019-08-30T00:10:45.075Z',
channel_id: 'mychannel',
tx_id: 'cb12f4a9209c0c35d20213c4d2c517c2b199761cb29902a11bc955eba291acc6',
epoch: '0',
extension: ,
typeString: 'ENDORSER_TRANSACTION' },
signature_header:
{ creator:
{ Mspid: 'org1msp',
IdBytes: '-----BEGIN CERTIFICATE-----\nMIICaTCCAhCgAwIBAgIUC2iFJ+dVTbE8QSVoqjjno3mT9sowCgYIKoZIzj0EAwIw\naDELMAkGA1UEBhMCVVMxFzAVBgNVBAgTDk5vcnRoIENhcm9saW5hMRQwEgYDVQQK\nEwtIeXBlcmxlZGdlcjEPMA0GA1UECxMGRmFicmljMRkwFwYDVQQDExBmYWJyaWMt\nY2Etc2VydmVyMB4XDTE5MDgyODE4MjQwMFoXDTIwMDgyNzE4MjkwMFowJjEPMA0G\nA1UECxMGY2xpZW50MRMwEQYDVQQDEwphcHAtYWRtaW4yMFkwEwYHKoZIzj0CAQYI\nKoZIzj0DAQcDQgAEMFDxKrg+VEO3mK5tfJKf7oULfagOMcAmX4T4NUmLI/ojsnTe\naTJUeJQQ3Vyp1L7pV3hZGvY9HlZUt6uVoLjju6OB2TCB1jAOBgNVHQ8BAf8EBAMC\nB4AwDAYDVR0TAQH/BAIwADAdBgNVHQ4EFgQU/GYKt2Q4Bk7aKon90K66rlgwWlAw\nHwYDVR0jBBgwFoAUUii9qu9Xs+cjOsm1MaM+xK1UCL4wdgYIKgMEBQYHCAEEansi\nYXR0cnMiOnsiaGYuQWZmaWxpYXRpb24iOiIiLCJoZi5FbnJvbGxtZW50SUQiOiJh\ncHAtYWRtaW4yIiwiaGYuUmVnaXN0cmFyLlJvbGVzIjoiKiIsImhmLlR5cGUiOiJj\nbGllbnQifX0wCgYIKoZIzj0EAwIDRwAwRAIgQEaWB8YVEfO67OAWLypnQX//0nrg\nOGtLqVv/HRkg2TsCIC4cn04cmTjLWg/GVGuXSLlaZV1SZFlGvd9lNDN2ytea\n-----END CERTIFICATE-----\n' },
nonce: } },
data:
{ actions:
[ { header:
{ creator: [Object],
nonce: },
payload: { chaincode_proposal_payload: [Object], action: [Object] } } ] } } }
*************** end block data **********************
*************** start block metadata ****************
{ metadata:
[ { value: '\n\u0000\u0012\n\n\b\n\u0001\u0001\u0010\u0002\u0018�\u0003',
signatures:
[ { signature_header:
{ creator: [Object],
nonce: },
signature: } ] },
{ value: { index: '0' }, signatures: [] },
[ 0 ] ] }
*************** end block metadata ****************
```
To learn more about the specifics of what is included inside of a block, read this
[page](https://hyperledger-fabric.readthedocs.io/en/release-1.4/ledger/ledger.html#blocks).
## 10. Emit Transaction Events
- Lastly, let's go ahead and listen for transaction events. This is even more
granular than block events, since multiple transactions can comprise a block.
We will use the `transaction.addCommitListener` to listen to transactions. Go
ahead and look at the `transactionEvents.js` file. What we are doing, is that we are
adding a committ listener, such that when we submit a transaction, and it is
committed, we will get the transactionId, status, and blockheight back. Go
ahead and run `transactionEvents.js` file, and you should see the following
output in your terminal:
```javascript
application$ node transactionEvents.js
Wallet path: /Users/Horea.Porutiu@ibm.com/Workdir/testDir/auction-events/application/wallet
gateway connect
transaction committed
'ef7f833d6039e41c5054d0bba0d327cfc14bfd7be836a6c5e65547320880d1af'
'VALID'
405
transaction committed end
Transaction to add seller has been submitted
application$
```
- Nice job! You've now learned how to
## Troubleshooting
* 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": {}
}
}
},
```
* In the invoke-emit.js application, you will see the following code:
It is important to note that in order for the `getClient` method to actually get the connection.profile content, you need to have line #4 occur before line #6. If you don't, then the `client` constant will be `null`. It is important you have the order correct to run the code successfully.
```bash
1. // A gateway defines the peers used to access Fabric networks
2. await gateway.connect(ccp, { wallet, identity: appAdmin , discovery: {enabled: true, asLocalhost:false }});
3. console.log('Connected to Fabric gateway.');
4. const network = await gateway.getNetwork(channelName);
5. // Get addressability to network
6. const client = gateway.getClient();
7. const channel = client.getChannel('mychannel');
8. console.log('Got addressability to channel');
9. const channel_event_hub = channel.getChannelEventHub('173.193.79.114:30324');
```
## Extending the code pattern
This application can be expanded in a couple of ways:
* Create a wallet for every member and use the member's wallet to interact with the application.
* Add a UI application in place of the `invoke.js` node application to execute the transactions.
## Links
* [Hyperledger Fabric Docs](http://hyperledger-fabric.readthedocs.io/en/latest/)
* [Zero to Blockchain](https://www.redbooks.ibm.com/Redbooks.nsf/RedbookAbstracts/crse0401.html?Open)
* [IBM Code Patterns for Blockchain](https://developer.ibm.com/patterns/category/blockchain/)
## License
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)](https://developercertificate.org/) and the [Apache Software License, Version 2](https://www.apache.org/licenses/LICENSE-2.0.txt).
[Apache Software License (ASL) FAQ](https://www.apache.org/foundation/license-faq.html#WhatDoesItMEAN)