ERC721 - OpenZeppelin Docs (2024)

We’ve discussed how you can make a fungible token using ERC20, but what if not all tokens are alike? This comes up in situations like real estate, voting rights, or collectibles, where some items are valued more than others, due to their usefulness, rarity, etc. ERC721 is a standard for representing ownership of non-fungible tokens, that is, where each token is unique.

ERC721 is a more complex standard than ERC20, with multiple optional extensions, and is split across a number of contracts. The OpenZeppelin Contracts provide flexibility regarding how these are combined, along with custom useful extensions. Check out the API Reference to learn more about these.

Constructing an ERC721 Token Contract

We’ll use ERC721 to track items in our game, which will each have their own unique attributes. Whenever one is to be awarded to a player, it will be minted and sent to them. Players are free to keep their token or trade it with other people as they see fit, as they would any other asset on the blockchain! Please note any account can call awardItem to mint items. To restrict what accounts can mint items we can add Access Control.

Here’s what a contract for tokenized items might look like:

// contracts/GameItem.sol// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";import "@openzeppelin/contracts/utils/Counters.sol";contract GameItem is ERC721URIStorage { using Counters for Counters.Counter; Counters.Counter private _tokenIds; constructor() ERC721("GameItem", "ITM") {} function awardItem(address player, string memory tokenURI) public returns (uint256) { uint256 newItemId = _tokenIds.current(); _mint(player, newItemId); _setTokenURI(newItemId, tokenURI); _tokenIds.increment(); return newItemId; }}

The ERC721URIStorage contract is an implementation of ERC721 that includes the metadata standard extensions (IERC721Metadata) as well as a mechanism for per-token metadata. That’s where the _setTokenURI method comes from: we use it to store an item’s metadata.

Also note that, unlike ERC20, ERC721 lacks a decimals field, since each token is distinct and cannot be partitioned.

New items can be created:

> gameItem.awardItem(playerAddress, "https://game.example/item-id-8u5h2m.json")Transaction successful. Transaction hash: 0x...Events emitted: - Transfer(0x0000000000000000000000000000000000000000, playerAddress, 7)

And the owner and metadata of each item queried:

> gameItem.ownerOf(7)playerAddress> gameItem.tokenURI(7)"https://game.example/item-id-8u5h2m.json"

This tokenURI should resolve to a JSON document that might look something like:

{ "name": "Thor's hammer", "description": "Mjölnir, the legendary hammer of the Norse god of thunder.", "image": "https://game.example/item-id-8u5h2m.png", "strength": 20}

For more information about the tokenURI metadata JSON Schema, check out the ERC721 specification.

You’ll notice that the item’s information is included in the metadata, but that information isn’t on-chain! So a game developer could change the underlying metadata, changing the rules of the game!
If you’d like to put all item information on-chain, you can extend ERC721 to do so (though it will be rather costly) by providing a Base64 Data URI with the JSON schema encoded. You could also leverage IPFS to store the tokenURI information, but these techniques are out of the scope of this overview guide.

Preset ERC721 contract

A preset ERC721 is available, ERC721PresetMinterPauserAutoId. It is preconfigured with token minting (creation) with token ID and URI auto generation, the ability to stop all token transfers (pause), and it allows holders to burn (destroy) their tokens. The contract uses Access Control to control access to the minting and pausing functionality. The account that deploys the contract will be granted the minter and pauser roles, as well as the default admin role.

This contract is ready to deploy without having to write any Solidity code. It can be used as-is for quick prototyping and testing but is also suitable for production environments.

Contract presets are now deprecated in favor of Contracts Wizard as a more powerful alternative.
ERC721 - OpenZeppelin Docs (2024)
Top Articles
The 5 Principles of Green Economy
Chapter #2 - Rich Dad Poor Dad
Zabor Funeral Home Inc
Rabbits Foot Osrs
Guardians Of The Galaxy Showtimes Near Athol Cinemas 8
Clafi Arab
How do you mix essential oils with carrier oils?
A.e.a.o.n.m.s
Power Outage Map Albany Ny
7440 Dean Martin Dr Suite 204 Directions
2021 Lexus IS for sale - Richardson, TX - craigslist
Nwi Arrests Lake County
Uc Santa Cruz Events
Tcu Jaggaer
Transfer and Pay with Wells Fargo Online®
10-Day Weather Forecast for Santa Cruz, CA - The Weather Channel | weather.com
Fraction Button On Ti-84 Plus Ce
360 Tabc Answers
Best Mechanics Near You - Brake Masters Auto Repair Shops
Beverage Lyons Funeral Home Obituaries
Dragonvale Valor Dragon
Everything To Know About N Scale Model Trains - My Hobby Models
Dtm Urban Dictionary
Kuttymovies. Com
Little Einsteins Transcript
Why comparing against exchange rates from Google is wrong
Earthy Fuel Crossword
Bi State Schedule
Used 2 Seater Go Karts
What Is The Lineup For Nascar Race Today
3 Bedroom 1 Bath House For Sale
Nextdoor Myvidster
Ultra Clear Epoxy Instructions
Plato's Closet Mansfield Ohio
Ket2 Schedule
Heavenly Delusion Gif
Second Chance Apartments, 2nd Chance Apartments Locators for Bad Credit
Questions answered? Ducks say so in rivalry rout
Xxn Abbreviation List 2023
Ds Cuts Saugus
Yakini Q Sj Photos
Perc H965I With Rear Load Bracket
Ohio Road Construction Map
Dineren en overnachten in Boutique Hotel The Church in Arnhem - Priya Loves Food & Travel
The 13 best home gym equipment and machines of 2023
Razor Edge Gotti Pitbull Price
North Park Produce Poway Weekly Ad
Gelato 47 Allbud
Www.card-Data.com/Comerica Prepaid Balance
Lux Nails & Spa
Latest Posts
Article information

Author: Madonna Wisozk

Last Updated:

Views: 6637

Rating: 4.8 / 5 (68 voted)

Reviews: 91% of readers found this page helpful

Author information

Name: Madonna Wisozk

Birthday: 2001-02-23

Address: 656 Gerhold Summit, Sidneyberg, FL 78179-2512

Phone: +6742282696652

Job: Customer Banking Liaison

Hobby: Flower arranging, Yo-yoing, Tai chi, Rowing, Macrame, Urban exploration, Knife making

Introduction: My name is Madonna Wisozk, I am a attractive, healthy, thoughtful, faithful, open, vivacious, zany person who loves writing and wants to share my knowledge and understanding with you.