mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
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>
12 lines
273 B
JavaScript
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];
|