mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 07:25:10 +00:00
Add new chaincode and javascript application to demostrate the use of chaincode events and block events with private data. Signed-off-by: Bret Harrison <beharrison@nc.rr.com>
12 lines
284 B
JavaScript
12 lines
284 B
JavaScript
/*
|
|
* Copyright IBM Corp. All Rights Reserved.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const assetTransferEvents = require('./lib/assetTransferEvents');
|
|
|
|
module.exports.AssetTransferEvents = assetTransferEvents;
|
|
module.exports.contracts = [assetTransferEvents];
|