generated from smartcontractkit/hardhat-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
helper-hardhat-config.ts
69 lines (65 loc) · 2.35 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",
},
5: {
name: "goerli",
linkToken: "0x326c977e6efc84e512bb9c30f76e30c160ed06fb",
ethUsdPriceFeed: "0xD4a33860578De61DBAbDc8BFdb98FD742fA7028e",
keyHash: "0x79d3d8832d904592c0bf9818b621522c988bb8b0c05cdc3b15aea1b6e8db0c15",
vrfCoordinator: "0x2Ca8E0C643bDe4C2E08ab1fA0da3401AdAD7734D",
oracle: "0xCC79157eb46F5624204f47AB42b3906cAA40eaB7",
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