forked from regen-network/toucan-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.config.js
83 lines (77 loc) · 2.32 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
require("fs");
require("@nomiclabs/hardhat-waffle");
require("@openzeppelin/hardhat-upgrades");
require("@nomiclabs/hardhat-etherscan");
require("@nomiclabs/hardhat-ethers");
require("hardhat-deploy");
require("dotenv").config();
const GAS_MULTIPLIER = Number(process.env.GAS_MULTIPLIER || 1.1);
const GAS_PRICE = process.env.GAS_PRICE ? Number(process.env.GAS_PRICE) : "auto";
const GAS_LIMIT = process.env.GAS_LIMIT ? Number(process.env.GAS_LIMIT) : "auto";
const POLYGONSCAN_API_KEY = process.env.POLYGONSCAN_API_KEY || "";
const PRIVATE_KEY = process.env.PRIVATE_KEY ? process.env.PRIVATE_KEY : "";
const MNEMONIC = process.env.MNEMONIC ? process.env.MNEMONIC : mnemonic();
const sharedNetworkConfig = {
gas: GAS_LIMIT,
gasMultiplier: GAS_MULTIPLIER,
gasPrice: GAS_PRICE,
};
// Order of priority for account/signer generation:
// 1) .env/PRIVATE_KEY
// 2) .env/MNEMONIC
// 3) ./mnemonic.txt
if (PRIVATE_KEY) {
sharedNetworkConfig.accounts = [PRIVATE_KEY];
} else if (MNEMONIC) {
sharedNetworkConfig.accounts = {
mnemonic: MNEMONIC,
};
}
function mnemonic() {
try {
return fs.readFileSync("./mnemonic.txt").toString().trim();
} catch {}
return "";
}
// You need to export an object to set up your config
// Go to https://hardhat.org/config/ to learn more
module.exports = {
solidity: {
version: "0.8.14",
settings: {
optimizer: {
runs: 200,
enabled: true,
},
},
},
networks: {
// Hardhat comes built-in with a special network called hardhat. When using this network, an instance of the Hardhat Network will be automatically created when you run a task, script or test your smart contracts.
// default networks: hardhat, localhost ("http://127.0.0.1:8545")
// rinkeby: {
// // url: `https://eth-ropsten.alchemyapi.io/v2/${ALCHEMY_API_KEY}`,
// // url: "https://rinkeby.infura.io/v3/",
// // accounts: [``]
// }
hardhat: {
// See: https://github.com/regen-network/toucan-bridge/issues/37
allowUnlimitedContractSize: true,
},
matic: {
...sharedNetworkConfig,
gas: GAS_LIMIT || 5000000,
gasPrice: GAS_PRICE || 50000000000,
url: "https://matic-mainnet.chainstacklabs.com",
},
mumbai: {
...sharedNetworkConfig,
url: "https://matic-mumbai.chainstacklabs.com",
},
},
etherscan: {
apiKey: {
polygon: POLYGONSCAN_API_KEY,
polygonMumbai: POLYGONSCAN_API_KEY,
},
},
};