/full-stack-ethereum-development

Full stack dApp on the Ethereum blockchain with React, Solidity, Hardhat, and Ethers.js.

Primary LanguageTypeScript

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