-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathhelper-truffle-config.js
More file actions
51 lines (49 loc) · 2.05 KB
/
Copy pathhelper-truffle-config.js
File metadata and controls
51 lines (49 loc) · 2.05 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
const networkConfig = {
test: {
fee: "100000000000000000",
keyHash: "0xd89b2bf150e3b9e13446986e571fb9cab24b13cea0a43ea20a6049a85cc807cc",
jobId: "29fa9aa13bf1468788b7cc4a500a45b8",
fundAmount: "1000000000000000000",
keepersUpdateInterval: "30",
ethUsdPriceFeed: "0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419",
},
ganache: {
fee: "100000000000000000",
keyHash: "0xd89b2bf150e3b9e13446986e571fb9cab24b13cea0a43ea20a6049a85cc807cc",
jobId: "29fa9aa13bf1468788b7cc4a500a45b8",
fundAmount: "1000000000000000000",
keepersUpdateInterval: "30",
ethUsdPriceFeed: "0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419",
},
sepolia: {
chainId: "11155111",
linkToken: "0x779877A7B0D9E8603169DdbD7836e478b4624789",
ethUsdPriceFeed: "0x694AA1769357215DE4FAC081bf1f309aDC325306",
keyHash: "0x474e34a077df58807dbe9c96d3c009b23b3c6d0cce433e59bbf5b34f823bc56c",
vrfCoordinator: "0x8103B0A8A00be2DDC778e6e7eaa21791Cd364625",
oracle: "0x6090149792dAAeE9D1D568c9f9a6F6B46AA29eFD",
jobId: "ca98366cc7314957b8c012c72f05aeeb",
fee: "100000000000000000",
fundAmount: "100000000000000000", // 0.1
keepersUpdateInterval: "30",
subId: "777", // add your subscription Id here!
},
goerli: {
chainId: "5",
linkToken: "0x326C977E6efc84E512bB9C30f76E30c160eD06FB",
ethUsdPriceFeed: "0xD4a33860578De61DBAbDc8BFdb98FD742fA7028e",
keyHash: "0x79d3d8832d904592c0bf9818b621522c988bb8b0c05cdc3b15aea1b6e8db0c15",
vrfCoordinator: "0x2Ca8E0C643bDe4C2E08ab1fA0da3401AdAD7734D",
oracle: "0xCC79157eb46F5624204f47AB42b3906cAA40eaB7",
jobId: "ca98366cc7314957b8c012c72f05aeeb",
fee: "100000000000000000",
fundAmount: "100000000000000000", // 0.1
keepersUpdateInterval: "30",
subId: "0", // add your subscription Id here!
},
}
const developmentChains = ["test", "development", "ganache"]
module.exports = {
networkConfig,
developmentChains,
}