-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelper-hardhat-config.js
32 lines (30 loc) · 1012 Bytes
/
helper-hardhat-config.js
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
const networkConfig = {
default: {
name: "rinekby",
keepersUpdateInterval: "30",
nftPrice: "10000000000000000",
},
4: {
name: "rinkeby",
subscriptionId: "5979",
ethUsdPriceFeed: "0x8A753747A1Fa494EC906cE90E9f37563A8AF630e",
gasLane: "0xd89b2bf150e3b9e13446986e571fb9cab24b13cea0a43ea20a6049a85cc807cc", // 30 gwei
keepersUpdateInterval: "30",
callbackGasLimit: "500000", // 500,000 gas
vrfCoordinatorV2: "0x6168499c0cFfCaCD319c818142124B7A15E857ab",
nftPrice: "10000000000000000",
},
31337: {
name: "localhost",
subscriptionId: "5979",
gasLane: "0xd89b2bf150e3b9e13446986e571fb9cab24b13cea0a43ea20a6049a85cc807cc", // 30 gwei
keepersUpdateInterval: "30",
callbackGasLimit: "500000", // 500,000 gas
nftPrice: "10000000000000000",
},
}
const developementChains = ["hardhat", "localhost"]
module.exports = {
networkConfig,
developementChains,
}