Advantages of the ERC-1155 token versus ERC-721 token for intellectual property?

Im more then interested to know more how about the advantages of the ERC-1155 token versus ERC-721 token, especially because we want to use it for intellectual properties instead of games. Who could guide us?

(moved from OpenZeppelin Contracts v3.1)

1 Like

Hi @dickvangelder,

Welcome to the community :wave:

ERC1155 is a multi token standard and includes batch functionality. See the OpenZeppelin documention for more details: https://docs.openzeppelin.com/contracts/3.x/erc1155

Note, ERC721 still has greater ecosystem support.
The current list of transfers shows it used in games, collectible items, as well as domain names and artwork.
https://etherscan.io/tokens-nft

It depends on your use case and how you are tokenizing the IP. If IP is non-fungible, then you could use either ERC721 or ERC1155. If some IP is fungible then you would be better off using ERC1155.

Feel free to ask questions and provide additional information if you can.

A post was split to a new topic: How is ERC-1155 NFT ID defined?

A post was split to a new topic: Do you lose the ability to trace ownership history with ERC1155?