diff --git a/NFT-Collection.md b/NFT-Collection.md index 4d1c112..6268530 100644 --- a/NFT-Collection.md +++ b/NFT-Collection.md @@ -243,6 +243,8 @@ Let's deploy the contract to the `goerli` network. Create a new file, or replace Let's write some code to deploy the contract in `deploy.js` file. ```js +"use client"; + const { ethers } = require("hardhat"); require("dotenv").config({ path: ".env" }); const { WHITELIST_CONTRACT_ADDRESS, METADATA_URL } = require("../constants");