-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.ts
More file actions
42 lines (40 loc) · 1.03 KB
/
config.ts
File metadata and controls
42 lines (40 loc) · 1.03 KB
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
export const create3Factory = "0xf2b6544589ab65e731883a0244cbefe5735322c5";
export type VerifierName =
| "AcrossV3Verification"
| "CCTPVerification"
| "GnosisBridgeRouterVerification";
// https://github.com/SocketDotTech/ll-core-v2/blob/main/src/addresses/index.ts
export const routeIdConfigs: Record<
string,
Partial<Record<VerifierName, number>>
> = {
avalanche: {
AcrossV3Verification: undefined, // across not supported on avalanche
CCTPVerification: 385,
},
base: {
AcrossV3Verification: 411,
CCTPVerification: 397,
},
xdai: {
AcrossV3Verification: undefined, // across not supported on xdai
CCTPVerification: undefined, // cctp not supported on xdai
},
mainnet: {
AcrossV3Verification: 429,
CCTPVerification: 407,
GnosisBridgeRouterVerification: 444,
},
arbitrum: {
AcrossV3Verification: 415,
CCTPVerification: 396,
},
opt: {
AcrossV3Verification: 413,
CCTPVerification: 396,
},
polygon: {
AcrossV3Verification: 416,
CCTPVerification: 403,
},
};