Skip to content

Files

Latest commit

 

History

History
12 lines (8 loc) · 641 Bytes

INSTALLATION.md

File metadata and controls

12 lines (8 loc) · 641 Bytes

How to get started

Scripts:

  1. yarn to install dependencies
  2. yarn c to compile contracts
  3. yarn t to run tests (includes compilation of contracts). Example command for executing a specific test file, here test/DIVAOracleTellor.test.js: yarn hardhat test test/DIVAOracleTellor.test.js

If your installed node version is 17 or higher, you may need to downgrade it to version 16.13.0, for instance, in order to ensure proper functionality. Below an example to downgrade the version using nvm:

  1. node --version to check the node version
  2. nvm use 16.13.0 to downgrade the node version