-
Notifications
You must be signed in to change notification settings - Fork 35
/
hardhat.config.ts
187 lines (178 loc) · 4.32 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
import "@nomiclabs/hardhat-waffle";
import "hardhat-deploy";
import "hardhat-gas-reporter";
import "solidity-coverage";
import "@tenderly/hardhat-tenderly";
import "@nomicfoundation/hardhat-verify";
import dotenv from "dotenv";
import type { HttpNetworkUserConfig } from "hardhat/types";
import type { MochaOptions } from "mocha";
import yargs from "yargs";
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,
} = process.env;
const DEFAULT_MNEMONIC =
"candy maple cake sugar pudding cream honey rich smooth crumble sweet treat";
const sharedNetworkConfig: HttpNetworkUserConfig = {};
if (PK) {
sharedNetworkConfig.accounts = [PK];
} else {
sharedNetworkConfig.accounts = {
mnemonic: MNEMONIC || DEFAULT_MNEMONIC,
};
}
if (
["rinkeby", "goerli", "mainnet"].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}`,
);
}
if (NODE_URL !== undefined) {
sharedNetworkConfig.url = NODE_URL;
}
const mocha: MochaOptions = {};
let initialBaseFeePerGas: number | undefined = undefined;
switch (MOCHA_CONF) {
case undefined:
break;
case "coverage":
// End to end tests are skipped because:
// - coverage tool does not play well with proxy deployment with
// hardhat-deploy
// - coverage compiles without optimizer and, unlike Waffle, hardhat-deploy
// strictly enforces the contract size limits from EIP-170
mocha.grep = /^(?!E2E)/;
// Note: unit is Wei, not GWei. This is a workaround to make the coverage
// tool work with the London hardfork.
initialBaseFeePerGas = 1;
break;
case "ignored in coverage":
mocha.grep = /^E2E/;
break;
default:
throw new Error("Invalid MOCHA_CONF");
}
export default {
mocha,
paths: {
artifacts: "build/artifacts",
cache: "build/cache",
deploy: "src/deploy",
sources: "src/contracts",
},
solidity: {
compilers: [
{
version: "0.7.6",
settings: {
optimizer: {
enabled: true,
runs: 1000000,
},
},
},
{
// Compiler for the Gas Token v1
version: "0.4.11",
},
],
},
networks: {
hardhat: {
blockGasLimit: 12.5e6,
initialBaseFeePerGas,
},
mainnet: {
url: `https://mainnet.infura.io/v3/${INFURA_KEY}`,
...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: {
url: "https://ethereum-sepolia.publicnode.com",
...sharedNetworkConfig,
chainId: 11155111,
},
xdai: {
url: "https://rpc.gnosischain.com",
...sharedNetworkConfig,
chainId: 100,
},
arbitrumOne: {
...sharedNetworkConfig,
url: "https://arb1.arbitrum.io/rpc",
},
base: {
...sharedNetworkConfig,
url: "https://mainnet.base.org",
chainId: 8453,
},
},
namedAccounts: {
// Note: accounts defined by a number refer to the the accounts as configured
// by the current network.
deployer: 0,
owner: {
// The contract deployment addresses depend on the owner address.
// To have the same addresses on all networks, the owner must be the same.
default: "0x6Fb5916c0f57f88004d5b5EB25f6f4D77353a1eD",
hardhat: 1,
localhost: 1,
},
manager: {
default: "0x6Fb5916c0f57f88004d5b5EB25f6f4D77353a1eD",
hardhat: 2,
localhost: 2,
},
},
gasReporter: {
enabled: REPORT_GAS ? true : false,
currency: "USD",
gasPrice: 21,
},
etherscan: {
apiKey: {
sepolia: ETHERSCAN_API_KEY,
arbitrumOne: ETHERSCAN_API_KEY,
base: ETHERSCAN_API_KEY,
},
customChains: [
{
network: "base",
chainId: 8453,
urls: {
apiURL: "https://api.basescan.org/api",
browserURL: "https://basescan.org",
},
},
],
},
};