Composable Non-Fungible Tokens (CNFTs)
A WIP implementation and documentation repo for the ERC-998 standard extension to ERC-721 on the Ethereum blockchain.
Proposal: ethereum/EIPs#998
Original Medium Post (code outdated): https://medium.com/coinmonks/introducing-crypto-composables-ee5701fde217
Discord and Discourse community: NFTy Magicians. Search Twitter for a link to join.
Getting Started
Clone the repo and run npm i
then truffle test
. You should see a number of tests passing.
The repo activity is mainly in /contracts
and /test
.
Architecture and Design
CNFTs is intended to be a standard extension to ERC-721, the Non-Fungible Token standard for Ethereum.
As an extension, Composables are Non-Fungible Tokens (ERC-721) that can inherit from a standard interface the ability to own and manage other Non-Fungible Tokens (ERC-721) or Fungible Tokens (ERC-20), or both.
The flexibility of choosing specifically what token type you will need to own and manage with your tokens is intended to keep the contract size minimal and Application Binary Interface (ABI) clean and simple.
Questions?
Discord and Discourse community: NFTy Magicians. Search Twitter for a link to join.