-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhardhat.config.js
More file actions
80 lines (77 loc) · 1.58 KB
/
hardhat.config.js
File metadata and controls
80 lines (77 loc) · 1.58 KB
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
require("@nomiclabs/hardhat-ethers");
require("@nomiclabs/hardhat-etherscan");
require("hardhat-gas-reporter");
require("hardhat-abi-exporter");
require("./tasks/deployment-tasks.js");
require("./tasks/subgraph-bridge-tasks.js");
const {
privateKey,
maticVigilKey,
etherscanKey,
polygonscanKey,
alchemyGoerliKey,
infuraKey
} = require('./secrets.json');
module.exports = {
networks: {
hardhat: {
},
mumbai: {
url: "https://rpc-mumbai.maticvigil.com/v1/" + maticVigilKey,
accounts: [privateKey],
gas: 5500000,
gasPrice: 7000000000
},
matic: {
url: "https://rpc-mainnet.maticvigil.com/v1/" + maticVigilKey,
accounts: [privateKey],
gasPrice: 50000000000
},
goerli: {
url: "https://goerli.infura.io/v3/" + infuraKey,
accounts: [privateKey]
}
// goerli: {
// url: "https://eth-goerli.alchemyapi.io/v2/" + alchemyGoerliKey,
// accounts: [privateKey]
// }
},
solidity: {
version: "0.8.0",
settings: {
optimizer: {
enabled: true,
runs: 200
}
}
},
paths: {
sources: "./contracts",
tests: "./test",
cache: "./cache",
artifacts: "./artifacts"
},
mocha: {
timeout: 20000
},
gasReporter: {
enabled: true
},
abiExporter: {
path: './data/abi',
runOnCompile: true,
clear: true,
flat: true,
only: [],
spacing: 2,
pretty: true,
},
etherscan: {
apiKey: {
mainnet: etherscanKey,
goerli: etherscanKey,
polygon: polygonscanKey,
polygonMumbai: polygonscanKey
}
}
}