mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
This PR adds ERC20 capabilities to the token-account-based sample. It includes javascript Chaincode and the updated README to explain how to use tokens in the Fabric test-network. Signed-off-by: Yuki Kondo <yuki.kondo.ob@hitachi.com>
10 lines
No EOL
222 B
JavaScript
10 lines
No EOL
222 B
JavaScript
/*
|
|
SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const tokenERC20Contract = require('./lib/tokenERC20.js');
|
|
|
|
module.exports.TokenERC20Contract = tokenERC20Contract;
|
|
module.exports.contracts = [tokenERC20Contract]; |