Hardhat setup

This commit is contained in:
Mark Spanbroek 2021-10-12 08:35:24 +02:00
commit 44433926bf
5 changed files with 13938 additions and 0 deletions

9
.gitignore vendored Normal file
View File

@ -0,0 +1,9 @@
node_modules
.env
coverage
coverage.json
typechain
#Hardhat files
cache
artifacts

1
.tool-versions Normal file
View File

@ -0,0 +1 @@
nodejs 14.18.0

5
hardhat.config.js Normal file
View File

@ -0,0 +1,5 @@
require("@nomiclabs/hardhat-waffle")
module.exports = {
solidity: "0.8.4",
}

13910
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

13
package.json Normal file
View File

@ -0,0 +1,13 @@
{
"scripts": {
"test": "hardhat test"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.7",
"hardhat": "^2.6.5"
}
}