forked from 0xPolygon/fx-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.config.js
executable file
·48 lines (44 loc) · 1.03 KB
/
hardhat.config.js
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
47
48
require("dotenv").config();
require("@nomiclabs/hardhat-waffle");
require("@nomiclabs/hardhat-etherscan");
// You need to export an object to set up your config
// Go to https://hardhat.org/config/ to learn more
/**
* @type import('hardhat/config').HardhatUserConfig
*/
let accounts = [];
if (process.env.PRIVATE_KEY) {
accounts = [`0x${process.env.PRIVATE_KEY}`, ...accounts];
}
module.exports = {
solidity: {
version: "0.8.17",
settings: {
optimizer: {
enabled: true,
runs: 9999,
},
},
},
networks: {
mainnet: {
url: process.env.MAINNET_RPC || "https://mainnet.infura.io/v3/",
accounts,
},
goerli: {
url: process.env.GOERLI_RPC || "https://goerli.infura.io/v3/",
accounts,
},
polygon: {
url: process.env.POLYGON_RPC || "https://polygon-rpc.com",
accounts,
},
mumbai: {
url: process.env.MUMBAI_RPC || "https://rpc-mumbai.maticvigil.com",
accounts,
},
},
etherscan: {
apiKey: process.env.ETHERSCAN_API_KEY,
},
};