-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelper-hardhat-config.ts
69 lines (65 loc) · 2.36 KB
/
helper-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
import { BigNumber } from "ethers"
type NetworkConfigItem = {
name: string
fundAmount: BigNumber
fee?: string
keyHash?: string
interval?: string
linkToken?: string
vrfCoordinator?: string
keepersUpdateInterval?: string
oracle?: string
jobId?: string
ethUsdPriceFeed?: string
}
type NetworkConfigMap = {
[chainId: string]: NetworkConfigItem
}
export const networkConfig: NetworkConfigMap = {
default: {
name: "hardhat",
fee: "100000000000000000",
keyHash: "0xd89b2bf150e3b9e13446986e571fb9cab24b13cea0a43ea20a6049a85cc807cc",
jobId: "29fa9aa13bf1468788b7cc4a500a45b8",
fundAmount: BigNumber.from("1000000000000000000"),
keepersUpdateInterval: "30",
},
31337: {
name: "localhost",
fee: "100000000000000000",
keyHash: "0xd89b2bf150e3b9e13446986e571fb9cab24b13cea0a43ea20a6049a85cc807cc",
jobId: "29fa9aa13bf1468788b7cc4a500a45b8",
fundAmount: BigNumber.from("1000000000000000000"),
keepersUpdateInterval: "30",
ethUsdPriceFeed: "0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419",
},
1: {
name: "mainnet",
linkToken: "0x514910771af9ca656af840dff83e8264ecf986ca",
fundAmount: BigNumber.from("0"),
keepersUpdateInterval: "30",
},
11155111: {
name: "sepolia",
linkToken: "0x779877A7B0D9E8603169DdbD7836e478b4624789",
ethUsdPriceFeed: "0x694AA1769357215DE4FAC081bf1f309aDC325306",
keyHash: "0x474e34a077df58807dbe9c96d3c009b23b3c6d0cce433e59bbf5b34f823bc56c",
vrfCoordinator: "0x8103B0A8A00be2DDC778e6e7eaa21791Cd364625",
oracle: "0x6090149792dAAeE9D1D568c9f9a6F6B46AA29eFD",
jobId: "ca98366cc7314957b8c012c72f05aeeb",
fee: "100000000000000000",
fundAmount: BigNumber.from("100000000000000000"),
keepersUpdateInterval: "30",
},
137: {
name: "polygon",
linkToken: "0xb0897686c545045afc77cf20ec7a532e3120e0f1",
ethUsdPriceFeed: "0xF9680D99D6C9589e2a93a78A04A279e509205945",
oracle: "0x0a31078cd57d23bf9e8e8f1ba78356ca2090569e",
jobId: "12b86114fa9e46bab3ca436f88e1a912",
fee: "100000000000000",
fundAmount: BigNumber.from("100000000000000"),
},
}
export const developmentChains: string[] = ["hardhat", "localhost"]
export const VERIFICATION_BLOCK_CONFIRMATIONS = 6