README.adoc 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. = ERC-1155
  2. [.readme-notice]
  3. NOTE: This document is better viewed at https://docs.openzeppelin.com/contracts/api/token/erc1155
  4. This set of interfaces and contracts are all related to the https://eips.ethereum.org/EIPS/eip-1155[ERC-1155 Multi Token Standard].
  5. The ERC consists of three interfaces which fulfill different roles, found here as {IERC1155}, {IERC1155MetadataURI} and {IERC1155Receiver}.
  6. {ERC1155} implements the mandatory {IERC1155} interface, as well as the optional extension {IERC1155MetadataURI}, by relying on the substitution mechanism to use the same URI for all token types, dramatically reducing gas costs.
  7. Additionally there are multiple custom extensions, including:
  8. * designation of addresses that can pause token transfers for all users ({ERC1155Pausable}).
  9. * destruction of own tokens ({ERC1155Burnable}).
  10. NOTE: This core set of contracts is designed to be unopinionated, allowing developers to access the internal functions in ERC-1155 (such as <<ERC1155-_mint-address-uint256-uint256-bytes-,`_mint`>>) and expose them as external functions in the way they prefer.
  11. == Core
  12. {{IERC1155}}
  13. {{IERC1155MetadataURI}}
  14. {{ERC1155}}
  15. {{IERC1155Receiver}}
  16. == Extensions
  17. {{ERC1155Pausable}}
  18. {{ERC1155Burnable}}
  19. {{ERC1155Supply}}
  20. {{ERC1155URIStorage}}
  21. == Utilities
  22. {{ERC1155Holder}}
  23. {{ERC1155Utils}}