From e2b97d67128e3593083bdf39ee2135871da1b711 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Venturo?= Date: Tue, 19 May 2020 13:54:11 -0300 Subject: [PATCH] Update readme to reflect docsite, fixes #2168 --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index df6948a46..6032ad60a 100644 --- a/README.md +++ b/README.md @@ -28,13 +28,12 @@ OpenZeppelin Contracts features a [stable API](https://docs.openzeppelin.com/con Once installed, you can use the contracts in the library by importing them: ```solidity -pragma solidity ^0.5.0; +pragma solidity ^0.6.0; -import "@openzeppelin/contracts/token/ERC721/ERC721Full.sol"; -import "@openzeppelin/contracts/token/ERC721/ERC721Mintable.sol"; +import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; -contract MyNFT is ERC721Full, ERC721Mintable { - constructor() ERC721Full("MyNFT", "MNFT") public { +contract MyNFT is ERC721 { + constructor() ERC721("MyNFT", "MNFT") public { } } ```