-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhardhat.config.js
More file actions
56 lines (50 loc) · 1013 Bytes
/
hardhat.config.js
File metadata and controls
56 lines (50 loc) · 1013 Bytes
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
require("@nomicfoundation/hardhat-toolbox");
require("hardhat-gas-reporter");
/** @type import('hardhat/config').HardhatUserConfig */
module.exports = {
solidity: {
version: "0.8.29",
settings: {
optimizer: {
enabled: true,
runs: 2 ** 32 - 1
},
},
},
paths: {
sources: './contracts',
},
defaultNetwork: 'localhost',
// gasReporter: {
// currency: 'USD',
// gasPrice: <PRICE>
// }
// gasReporter: {
// enabled: true
// },
mocha: {
timeout: 100000000
},
networks: {
hardhat: {
forking: {
enabled: true,
url: 'https://ethereum-rpc.publicnode.com',
// url: 'https://mainnet.optimism.io',
// url: 'https://arb1.arbitrum.io/rpc',
},
},
localhost: {
url: 'http://127.0.0.1:8545',
},
eth: {
url: 'https://eth.drpc.org',
},
op: {
url: 'https://mainnet.optimism.io',
},
arb: {
url: 'https://arb1.arbitrum.io/rpc',
},
},
};