diff --git a/public/content/developers/tutorials/how-to-write-and-deploy-an-nft/index.md b/public/content/developers/tutorials/how-to-write-and-deploy-an-nft/index.md index 22a5d440396..a61c861a790 100644 --- a/public/content/developers/tutorials/how-to-write-and-deploy-an-nft/index.md +++ b/public/content/developers/tutorials/how-to-write-and-deploy-an-nft/index.md @@ -184,7 +184,7 @@ Open up the my-nft project in your favorite editor (we like [VSCode](https://cod } ``` -3. Because we are inheriting classes from the OpenZeppelin contracts library, in your command line run `npm install @openzeppelin/contracts` to install the library into our folder. +3. Because we are inheriting classes from the OpenZeppelin contracts library, in your command line run `npm install @openzeppelin/contracts^4.0.0` to install the library into our folder. So, what does this code _do_ exactly? Let’s break it down, line-by-line.