-
Notifications
You must be signed in to change notification settings - Fork 2
/
hardhat.config.ts
62 lines (56 loc) · 1.27 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
import * as dotenv from "dotenv"
import "@nomicfoundation/hardhat-chai-matchers"
import "@nomiclabs/hardhat-etherscan"
import "@nomiclabs/hardhat-ethers"
import "@typechain/hardhat"
import "hardhat-contract-sizer"
import "hardhat-gas-reporter"
import "solidity-coverage"
import "./tasks/accounts"
import "./tasks/composite"
import "./tasks/deploy"
import "./tasks/mine"
import "./tasks/mint"
import "./tasks/render"
dotenv.config()
const HARDHAT_NETWORK_CONFIG = {
chainId: 1337,
forking: {
url: process.env.MAINNET_URL || '',
blockNumber: 16501064,
},
allowUnlimitedContractSize: true,
}
const config = {
solidity: "0.8.17",
settings: {
optimizer: {
enabled: true,
runs: 1000,
},
},
networks: {
goerli: {
url: process.env.GOERLI_URL || "",
accounts:
process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [],
},
localhost: {
...HARDHAT_NETWORK_CONFIG,
},
hardhat: HARDHAT_NETWORK_CONFIG,
},
gasReporter: {
enabled: process.env.REPORT_GAS !== undefined,
coinmarketcap: process.env.COINMARKETCAP_API_KEY,
currency: "USD",
gasPrice: 20,
},
etherscan: {
apiKey: process.env.ETHERSCAN_API_KEY,
},
mocha: {
timeout: 120_000_000,
},
}
export default config