updated configs + dependencies

This commit is contained in:
mfahampshire
2022-01-10 14:43:48 +01:00
parent b1f4ae434a
commit 6d09e6fa7c
3 changed files with 1638 additions and 166 deletions
@@ -1,6 +1,7 @@
require("@nomiclabs/hardhat-etherscan");
require("@nomiclabs/hardhat-truffle5");
require("@nomiclabs/hardhat-web3");
require("@nomiclabs/hardhat-ethers");
require('dotenv').config({ path: require('find-config')('.env') });
/**
@@ -18,12 +19,12 @@ module.exports = {
// artifacts: "./artifacts/contracts"
// },
networks: {
// rinkeby: {
// url: process.env.RINKEBY_URL, //Infura url with projectId
// accounts: [process.env.PRIV_KEY], // private key of account used for contract interaction
// gas: "auto",
// gasPrice: "auto"
// },
rinkeby: {
url: process.env.RINKEBY_URL, //Infura url with projectId
accounts: [process.env.PRIV_KEY], // private key of account used for contract interaction
gas: "auto",
gasPrice: "auto"
},
},
etherscan: {
// Your API key for Etherscan
File diff suppressed because it is too large Load Diff
@@ -1,11 +1,11 @@
{
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-ethers": "^2.0.4",
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.7",
"ethers": "^5.5.3",
"hardhat": "^2.6.4",
"solidity-coverage": "^0.7.17"
},
@@ -15,6 +15,7 @@
"@openzeppelin/contracts": "4.3.1",
"@openzeppelin/test-helpers": "^0.5.15",
"dotenv": "^10.0.0",
"file-system": "^2.2.2",
"find-config": "^1.0.0"
}
}