-
Notifications
You must be signed in to change notification settings - Fork 0
/
helper-hardhat-config.ts
53 lines (50 loc) · 1.21 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
export interface networkConfigItem {
chainId: number
goldskySlug?: string
deployer: string
usdc?: string
usdcAdmin?: string
bot?: string
protocolTreasury?: string
StartBlock?: number
}
export interface networkConfigInfo {
[key: string]: networkConfigItem
}
export const networkConfig: networkConfigInfo = {
hardhat: {
chainId: 31337,
goldskySlug: "hardhat",
deployer: "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266",
usdcAdmin: "",
bot: "",
protocolTreasury: ""
},
localhost: {
chainId: 31337,
goldskySlug: "localhost",
deployer: "",
usdcAdmin: "",
bot: "",
protocolTreasury: ""
},
baseSepolia: {
chainId: 84532,
goldskySlug: "",
deployer: "0x2dC727b15203992B65D7ADbc0108781f1Cb1F9F3",
usdcAdmin: "",
bot: "",
protocolTreasury: ""
},
seiTestnet: {
chainId: 1328,
goldskySlug: "sei-testnet",
deployer: "",
usdcAdmin: "",
bot: "",
protocolTreasury: ""
},
}
export const forkedChain = ["localhost"]
export const testNetworkChains = [""]
export const VERIFICATION_BLOCK_CONFIRMATIONS = 6