Francisco Giordano e41daba7b4 merge api docs changes 6 年之前
..
ERC721.sol e41daba7b4 merge api docs changes 6 年之前
ERC721Burnable.sol ae919629cd Revert Solidity version bump. (#1729) 6 年之前
ERC721Enumerable.sol ae919629cd Revert Solidity version bump. (#1729) 6 年之前
ERC721Full.sol ae919629cd Revert Solidity version bump. (#1729) 6 年之前
ERC721Holder.sol ae919629cd Revert Solidity version bump. (#1729) 6 年之前
ERC721Metadata.sol ae919629cd Revert Solidity version bump. (#1729) 6 年之前
ERC721MetadataMintable.sol ae919629cd Revert Solidity version bump. (#1729) 6 年之前
ERC721Mintable.sol ae919629cd Revert Solidity version bump. (#1729) 6 年之前
ERC721Pausable.sol ae919629cd Revert Solidity version bump. (#1729) 6 年之前
IERC721.sol e41daba7b4 merge api docs changes 6 年之前
IERC721Enumerable.sol ae919629cd Revert Solidity version bump. (#1729) 6 年之前
IERC721Full.sol ae919629cd Revert Solidity version bump. (#1729) 6 年之前
IERC721Metadata.sol ae919629cd Revert Solidity version bump. (#1729) 6 年之前
IERC721Receiver.sol ae919629cd Revert Solidity version bump. (#1729) 6 年之前
README.md e41daba7b4 merge api docs changes 6 年之前

README.md


sections:

  • title: Core contracts:
    • IERC721
    • ERC721
    • IERC721Metadata
    • ERC721Metadata
    • ERC721Enumerable
    • IERC721Enumerable
    • IERC721Full
    • ERC721Full
    • IERC721Receiver
  • title: Extensions contracts:
    • ERC721Mintable
    • ERC721MetadataMintable
    • ERC721Burnable
    • ERC721Pausable
  • title: Convenience contracts:
    • ERC721Holder ---

This set of interfaces, contracts, and utilities are all related to the ERC721 Non-Fungible Token Standard.

For a walkthrough on how to create an ERC721 token read our ERC721 guide.

The EIP consists of three interfaces, found here as IERC721, IERC721Metadata, and IERC721Enumerable. Only the first one is required in a contract to be ERC721 compliant. Each interface is implemented separately in ERC721, ERC721Metadata, and ERC721Enumerable. You can choose the subset of functionality you would like to support in your token by combining the desired subset through inheritance. The fully featured token implementing all three interfaces is prepackaged as ERC721Full.

This page is incomplete. We're working to improve it for the next release. Stay tuned!