fabric-samples/token-erc-20/chaincode-javascript/index.js
Arnaud J Le Hors 876eb91d1f Add repolinter support
Fix link in SECURITY file, and add missing copyright and license
notices.

To check, run: repolinter --rulesetUrl https://github.com/hyperledger-labs/hyperledger-community-management-tools/raw/main/repo_structure/repolint.json

Signed-off-by: Arnaud J Le Hors <lehors@us.ibm.com>
2021-03-12 10:40:17 +01:00

12 lines
273 B
JavaScript

/*
* Copyright IBM Corp. All Rights Reserved.
*
* SPDX-License-Identifier: Apache-2.0
*/
'use strict';
const tokenERC20Contract = require('./lib/tokenERC20.js');
module.exports.TokenERC20Contract = tokenERC20Contract;
module.exports.contracts = [tokenERC20Contract];