-
Notifications
You must be signed in to change notification settings - Fork 3
/
hardhat.config.ts
82 lines (76 loc) · 2.28 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
/* eslint-disable import/no-extraneous-dependencies */
import fs from "fs";
import path from "path";
import dotenv from "dotenv";
import {HardhatUserConfig} from "hardhat/config";
import "@nomicfoundation/hardhat-toolbox";
import "@nomiclabs/hardhat-etherscan";
dotenv.config();
const {NODE_ENV} = process.env;
if (NODE_ENV && fs.existsSync(path.resolve(`.env.${NODE_ENV}`))) {
const variables = dotenv.parse(fs.readFileSync(path.resolve(`.env.${NODE_ENV}`)));
for (const key in variables) {
process.env[key] = variables[key];
}
}
const config: HardhatUserConfig = {
solidity: {
compilers: [
{
version: "0.8.17",
settings: {
optimizer: {
enabled: true,
runs: 1000,
},
},
},
{
version: "0.4.18",
settings: {
optimizer: {
enabled: true,
runs: 1000,
},
},
},
],
},
etherscan: {
apiKey: {
bsc: process.env.BSCSCAN_API_KEY as string,
arbitrumOne: process.env.ARBISCAN_API_KEY as string,
polygon: process.env.POLYGONSCAN_API_KEY as string,
avalanche: process.env.SNOWTRACE_API_KEY as string,
opera: process.env.FTMSCAN_API_KEY as string,
optimisticEthereum: process.env.OPTIMISTICSCAN_API_KEY as string,
},
},
networks: {
bsc: {
url: "https://rpc.ankr.com/bsc",
accounts: process.env.PRIVATE_KEY ? [process.env.PRIVATE_KEY as string] : undefined,
},
arbitrumOne: {
url: "https://rpc.ankr.com/arbitrum",
accounts: process.env.PRIVATE_KEY ? [process.env.PRIVATE_KEY as string] : undefined,
},
polygon: {
url: "https://rpc.ankr.com/polygon",
accounts: process.env.PRIVATE_KEY ? [process.env.PRIVATE_KEY as string] : undefined,
},
avalanche: {
url: "https://rpc.ankr.com/avalanche",
accounts: process.env.PRIVATE_KEY ? [process.env.PRIVATE_KEY as string] : undefined,
},
opera: {
url: "https://rpc.ankr.com/fantom",
accounts: process.env.PRIVATE_KEY ? [process.env.PRIVATE_KEY as string] : undefined,
},
optimisticEthereum: {
url: "https://rpc.ankr.com/optimism",
accounts: process.env.PRIVATE_KEY ? [process.env.PRIVATE_KEY as string] : undefined,
},
},
};
export default config;