-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelper-hardhat-config.js
31 lines (28 loc) · 997 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
const { ethers } = require("hardhat")
const networkConfig = {
11155111: {
name: "Sepolia",
ETH_USD_PriceFeed: "0x694AA1769357215DE4FAC081bf1f309aDC325306",
vrfCoordinatorAddress: "0x9DdfaCa8183c41ad55329BdeeD9F6A8d53168B1B",
keyHash: "0x787d74caea10b2b357790d5b5247c2f63d1d91572a9846f780606e4d953677ae",
subscriptionId:
"105752341827482583864337633755448387871087161753199591116132016548161125172134",
entranceFee: ethers.parseEther("0.01"),
callBackGasLimit: "300000",
interval: "30",
},
31337: {
name: "hardhat",
entranceFee: ethers.parseEther("100"),
vrfCoordinatorAddress: "0x9DdfaCa8183c41ad55329BdeeD9F6A8d53168B1B",
keyHash: "0x787d74caea10b2b357790d5b5247c2f63d1d91572a9846f780606e4d953677ae",
subscriptionId: "",
callBackGasLimit: "500000",
interval: "30",
},
}
const developmentChains = ["hardhat", "localhost"]
module.exports = {
networkConfig,
developmentChains,
}