mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
This PR adds a new non-fungible token sample using ERC721 functionalities. It includes javascript Chaincode and the README explaining how to mint and transfer a non-fungible token in the Fabric's test-network. Signed-off-by: Yuki Kondo <yuki.kondo.ob@hitachi.com>
10 lines
No EOL
227 B
JavaScript
10 lines
No EOL
227 B
JavaScript
/*
|
|
SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const tokenERC721Contract = require('./lib/tokenERC721.js');
|
|
|
|
module.exports.tokenERC721Contract = tokenERC721Contract;
|
|
module.exports.contracts = [tokenERC721Contract]; |