├── .gitignore ├── LICENSE ├── README.md ├── README_cn.md ├── nft.abi ├── nft.cpp ├── nft.hpp └── nft.wasm /.gitignore: -------------------------------------------------------------------------------- 1 | /.vscode 2 | /scripts 3 | *.sh 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocos-BCX/EOS-1808/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocos-BCX/EOS-1808/HEAD/README.md -------------------------------------------------------------------------------- /README_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocos-BCX/EOS-1808/HEAD/README_cn.md -------------------------------------------------------------------------------- /nft.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocos-BCX/EOS-1808/HEAD/nft.abi -------------------------------------------------------------------------------- /nft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocos-BCX/EOS-1808/HEAD/nft.cpp -------------------------------------------------------------------------------- /nft.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocos-BCX/EOS-1808/HEAD/nft.hpp -------------------------------------------------------------------------------- /nft.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocos-BCX/EOS-1808/HEAD/nft.wasm --------------------------------------------------------------------------------