README.md 305 Bytes
Newer Older
Sagar's avatar
Sagar committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
## install nodejs
for centos
```
sudo yum install nodejs
```

for ubuntu
```
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
sudo apt install nodejs
```
## instal hardhat
execute command in current dirctionary.
```
npm install --save-dev hardhat
```

## run test
```
npx hardhat test
```