forked from cowprotocol/token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.config.ts
138 lines (128 loc) · 2.93 KB
/
hardhat.config.ts
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
import "@nomiclabs/hardhat-waffle";
import "hardhat-gas-reporter";
import "solidity-coverage";
import "@nomiclabs/hardhat-etherscan";
import dotenv from "dotenv";
import { utils } from "ethers";
import type { HttpNetworkUserConfig } from "hardhat/types";
import yargs from "yargs";
import { setupTasks } from "./src/tasks";
import { setupTestConfigs } from "./test/test-management";
const argv = yargs
.option("network", {
type: "string",
default: "hardhat",
})
.help(false)
.version(false)
.parseSync();
// Load environment variables.
dotenv.config();
const {
INFURA_KEY,
MNEMONIC,
PK,
REPORT_GAS,
MOCHA_CONF,
NODE_URL,
ETHERSCAN_API_KEY,
GAS_PRICE_GWEI,
} = process.env;
const DEFAULT_MNEMONIC =
"candy maple cake sugar pudding cream honey rich smooth crumble sweet treat";
if (
["rinkeby", "goerli"].includes(argv.network) &&
NODE_URL === undefined &&
INFURA_KEY === undefined
) {
throw new Error(
`Could not find Infura key in env, unable to connect to network ${argv.network}`,
);
}
const sharedNetworkConfig: HttpNetworkUserConfig = {};
if (NODE_URL) {
sharedNetworkConfig.url = NODE_URL;
}
if (PK) {
sharedNetworkConfig.accounts = [PK];
} else {
sharedNetworkConfig.accounts = {
mnemonic: MNEMONIC || DEFAULT_MNEMONIC,
};
}
if (GAS_PRICE_GWEI) {
sharedNetworkConfig.gasPrice = utils
.parseUnits(GAS_PRICE_GWEI, "gwei")
.toNumber();
}
const { mocha, initialBaseFeePerGas, optimizerDetails } =
setupTestConfigs(MOCHA_CONF);
setupTasks();
export default {
mocha,
paths: {
artifacts: "build/artifacts",
cache: "build/cache",
sources: "src/contracts",
},
solidity: {
compilers: [
{
version: "0.8.10",
settings: {
optimizer: {
enabled: true,
runs: 1000000,
details: optimizerDetails,
},
},
},
],
},
networks: {
hardhat: {
blockGasLimit: 12.5e6,
initialBaseFeePerGas,
},
mainnet: {
url: "https://rpc.mevblocker.io/",
...sharedNetworkConfig,
chainId: 1,
},
rinkeby: {
url: `https://rinkeby.infura.io/v3/${INFURA_KEY}`,
...sharedNetworkConfig,
chainId: 4,
},
goerli: {
url: `https://goerli.infura.io/v3/${INFURA_KEY}`,
...sharedNetworkConfig,
chainId: 5,
},
sepolia: {
// For more public RPCs: https://chainlist.org/chain/11155111
url: "https://ethereum-sepolia.publicnode.com",
...sharedNetworkConfig,
chainId: 11155111,
},
gnosischain: {
...sharedNetworkConfig,
url: "https://rpc.gnosischain.com",
chainId: 100,
},
},
gasReporter: {
enabled: REPORT_GAS ? true : false,
currency: "USD",
gasPrice: 100,
},
etherscan: {
apiKey: {
gnosis: ETHERSCAN_API_KEY,
mainnet: ETHERSCAN_API_KEY,
rinkeby: ETHERSCAN_API_KEY,
goerli: ETHERSCAN_API_KEY,
sepolia: ETHERSCAN_API_KEY,
},
},
};