Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 617 Bytes

README.md

File metadata and controls

42 lines (28 loc) · 617 Bytes

Getting started

Here's how to deploy this project

  1. Clone the repo
git clone https://github.com/LuisIzarra/full-stack-ethereum-develoment.git
  1. Install the dependencies
npm install

# or

yarn
  1. Start the local test node
npx hardhat node
  1. Deploy the contract
ROPSTEN_URL=...
ROPSTEN_PRIVATE_KEY=...
npx hardhat run scripts/deploy.js --network localhost

*Replace points in a row, with personal data of your test network

  1. Update src/App.js with the values of your contract addresses (greeterAddress and tokenAddress)

  2. Run the app

npm run start