-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhardhat.config.ts
151 lines (142 loc) · 3.75 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
import { HardhatUserConfig } from "hardhat/types";
import { config as dotenvConfig } from "dotenv";
import { resolve } from "path";
import path from "path";
import fs from "fs";
import "@nomiclabs/hardhat-ethers";
import "@nomiclabs/hardhat-waffle";
import "@typechain/hardhat";
import "hardhat-gas-reporter";
import "@nomiclabs/hardhat-etherscan";
import "@typechain/hardhat";
import "solidity-coverage";
import "hardhat-docgen";
import "hardhat-deploy";
import {
NETWORKS_RPC_URL,
NETWORKS_DEFAULT_GAS,
eEthereumNetwork,
CURRENT_BLOCK_NUMBER,
} from "./helper-hardhat-config";
const SKIP_LOAD = process.env.SKIP_LOAD === "true";
const DEFAULT_BLOCK_GAS_LIMIT = 0x1fffffffffffff;
const DEFAULT_GAS_MUL = 5;
const HARDFORK = "london";
const MNEMONIC_PATH = "m/44'/60'/0'/0";
if (!SKIP_LOAD) {
["", "deployment", "actions"].forEach(folder => {
const tasksPath = path.join(__dirname, "tasks", folder);
fs.readdirSync(tasksPath)
.filter(pth => pth.includes(".ts"))
.forEach(task => {
require(`${tasksPath}/${task}`);
});
});
}
dotenvConfig({ path: resolve(__dirname, "./.env") });
const chainIds = {
ganache: 1337,
goerli: 5,
hardhat: 31337,
kovan: 42,
mainnet: 1,
rinkeby: 4,
ropsten: 3,
};
// Ensure that we have all the environment variables we need.
let mnemonic: string;
if (!process.env.MNEMONIC) {
throw new Error("Please set your MNEMONIC in a .env file");
} else {
mnemonic = process.env.MNEMONIC as string;
}
let chainstackMainnetUrl: string;
if (!process.env.MAINNET_NODE_URL) {
throw new Error("Please set your MAINNET_NODE_URL in a .env file");
} else {
chainstackMainnetUrl = process.env.MAINNET_NODE_URL as string;
}
const getCommonNetworkConfig = (networkName: eEthereumNetwork, networkId: number) => ({
url: NETWORKS_RPC_URL[networkName],
hardfork: HARDFORK,
blockGasLimit: DEFAULT_BLOCK_GAS_LIMIT,
gasMultiplier: DEFAULT_GAS_MUL,
gasPrice: NETWORKS_DEFAULT_GAS[networkName],
chainId: networkId,
accounts: {
mnemonic,
path: MNEMONIC_PATH,
initialIndex: 0,
count: 20,
},
});
const buidlerConfig: HardhatUserConfig = {
defaultNetwork: "hardhat",
solidity: {
version: "0.6.12",
settings: {
optimizer: { enabled: true, runs: 200 },
evmVersion: "istanbul",
outputSelection: {
"*": {
"*": ["storageLayout"],
},
},
},
},
etherscan: {
apiKey: process.env.ETHERSCAN_API_KEY,
},
networks: {
staging: getCommonNetworkConfig(eEthereumNetwork.staging, chainIds.ganache),
localhost: {
url: NETWORKS_RPC_URL[eEthereumNetwork.hardhat],
chainId: chainIds.ganache,
},
kovan: getCommonNetworkConfig(eEthereumNetwork.kovan, chainIds.kovan),
hardhat: {
initialBaseFeePerGas: 1_00_000_000,
gasPrice: "auto",
forking: {
blockNumber: CURRENT_BLOCK_NUMBER,
url: chainstackMainnetUrl,
},
allowUnlimitedContractSize: true,
chainId: chainIds.ganache,
accounts: {
mnemonic,
path: MNEMONIC_PATH,
initialIndex: 0,
count: 20,
accountsBalance: "1000000000000000000000000000",
},
},
},
paths: {
artifacts: "./artifacts",
cache: "./cache",
sources: "./contracts",
tests: "./test",
},
mocha: {
timeout: 0,
},
gasReporter: {
currency: "USD",
gasPrice: 165,
enabled: process.env.REPORT_GAS == "true" ? true : false,
coinmarketcap: process.env.COINMARKETCAP_API,
excludeContracts: ["dependencies/", "mocks/"],
src: "contracts",
},
docgen: {
path: "./specification_docs",
clear: true,
runOnCompile: process.env.GENERATE_DOC_ON_COMPILE == "true" ? true : false,
},
typechain: {
outDir: "typechain",
target: "ethers-v5",
},
};
export default buidlerConfig;