forked from gnosis/cow-token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.config.ts
132 lines (121 loc) · 2.8 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
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";
const sharedNetworkConfig: HttpNetworkUserConfig = {};
if (PK) {
sharedNetworkConfig.accounts = [PK];
} else {
sharedNetworkConfig.accounts = {
mnemonic: MNEMONIC || DEFAULT_MNEMONIC,
};
}
if (
["rinkeby", "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, initialBaseFeePerGas, optimizerDetails } =
setupTestConfigs(MOCHA_CONF);
setupTasks();
export default {
mocha,
paths: {
artifacts: "build/artifacts",
cache: "build/cache",
deploy: "src/deploy",
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://mainnet.infura.io/v3/${INFURA_KEY}`,
...sharedNetworkConfig,
chainId: 1,
},
rinkeby: {
url: `https://rinkeby.infura.io/v3/${INFURA_KEY}`,
...sharedNetworkConfig,
chainId: 4,
},
gnosischain: {
...sharedNetworkConfig,
url: "https://rpc.gnosischain.com",
gasPrice: GAS_PRICE_GWEI
? parseInt(
utils.parseUnits(GAS_PRICE_GWEI.toString(), "gwei").toString(),
)
: "auto",
chainId: 100,
},
},
namedAccounts: {
// Note: accounts defined by a number refer to the the accounts as configured
// by the current network.
deployer: 0,
},
gasReporter: {
enabled: REPORT_GAS ? true : false,
currency: "USD",
gasPrice: 21,
},
etherscan: {
apiKey: {
xdai: "any api key is good currently",
mainnet: ETHERSCAN_API_KEY,
rinkeby: ETHERSCAN_API_KEY,
},
},
};