We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14b1a70 commit d9dba33Copy full SHA for d9dba33
hardhat.config.js
@@ -10,7 +10,7 @@ require("@nomiclabs/hardhat-waffle");
10
const GOERLI_RPC_URL = process.env.GOERLI_RPC_URL
11
const PRIVATE_KEY = process.env.PRIVATE_KEY
12
const POLYGON_MUMBAI_RPC_URL = process.env.POLYGON_MUMBAI_RPC_URL
13
-
+const ETHERSCAN_API_KEY = process.env.ETHERSCAN_API_KEY
14
module.exports = {
15
solidity: "0.8.17",
16
defaultNetwork: "hardhat",
@@ -31,6 +31,9 @@ module.exports = {
31
url: "http://127.0.0.1:8545/",
32
chainId: 31337,
33
}
34
+ },
35
+ etherscan: {
36
+ apiKey: ETHERSCAN_API_KEY,
37
},
38
// namedAccounts: {
39
// deployer: {
0 commit comments