fabric-samples/token-erc-20/chaincode-javascript/index.js
Arnaud J Le Hors 6d043af487 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-04-23 15:35:20 -04: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];