Skip to content

SURAJPATIL6088/NFT_Smart_Contract

Repository files navigation

Initial Setup ( on NFT Smart Contract File )

Initialization :

npm init

This project demonstrates a basic Hardhat use case. It comes with a sample contract, a test for that contract, and a script that deploys that contract.

Hardhat Initialization :

npx hardhat init

Try running some of the following tasks:

npx hardhat help
npx hardhat test
REPORT_GAS=true npx hardhat test
npx hardhat node
npx hardhat run scripts/deploy.js

Install the Dependency

npm install --save-dev "hardhat@^2.17.1" "@nomicfoundation/hardhat-toolbox@^3.0.0"
npm install @openzeppelin/contracts

DONE