Hardhat & Etherscan

This commit is contained in:
Mubaris NK 2021-01-30 18:23:12 +05:30
parent 9d2a61e40f
commit 0d6fe181fc
No known key found for this signature in database
GPG Key ID: 9AC09AD0F8D68561
4 changed files with 17066 additions and 143 deletions

1
.env.example Normal file
View File

@ -0,0 +1 @@
ETHERSCAN_API_KEY=""

24
hardhat.config.js Normal file
View File

@ -0,0 +1,24 @@
require("@tenderly/hardhat-tenderly");
require('dotenv').config();
/**
* @type import('hardhat/config').HardhatUserConfig
*/
module.exports = {
solidity: {
compilers: [
{
version: "0.7.6"
},
{
version: "0.6.0"
},
{
version: "0.6.2"
}
]
},
etherscan: {
apiKey: process.env.ETHERSCAN_API_KEY
}
};

17181
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -39,9 +39,12 @@
"@nomiclabs/buidler": "^1.3.8",
"@nomiclabs/buidler-truffle5": "^1.3.4",
"@nomiclabs/buidler-web3": "^1.3.4",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@openzeppelin/test-helpers": "^0.5.6",
"@studydefi/money-legos": "^2.3.7",
"@tenderly/hardhat-tenderly": "^1.0.6",
"ganache-cli": "^6.10.0-beta.2",
"hardhat": "^2.0.8",
"sol-merger": "^2.0.1",
"solidity-coverage": "0.5.11",
"solium": "1.2.3",