forked from orbit-chain/bridge-launch-governance
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.js
101 lines (94 loc) · 3.26 KB
/
settings.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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
module.exports = {
// operating chain list
chainList: [
'eth-v2',
'klaytn-v2',
'icon-v2',
'orbit',
],
// Bridge Addresses
BridgeAddress: {
OrbitHubContract: "0xb5680a55d627c52de992e3ea52a86f19da475399",
EthBridgeContract: "0x78d80c33f23a3395c52b3a8c0d0b12253771b9f7",
KlaytnBridgeContract: "0x1af95905bb0042803f90e36d79d13aea6cd58969",
IconBridgeContract: "0x6819374cb320d1184a681e2b53ad858d16b9c8fa",
OrbitBridgeContract: "0x77a49649964a186Fd2b8754758c39c9438a6E9aB",
MessageMultiSigWallet: {
Hub: "0xfffec9385a40a12f8526fefc0036b6fc44b68092",
Eth: "0xfffec9385a40a12f8526fefc0036b6fc44b68092",
Klaytn: "0xfffec9385a40a12f8526fefc0036b6fc44b68092",
Icon: "0xfffec9385a40a12f8526fefc0036b6fc44b68092",
Orbit: "0xfffec9385a40a12f8526fefc0036b6fc44b68092",
},
Eth: {
EthVaultContract: "0x1bf68a9d1eaee7826b3593c20a0ca93293cb489a",
},
Icon: {
IconMinterContract: "cx0eb215b6303142e37c0c9123abd1377feb423f0e",
MessageMultiSigWallet: "cxa032c913d5d9b7577e2b19f39d91985e5c260577",
},
Klay: {
KlaytnMinterContract: "0x60070F5D2e1C1001400A04F152E7ABD43410F7B9",
MessageMultiSigWallet: "0x7eAF19361f709A1e4456da6A6DAA044821Af8B37",
},
Orbit: {
OrbitMinterContract: "0x1b57Ce997Ca6a009ce54bB2d37DEbEBadFDbBb06",
MessageMultiSigWallet: "0xfffec9385a40a12f8526fefc0036b6fc44b68092",
},
Governance: {
Chain: "ETH",
Address: "0x1bf68a9d1eaee7826b3593c20a0ca93293cb489a",
Bytes: "0x1bf68a9d1eaee7826b3593c20a0ca93293cb489a",
Id: "0x50f408f4b0fb17bf4f5143de4bd95802410d00422f008e9deef06fb101a0f060",
},
},
// Node Endpoints
Endpoints : {
Orbit: {
rpc : "https://bridge-en.orbitchain.io:7443",
socket: "wss://bridge-en.orbitchain.io:7444",
},
Eth : {
rpc : "https://mainnet.infura.io/v3/[PROJECT_ID]",
socket : "wss://mainnet.infura.io/ws/v3/[PROJECT_ID]",
},
Klaytn: {
isKas: true,
Kas: {
// KAS Default
rpc: "https://node-api.klaytnapi.com/v1/klaytn",
chainId: 8217,
// Your Credential
accessKeyId: "",
secretAccessKey: ""
}
},
Icon: {
api: 'https://ctz.solidwallet.io/api/v3',
rpc: 'https://ctz.solidwallet.io/api/v3',
debug: 'https://ctz.solidwallet.io/api/debug/v3',
version: 3,
nid: 1
},
Parser: {
api: "http://localhost:8084",
},
Syncer: {
api: "http://localhost:9797/v1",
},
},
DEBUG: true,
LOGLEVEL: 'debug',
ETH_CHAIN_ID: '0x1',
// WIP: validator things.
VALIDATOR_ACCOUNT: {
TYPE: "PK",
DATA: "0000000000000000000000000000000000000000000000000000000000000000",
},
VALIDATOR_MONITOR: {
Ozys: {
Endpoint: "https://bridge-en.orbitchain.io:7743/v1/validator/report",
Interval: 60 * 1000,
},
},
}