Hardhat setup
This commit is contained in:
commit
44433926bf
|
@ -0,0 +1,9 @@
|
||||||
|
node_modules
|
||||||
|
.env
|
||||||
|
coverage
|
||||||
|
coverage.json
|
||||||
|
typechain
|
||||||
|
|
||||||
|
#Hardhat files
|
||||||
|
cache
|
||||||
|
artifacts
|
|
@ -0,0 +1 @@
|
||||||
|
nodejs 14.18.0
|
|
@ -0,0 +1,5 @@
|
||||||
|
require("@nomiclabs/hardhat-waffle")
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
solidity: "0.8.4",
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
|
@ -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"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue