Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 782 Bytes

README.md

File metadata and controls

32 lines (23 loc) · 782 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 script that deploys that contract.

Try running some of the following tasks:

Installation
Clone the repository:


# Install hardhat dependencies
npm install
Compile the smart contract for artifacts:

# Compile Smart Contract
npx hardhat compile
Deploy the Solidity smart contract to an Ethereum testnet or local development environment.

# Deploy Smart Contract
npx hardhat run scripts/deploy.js --network <network-name>
Install dependencies for the React front end:

# Navigate to the React client directory
cd client 
# Install React dependencies
npm install
Run the react application:

# Start React Application
npm start