Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 584 Bytes

GETTING_STARTED.md

File metadata and controls

39 lines (25 loc) · 584 Bytes

Getting Started

Testing

First, setup circuits:

sh setup_circuits.sh

Run tests against circuit and smart contracts:

npx hardhat test

Local Development

Start local hardhat node

npx hardhat node

Start local redis-server

redis-server

Deploy contracts to local hardhat node

npx hardhat run --network localhost scripts/deploy-contracts.js

Copy the files in contracts/deployment and paste them in the Frontend repo contracts directory.

Head over to the Frontend repo, and follow instructions there to start web server + API.