Project is set to Private until beta release
Make sure these tools are installed
nodejsnpm
Install dependencies
cmd$> npm installRun local network
cmd$> npx hardhat nodeCompile contracts
cmd$> npx hardhat compileDeploy contracts (default is local network hardhat)
cmd$> npx hardhat run scripts/deploy.js --network <your-network>Run all javascript tests
cmd$> npx hardhat testRun specified javascript test or specified network (default is local network hardhat)
cmd$> npx hardhat test <test-file-path> --network <your-network>Run solhint
cmd$> npx solhint --formatter table 'contracts/**/*.sol'