Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,19 +45,31 @@ npm install
yarn
```

2. Start the local Hardhat node
2. Test the smart contracts

```sh
npx harthat test
```
Note that on some systems you'll need to set old SSL environment via

```sh
export NODE_OPTIONS=--openssl-legacy-provider
```


3. Start the local Hardhat node

```sh
npx hardhat node
```

3. With the network running, deploy the contracts to the local network in a separate terminal window
4. With the network running, deploy the contracts to the local network in a separate terminal window

```sh
npx hardhat run scripts/deploy.js --network localhost
```

4. Start the app
5. Start the app

```
npm run dev
Expand Down