Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 527 Bytes

File metadata and controls

25 lines (17 loc) · 527 Bytes

Sample Hardhat Project

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

Try running some of the following tasks:

npx hardhat help
npx hardhat test

To deploy it

npx hardhat compile --force //compiling the contract

# If you need to deploy it
npx hardhat run scripts/deploy-fund-me.js --network YOUR_NETWORK

To run the test

 npx hardhat run test/FundMe.test.js