-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardhat.config.ts
160 lines (152 loc) · 3.56 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
import "@nomicfoundation/hardhat-toolbox";
import dotenv from "dotenv";
import yargs from "yargs";
import type { HttpNetworkUserConfig } from "hardhat/types";
const { network } = yargs
.option("network", {
type: "string",
default: "hardhat",
})
.help(false)
.version(false)
.parseSync();
// Load environment variables.
dotenv.config();
const { INFURA_KEY, MNEMONIC, ETHERSCAN_API_KEY, PK, ALCHEMY_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 (
["mainnet", "goerli", "sepolia", "ropsten"].includes(network) &&
INFURA_KEY === undefined
) {
throw new Error(
`Could not find Infura key in env, unable to connect to network ${network}`
);
}
export default {
paths: {
artifacts: "build/artifacts",
cache: "build/cache",
deploy: "src/deploy",
sources: "contracts",
},
solidity: {
compilers: [
{
version: "0.8.20",
settings: {
optimizer: {
enabled: true,
runs: 1000,
},
},
},
{ version: "0.6.12" },
],
},
networks: {
mainnet: {
...sharedNetworkConfig,
url: `https://mainnet.infura.io/v3/${INFURA_KEY}`,
},
gnosis: {
...sharedNetworkConfig,
url: "https://rpc.gnosischain.com",
},
goerli: {
...sharedNetworkConfig,
url: `https://goerli.infura.io/v3/${INFURA_KEY}`,
},
sepolia: {
...sharedNetworkConfig,
url: `https://sepolia.infura.io/v3/${INFURA_KEY}`,
},
arbitrum: {
...sharedNetworkConfig,
url: `https://arb-mainnet.g.alchemy.com/v2/${ALCHEMY_KEY}`,
},
optimism: {
...sharedNetworkConfig,
url: `https://opt-mainnet.g.alchemy.com/v2/${ALCHEMY_KEY}`,
},
polygon: {
...sharedNetworkConfig,
url: "https://rpc.ankr.com/polygon",
},
mumbai: {
...sharedNetworkConfig,
url: `https://polygon-mumbai.g.alchemy.com/v2/${ALCHEMY_KEY}`,
},
avalanche: {
...sharedNetworkConfig,
url: `https://avalanche-mainnet.infura.io/v3/${INFURA_KEY}`,
},
bsc: {
...sharedNetworkConfig,
url: "https://bsc-dataseed.binance.org",
},
lineaGoerli: {
...sharedNetworkConfig,
url: `https://linea-goerli.infura.io/v3/${INFURA_KEY}`,
},
core: {
...sharedNetworkConfig,
url: "https://rpc.coredao.org",
},
coreTestnet: {
...sharedNetworkConfig,
url: "https://rpc.test.btcs.network",
},
base: {
...sharedNetworkConfig,
url: "https://mainnet.base.org",
},
hardhat: {
...sharedNetworkConfig,
},
},
namedAccounts: {
deployer: 0,
},
mocha: {
timeout: 2000000,
},
etherscan: {
apiKey: ETHERSCAN_API_KEY,
customChains: [
{
network: "coreTestnet",
chainId: 1115,
urls: {
apiURL: "https://api.test.btcs.network/api",
browserURL: "https://scan.test.btcs.network/",
},
},
{
network: "core",
chainId: 1116,
urls: {
apiURL: "https://openapi.coredao.org/api",
browserURL: "https://scan.coredao.org/",
},
},
{
network: "base",
chainId: 8453,
urls: {
apiURL: "https://api.basescan.org/api",
browserURL: "https://basescan.org/",
},
},
],
},
};