Hardhat project creation

This commit is contained in:
miguelToscano 2022-09-27 17:03:28 -03:00
parent 1544de857d
commit 0d7d03c09c
4 changed files with 2932 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
node_modules

4
hardhat.config.js Normal file
View File

@ -0,0 +1,4 @@
/** @type import('hardhat/config').HardhatUserConfig */
module.exports = {
solidity: "0.8.17",
};

2904
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

23
package.json Normal file
View File

@ -0,0 +1,23 @@
{
"name": "sites_nfts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FleekHQ/sites_nfts.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FleekHQ/sites_nfts/issues"
},
"homepage": "https://github.com/FleekHQ/sites_nfts#readme",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"hardhat": "^2.11.2"
}
}