-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhelper-hardhat-config.ts
84 lines (80 loc) · 2.68 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
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",
},
42: {
name: "kovan",
linkToken: "0xa36085F69e2889c224210F603D836748e7dC0088",
ethUsdPriceFeed: "0x9326BFA02ADD2366b30bacB125260Af641031331",
oracle: "0xc57b33452b4f7bb189bb5afae9cc4aba1f7a4fd8",
jobId: "d5270d1c311941d0b08bead21fea7747",
fee: "100000000000000000",
fundAmount: BigNumber.from("1000000000000000000"),
keepersUpdateInterval: "30",
},
4: {
name: "rinkeby",
linkToken: "0x01be23585060835e02b77ef475b0cc51aa1e0709",
ethUsdPriceFeed: "0x8A753747A1Fa494EC906cE90E9f37563A8AF630e",
keyHash: "0xd89b2bf150e3b9e13446986e571fb9cab24b13cea0a43ea20a6049a85cc807cc",
vrfCoordinator: "0x6168499c0cFfCaCD319c818142124B7A15E857ab",
oracle: "0xc57b33452b4f7bb189bb5afae9cc4aba1f7a4fd8",
jobId: "6b88e0402e5d415eb946e528b8e0c7ba",
fee: "100000000000000000",
fundAmount: BigNumber.from("1000000000000000000"),
keepersUpdateInterval: "30",
},
1: {
name: "mainnet",
linkToken: "0x514910771af9ca656af840dff83e8264ecf986ca",
fundAmount: BigNumber.from("0"),
keepersUpdateInterval: "30",
},
5: {
name: "goerli",
linkToken: "0x326c977e6efc84e512bb9c30f76e30c160ed06fb",
fundAmount: BigNumber.from("0"),
},
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