Skip to content
This repository has been archived by the owner on Jun 29, 2023. It is now read-only.

Use client side rendering #84

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions NFT-Collection.md
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down