-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhardhat.config.js
More file actions
46 lines (44 loc) · 1.04 KB
/
hardhat.config.js
File metadata and controls
46 lines (44 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
require("@nomicfoundation/hardhat-toolbox");
// import { HardhatUserConfig, task } from "hardhat/config";
require("@nomiclabs/hardhat-etherscan");
// require("@nomiclabs/hardhat-waffle");
require("@nomicfoundation/hardhat-chai-matchers");
require("@typechain/hardhat");
require("hardhat-gas-reporter");
require("solidity-coverage");
require("@nomiclabs/hardhat-ethers");
require('@openzeppelin/hardhat-upgrades');
/** @type import('hardhat/config').HardhatUserConfig */
module.exports = {
networks: {
goerli: {
url: "https://eth-goerli.g.alchemy.com/v2/sG47YlSxJTbOZ4OKOncgBEJC6O35LzOe",
accounts: ["e50091f32f0ba1158ca556e83b611a7d0e7b6b4bcd14280049f302495312ec75"],
chainId: 5,
saveDeployments: true,
},
},
etherscan: {
apiKey: {
goerli: "MY65SQDZKVVA5YZBAYKAQVWSCG6FRKSFTJ"
}
},
solidity: "0.8.17",
compilers: [
{
version: "0.5.5",
},
{
version: "0.6.0",
},
{
version: "0.8.0"
},
{
version: "0.8.4"
},
{
version: "0.7.6"
}
],
};