Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 748 Bytes

README.md

File metadata and controls

14 lines (12 loc) · 748 Bytes

Deployments

Useful Commands

npm run dev or yarn dev to start web app (while in next-app directory)
truffle compile compile all smart contracts (while in truffle directory)
truffle migrate --network {NETWORK} deploy contracts to specified network (Goerli, Sepolia, dev)
truffle run verify --network {NETWORK} {CONTRACT NAME} verify on etherscan (Goerli)

Setup

  1. Install truffle globally npm install -g truffle if not already installed
  2. Install truffle dependencies cd truffle && npm install
  3. Install next.js dependencies cd next-app && npm install