Add Hardhat based Ethereum testing node

This commit is contained in:
Mark Spanbroek 2022-01-18 12:11:16 +01:00
parent bacca0562e
commit 97d509571e
4 changed files with 3120 additions and 0 deletions

1
testnode/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
node_modules

View File

@ -0,0 +1,3 @@
module.exports = {
solidity: "0.7.3",
};

3107
testnode/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

9
testnode/package.json Normal file
View File

@ -0,0 +1,9 @@
{
"name": "hardhat-project",
"devDependencies": {
"hardhat": "^2.8.2"
},
"scripts": {
"start": "npx hardhat node"
}
}