@instadapp/interop-x 0.0.0-dev.ef78459 → 0.0.0-dev.f0a6281

Sign up to get free protection for your applications and to get access to all the features.
Files changed (98) hide show
  1. package/.env.example +2 -1
  2. package/bin/interop-x +1 -1
  3. package/dist/package.json +73 -0
  4. package/dist/src/abi/erc20.json +350 -0
  5. package/dist/src/abi/gnosisSafe.json +747 -0
  6. package/dist/src/abi/index.js +15 -0
  7. package/dist/src/abi/interopBridgeToken.json +298 -0
  8. package/dist/src/abi/interopXGateway.json +184 -0
  9. package/dist/src/api/index.js +33 -0
  10. package/dist/src/config/index.js +31 -0
  11. package/dist/src/constants/addresses.js +20 -0
  12. package/dist/{constants → src/constants}/index.js +2 -0
  13. package/dist/src/constants/itokens.js +13 -0
  14. package/dist/src/constants/tokens.js +107 -0
  15. package/dist/{db → src/db}/index.js +0 -0
  16. package/dist/{db → src/db}/models/index.js +1 -1
  17. package/dist/src/db/models/transaction.js +54 -0
  18. package/dist/{db → src/db}/sequelize.js +2 -1
  19. package/dist/src/index.js +130 -0
  20. package/dist/{logger → src/logger}/index.js +0 -0
  21. package/dist/{net → src/net}/index.js +0 -0
  22. package/dist/{net → src/net}/peer/index.js +8 -3
  23. package/dist/{net → src/net}/pool/index.js +32 -9
  24. package/dist/{net → src/net}/protocol/dial/BaseDialProtocol.js +0 -0
  25. package/dist/{net → src/net}/protocol/dial/SignatureDialProtocol.js +20 -12
  26. package/dist/src/net/protocol/dial/TransactionStatusDialProtocol.js +28 -0
  27. package/dist/{net → src/net}/protocol/index.js +44 -4
  28. package/dist/src/tasks/AutoUpdateTask.js +70 -0
  29. package/dist/{tasks → src/tasks}/BaseTask.js +13 -5
  30. package/dist/src/tasks/InteropBridge/ProcessWithdrawEvents.js +146 -0
  31. package/dist/src/tasks/InteropBridge/SyncWithdrawEvents.js +71 -0
  32. package/dist/src/tasks/InteropXGateway/ProcessDepositEvents.js +161 -0
  33. package/dist/src/tasks/InteropXGateway/SyncDepositEvents.js +74 -0
  34. package/dist/src/tasks/Transactions/SyncTransactionStatusTask.js +53 -0
  35. package/dist/src/tasks/index.js +44 -0
  36. package/dist/src/typechain/Erc20.js +2 -0
  37. package/dist/src/typechain/GnosisSafe.js +2 -0
  38. package/dist/src/typechain/InteropBridgeToken.js +2 -0
  39. package/dist/src/typechain/InteropXGateway.js +2 -0
  40. package/dist/src/typechain/common.js +2 -0
  41. package/dist/src/typechain/factories/Erc20__factory.js +367 -0
  42. package/dist/src/typechain/factories/GnosisSafe__factory.js +1174 -0
  43. package/dist/src/typechain/factories/InteropBridgeToken__factory.js +471 -0
  44. package/dist/src/typechain/factories/InteropXGateway__factory.js +265 -0
  45. package/dist/src/typechain/factories/index.js +14 -0
  46. package/dist/src/typechain/index.js +35 -0
  47. package/dist/{types.js → src/types.js} +0 -0
  48. package/dist/src/utils/index.js +238 -0
  49. package/package.json +18 -10
  50. package/patches/@ethersproject+properties+5.6.0.patch +13 -0
  51. package/src/abi/erc20.json +350 -0
  52. package/src/abi/gnosisSafe.json +747 -0
  53. package/src/abi/index.ts +11 -0
  54. package/src/abi/interopBridgeToken.json +298 -0
  55. package/src/abi/interopXGateway.json +184 -0
  56. package/src/api/index.ts +33 -0
  57. package/src/config/index.ts +17 -1
  58. package/src/constants/addresses.ts +9 -2
  59. package/src/constants/index.ts +2 -0
  60. package/src/constants/itokens.ts +10 -0
  61. package/src/constants/tokens.ts +104 -0
  62. package/src/db/models/index.ts +1 -1
  63. package/src/db/models/transaction.ts +96 -0
  64. package/src/db/sequelize.ts +2 -1
  65. package/src/index.ts +119 -7
  66. package/src/net/peer/index.ts +9 -7
  67. package/src/net/pool/index.ts +41 -11
  68. package/src/net/protocol/dial/SignatureDialProtocol.ts +24 -15
  69. package/src/net/protocol/dial/TransactionStatusDialProtocol.ts +31 -0
  70. package/src/net/protocol/index.ts +60 -4
  71. package/src/tasks/AutoUpdateTask.ts +82 -0
  72. package/src/tasks/BaseTask.ts +15 -6
  73. package/src/tasks/InteropBridge/ProcessWithdrawEvents.ts +231 -0
  74. package/src/tasks/InteropBridge/SyncWithdrawEvents.ts +121 -0
  75. package/src/tasks/InteropXGateway/ProcessDepositEvents.ts +256 -0
  76. package/src/tasks/InteropXGateway/SyncDepositEvents.ts +124 -0
  77. package/src/tasks/Transactions/SyncTransactionStatusTask.ts +65 -0
  78. package/src/tasks/index.ts +26 -1
  79. package/src/typechain/Erc20.ts +491 -0
  80. package/src/typechain/GnosisSafe.ts +1728 -0
  81. package/src/typechain/InteropBridgeToken.ts +692 -0
  82. package/src/typechain/InteropXGateway.ts +407 -0
  83. package/src/typechain/common.ts +44 -0
  84. package/src/typechain/factories/Erc20__factory.ts +368 -0
  85. package/src/typechain/factories/GnosisSafe__factory.ts +1178 -0
  86. package/src/typechain/factories/InteropBridgeToken__factory.ts +478 -0
  87. package/src/typechain/factories/InteropXGateway__factory.ts +272 -0
  88. package/src/typechain/factories/index.ts +7 -0
  89. package/src/typechain/index.ts +12 -0
  90. package/src/types.ts +1 -1
  91. package/src/utils/index.ts +206 -3
  92. package/dist/config/index.js +0 -17
  93. package/dist/constants/addresses.js +0 -13
  94. package/dist/db/models/execution.js +0 -38
  95. package/dist/index.js +0 -43
  96. package/dist/tasks/index.js +0 -19
  97. package/dist/utils/index.js +0 -89
  98. package/src/db/models/execution.ts +0 -57
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const gnosisSafe_json_1 = __importDefault(require("./gnosisSafe.json"));
7
+ const erc20_json_1 = __importDefault(require("./erc20.json"));
8
+ const interopXGateway_json_1 = __importDefault(require("./interopXGateway.json"));
9
+ const interopBridgeToken_json_1 = __importDefault(require("./interopBridgeToken.json"));
10
+ exports.default = {
11
+ gnosisSafe: gnosisSafe_json_1.default,
12
+ erc20: erc20_json_1.default,
13
+ interopXGateway: interopXGateway_json_1.default,
14
+ interopBridgeToken: interopBridgeToken_json_1.default,
15
+ };
@@ -0,0 +1,298 @@
1
+ [
2
+ {
3
+ "inputs": [
4
+ { "internalType": "address", "name": "__owner", "type": "address" }
5
+ ],
6
+ "stateMutability": "nonpayable",
7
+ "type": "constructor"
8
+ },
9
+ {
10
+ "anonymous": false,
11
+ "inputs": [
12
+ {
13
+ "indexed": true,
14
+ "internalType": "address",
15
+ "name": "owner",
16
+ "type": "address"
17
+ },
18
+ {
19
+ "indexed": true,
20
+ "internalType": "address",
21
+ "name": "spender",
22
+ "type": "address"
23
+ },
24
+ {
25
+ "indexed": false,
26
+ "internalType": "uint256",
27
+ "name": "value",
28
+ "type": "uint256"
29
+ }
30
+ ],
31
+ "name": "Approval",
32
+ "type": "event"
33
+ },
34
+ {
35
+ "anonymous": false,
36
+ "inputs": [
37
+ {
38
+ "indexed": true,
39
+ "internalType": "address",
40
+ "name": "to",
41
+ "type": "address"
42
+ },
43
+ {
44
+ "indexed": false,
45
+ "internalType": "uint256",
46
+ "name": "amount",
47
+ "type": "uint256"
48
+ },
49
+ {
50
+ "indexed": false,
51
+ "internalType": "uint32",
52
+ "name": "sourceChainId",
53
+ "type": "uint32"
54
+ },
55
+ {
56
+ "indexed": true,
57
+ "internalType": "uint32",
58
+ "name": "targetChainId",
59
+ "type": "uint32"
60
+ }
61
+ ],
62
+ "name": "Burn",
63
+ "type": "event"
64
+ },
65
+ {
66
+ "anonymous": false,
67
+ "inputs": [
68
+ {
69
+ "indexed": true,
70
+ "internalType": "address",
71
+ "name": "to",
72
+ "type": "address"
73
+ },
74
+ {
75
+ "indexed": false,
76
+ "internalType": "uint256",
77
+ "name": "amount",
78
+ "type": "uint256"
79
+ },
80
+ {
81
+ "indexed": true,
82
+ "internalType": "uint32",
83
+ "name": "sourceChainId",
84
+ "type": "uint32"
85
+ },
86
+ {
87
+ "indexed": false,
88
+ "internalType": "uint32",
89
+ "name": "targetChainId",
90
+ "type": "uint32"
91
+ },
92
+ {
93
+ "indexed": true,
94
+ "internalType": "bytes32",
95
+ "name": "submitTransactionHash",
96
+ "type": "bytes32"
97
+ }
98
+ ],
99
+ "name": "Mint",
100
+ "type": "event"
101
+ },
102
+ {
103
+ "anonymous": false,
104
+ "inputs": [
105
+ {
106
+ "indexed": true,
107
+ "internalType": "address",
108
+ "name": "previousOwner",
109
+ "type": "address"
110
+ },
111
+ {
112
+ "indexed": true,
113
+ "internalType": "address",
114
+ "name": "newOwner",
115
+ "type": "address"
116
+ }
117
+ ],
118
+ "name": "OwnershipTransferred",
119
+ "type": "event"
120
+ },
121
+ {
122
+ "anonymous": false,
123
+ "inputs": [
124
+ {
125
+ "indexed": true,
126
+ "internalType": "address",
127
+ "name": "from",
128
+ "type": "address"
129
+ },
130
+ {
131
+ "indexed": true,
132
+ "internalType": "address",
133
+ "name": "to",
134
+ "type": "address"
135
+ },
136
+ {
137
+ "indexed": false,
138
+ "internalType": "uint256",
139
+ "name": "value",
140
+ "type": "uint256"
141
+ }
142
+ ],
143
+ "name": "Transfer",
144
+ "type": "event"
145
+ },
146
+ {
147
+ "inputs": [
148
+ { "internalType": "address", "name": "owner", "type": "address" },
149
+ { "internalType": "address", "name": "spender", "type": "address" }
150
+ ],
151
+ "name": "allowance",
152
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
153
+ "stateMutability": "view",
154
+ "type": "function"
155
+ },
156
+ {
157
+ "inputs": [
158
+ { "internalType": "address", "name": "spender", "type": "address" },
159
+ { "internalType": "uint256", "name": "amount", "type": "uint256" }
160
+ ],
161
+ "name": "approve",
162
+ "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
163
+ "stateMutability": "nonpayable",
164
+ "type": "function"
165
+ },
166
+ {
167
+ "inputs": [
168
+ { "internalType": "address", "name": "account", "type": "address" }
169
+ ],
170
+ "name": "balanceOf",
171
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
172
+ "stateMutability": "view",
173
+ "type": "function"
174
+ },
175
+ {
176
+ "inputs": [
177
+ { "internalType": "address", "name": "to", "type": "address" },
178
+ { "internalType": "uint256", "name": "amount", "type": "uint256" },
179
+ { "internalType": "uint32", "name": "chainId", "type": "uint32" }
180
+ ],
181
+ "name": "burn",
182
+ "outputs": [],
183
+ "stateMutability": "nonpayable",
184
+ "type": "function"
185
+ },
186
+ {
187
+ "inputs": [],
188
+ "name": "decimals",
189
+ "outputs": [{ "internalType": "uint8", "name": "", "type": "uint8" }],
190
+ "stateMutability": "view",
191
+ "type": "function"
192
+ },
193
+ {
194
+ "inputs": [
195
+ { "internalType": "address", "name": "spender", "type": "address" },
196
+ {
197
+ "internalType": "uint256",
198
+ "name": "subtractedValue",
199
+ "type": "uint256"
200
+ }
201
+ ],
202
+ "name": "decreaseAllowance",
203
+ "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
204
+ "stateMutability": "nonpayable",
205
+ "type": "function"
206
+ },
207
+ {
208
+ "inputs": [
209
+ { "internalType": "address", "name": "spender", "type": "address" },
210
+ { "internalType": "uint256", "name": "addedValue", "type": "uint256" }
211
+ ],
212
+ "name": "increaseAllowance",
213
+ "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
214
+ "stateMutability": "nonpayable",
215
+ "type": "function"
216
+ },
217
+ {
218
+ "inputs": [
219
+ { "internalType": "address", "name": "to", "type": "address" },
220
+ { "internalType": "uint256", "name": "amount", "type": "uint256" },
221
+ { "internalType": "uint32", "name": "chainId", "type": "uint32" },
222
+ {
223
+ "internalType": "bytes32",
224
+ "name": "transactionHash",
225
+ "type": "bytes32"
226
+ }
227
+ ],
228
+ "name": "mint",
229
+ "outputs": [],
230
+ "stateMutability": "nonpayable",
231
+ "type": "function"
232
+ },
233
+ {
234
+ "inputs": [],
235
+ "name": "name",
236
+ "outputs": [{ "internalType": "string", "name": "", "type": "string" }],
237
+ "stateMutability": "view",
238
+ "type": "function"
239
+ },
240
+ {
241
+ "inputs": [],
242
+ "name": "owner",
243
+ "outputs": [{ "internalType": "address", "name": "", "type": "address" }],
244
+ "stateMutability": "view",
245
+ "type": "function"
246
+ },
247
+ {
248
+ "inputs": [],
249
+ "name": "renounceOwnership",
250
+ "outputs": [],
251
+ "stateMutability": "nonpayable",
252
+ "type": "function"
253
+ },
254
+ {
255
+ "inputs": [],
256
+ "name": "symbol",
257
+ "outputs": [{ "internalType": "string", "name": "", "type": "string" }],
258
+ "stateMutability": "view",
259
+ "type": "function"
260
+ },
261
+ {
262
+ "inputs": [],
263
+ "name": "totalSupply",
264
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
265
+ "stateMutability": "view",
266
+ "type": "function"
267
+ },
268
+ {
269
+ "inputs": [
270
+ { "internalType": "address", "name": "to", "type": "address" },
271
+ { "internalType": "uint256", "name": "amount", "type": "uint256" }
272
+ ],
273
+ "name": "transfer",
274
+ "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
275
+ "stateMutability": "nonpayable",
276
+ "type": "function"
277
+ },
278
+ {
279
+ "inputs": [
280
+ { "internalType": "address", "name": "from", "type": "address" },
281
+ { "internalType": "address", "name": "to", "type": "address" },
282
+ { "internalType": "uint256", "name": "amount", "type": "uint256" }
283
+ ],
284
+ "name": "transferFrom",
285
+ "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
286
+ "stateMutability": "nonpayable",
287
+ "type": "function"
288
+ },
289
+ {
290
+ "inputs": [
291
+ { "internalType": "address", "name": "newOwner", "type": "address" }
292
+ ],
293
+ "name": "transferOwnership",
294
+ "outputs": [],
295
+ "stateMutability": "nonpayable",
296
+ "type": "function"
297
+ }
298
+ ]
@@ -0,0 +1,184 @@
1
+ [
2
+ {
3
+ "inputs": [
4
+ { "internalType": "address", "name": "__owner", "type": "address" }
5
+ ],
6
+ "stateMutability": "nonpayable",
7
+ "type": "constructor"
8
+ },
9
+ {
10
+ "anonymous": false,
11
+ "inputs": [
12
+ {
13
+ "indexed": false,
14
+ "internalType": "address",
15
+ "name": "user",
16
+ "type": "address"
17
+ },
18
+ {
19
+ "indexed": true,
20
+ "internalType": "address",
21
+ "name": "token",
22
+ "type": "address"
23
+ },
24
+ {
25
+ "indexed": false,
26
+ "internalType": "uint256",
27
+ "name": "amount",
28
+ "type": "uint256"
29
+ },
30
+ {
31
+ "indexed": true,
32
+ "internalType": "uint256",
33
+ "name": "vnonce",
34
+ "type": "uint256"
35
+ },
36
+ {
37
+ "indexed": false,
38
+ "internalType": "uint32",
39
+ "name": "sourceChainId",
40
+ "type": "uint32"
41
+ },
42
+ {
43
+ "indexed": true,
44
+ "internalType": "uint32",
45
+ "name": "targetChainId",
46
+ "type": "uint32"
47
+ }
48
+ ],
49
+ "name": "LogGatewayDeposit",
50
+ "type": "event"
51
+ },
52
+ {
53
+ "anonymous": false,
54
+ "inputs": [
55
+ {
56
+ "indexed": false,
57
+ "internalType": "address",
58
+ "name": "user",
59
+ "type": "address"
60
+ },
61
+ {
62
+ "indexed": true,
63
+ "internalType": "address",
64
+ "name": "token",
65
+ "type": "address"
66
+ },
67
+ {
68
+ "indexed": false,
69
+ "internalType": "uint256",
70
+ "name": "amount",
71
+ "type": "uint256"
72
+ },
73
+ {
74
+ "indexed": true,
75
+ "internalType": "uint32",
76
+ "name": "sourceChainId",
77
+ "type": "uint32"
78
+ },
79
+ {
80
+ "indexed": false,
81
+ "internalType": "uint32",
82
+ "name": "targetChainId",
83
+ "type": "uint32"
84
+ },
85
+ {
86
+ "indexed": true,
87
+ "internalType": "bytes32",
88
+ "name": "transactionHash",
89
+ "type": "bytes32"
90
+ }
91
+ ],
92
+ "name": "LogGatewayWithdraw",
93
+ "type": "event"
94
+ },
95
+ {
96
+ "anonymous": false,
97
+ "inputs": [
98
+ {
99
+ "indexed": true,
100
+ "internalType": "address",
101
+ "name": "previousOwner",
102
+ "type": "address"
103
+ },
104
+ {
105
+ "indexed": true,
106
+ "internalType": "address",
107
+ "name": "newOwner",
108
+ "type": "address"
109
+ }
110
+ ],
111
+ "name": "OwnershipTransferred",
112
+ "type": "event"
113
+ },
114
+ {
115
+ "inputs": [],
116
+ "name": "_vnonce",
117
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
118
+ "stateMutability": "view",
119
+ "type": "function"
120
+ },
121
+ {
122
+ "inputs": [
123
+ { "internalType": "address", "name": "token_", "type": "address" },
124
+ { "internalType": "uint256", "name": "amount_", "type": "uint256" },
125
+ { "internalType": "uint32", "name": "chainId_", "type": "uint32" }
126
+ ],
127
+ "name": "deposit",
128
+ "outputs": [],
129
+ "stateMutability": "nonpayable",
130
+ "type": "function"
131
+ },
132
+ {
133
+ "inputs": [
134
+ { "internalType": "address", "name": "to_", "type": "address" },
135
+ { "internalType": "address", "name": "token_", "type": "address" },
136
+ { "internalType": "uint256", "name": "amount_", "type": "uint256" },
137
+ { "internalType": "uint32", "name": "chainId_", "type": "uint32" }
138
+ ],
139
+ "name": "depositFor",
140
+ "outputs": [],
141
+ "stateMutability": "nonpayable",
142
+ "type": "function"
143
+ },
144
+ {
145
+ "inputs": [],
146
+ "name": "owner",
147
+ "outputs": [{ "internalType": "address", "name": "", "type": "address" }],
148
+ "stateMutability": "view",
149
+ "type": "function"
150
+ },
151
+ {
152
+ "inputs": [],
153
+ "name": "renounceOwnership",
154
+ "outputs": [],
155
+ "stateMutability": "nonpayable",
156
+ "type": "function"
157
+ },
158
+ {
159
+ "inputs": [
160
+ { "internalType": "uint256", "name": "amount_", "type": "uint256" },
161
+ { "internalType": "address", "name": "user_", "type": "address" },
162
+ { "internalType": "address", "name": "token_", "type": "address" },
163
+ { "internalType": "uint32", "name": "chainId_", "type": "uint32" },
164
+ {
165
+ "internalType": "bytes32",
166
+ "name": "transactionHash_",
167
+ "type": "bytes32"
168
+ }
169
+ ],
170
+ "name": "systemWithdraw",
171
+ "outputs": [],
172
+ "stateMutability": "nonpayable",
173
+ "type": "function"
174
+ },
175
+ {
176
+ "inputs": [
177
+ { "internalType": "address", "name": "newOwner", "type": "address" }
178
+ ],
179
+ "name": "transferOwnership",
180
+ "outputs": [],
181
+ "stateMutability": "nonpayable",
182
+ "type": "function"
183
+ }
184
+ ]
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.startApiServer = void 0;
7
+ const fastify_1 = __importDefault(require("fastify"));
8
+ const cors_1 = __importDefault(require("@fastify/cors"));
9
+ const logger_1 = __importDefault(require("@/logger"));
10
+ const db_1 = require("@/db");
11
+ const logger = new logger_1.default("RPC");
12
+ const server = (0, fastify_1.default)({ logger: false });
13
+ server.register(cors_1.default, {});
14
+ server.get('/', async () => 'Interop X API');
15
+ const startApiServer = async () => {
16
+ const HOST = process.env.API_HOST || '0.0.0.0';
17
+ const PORT = process.env.API_PORT || '8080';
18
+ try {
19
+ server.get('/transactions', async (req) => {
20
+ return await db_1.Transaction.findAndCountAll({
21
+ limit: 20,
22
+ offset: 0,
23
+ });
24
+ });
25
+ await server.listen(PORT, HOST);
26
+ logger.log(`RPC Server listening at http://${HOST}:${PORT}`);
27
+ }
28
+ catch (err) {
29
+ logger.error(err.message);
30
+ process.exit(1);
31
+ }
32
+ };
33
+ exports.startApiServer = startApiServer;
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const ethers_1 = require("ethers");
7
+ const types_1 = require("@/types");
8
+ const fs_extra_1 = __importDefault(require("fs-extra"));
9
+ const expand_home_dir_1 = __importDefault(require("expand-home-dir"));
10
+ class Config {
11
+ constructor() {
12
+ this.events = new types_1.EventBus();
13
+ this.maxPeers = 20;
14
+ this.privateKey = process.env.PRIVATE_KEY;
15
+ this.staging = !!process.env.STAGING && process.env.STAGING === 'true';
16
+ this.autoUpdate = !!process.env.AUTO_UPDATE && process.env.AUTO_UPDATE === 'true';
17
+ this.wallet = new ethers_1.Wallet(this.privateKey);
18
+ this.leadNodeAddress = '0x910E413DBF3F6276Fe8213fF656726bDc142E08E';
19
+ this.baseConfigPath = (0, expand_home_dir_1.default)(`~/.interop-x`);
20
+ }
21
+ get publicAddress() {
22
+ return this.wallet.address;
23
+ }
24
+ isLeadNode() {
25
+ return ethers_1.ethers.utils.getAddress(this.leadNodeAddress) === ethers_1.ethers.utils.getAddress(this.wallet.address);
26
+ }
27
+ isMaintenanceMode() {
28
+ return fs_extra_1.default.existsSync(this.baseConfigPath + '/maintenance');
29
+ }
30
+ }
31
+ exports.default = new Config();
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.addresses = void 0;
4
+ exports.addresses = {
5
+ 1: {
6
+ gnosisSafe: '0x811Bff6eF88dAAA0aD6438386B534A81cE3F160F',
7
+ multisend: '0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761',
8
+ interopXGateway: '',
9
+ },
10
+ 137: {
11
+ gnosisSafe: '0x5635d2910e51da33d9DC0422c893CF4F28B69A25',
12
+ multisend: '0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761',
13
+ interopXGateway: '',
14
+ },
15
+ 43114: {
16
+ gnosisSafe: '0x31d7a5194Fe60AC209Cf1Ce2d539C9A60662Ed6b',
17
+ multisend: '0x998739BFdAAdde7C933B942a68053933098f9EDa',
18
+ interopXGateway: '0xF0317C5Bc206F2291dd2f3eE9C4cDB5Bbb25418d',
19
+ }
20
+ };
@@ -15,3 +15,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./addresses"), exports);
18
+ __exportStar(require("./tokens"), exports);
19
+ __exportStar(require("./itokens"), exports);
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.itokens = void 0;
4
+ exports.itokens = {
5
+ 1: [],
6
+ 137: [
7
+ {
8
+ address: '0x62C0045f3277E7067cAcad3c8038eEaBB1Bd92D1',
9
+ symbol: 'USDC',
10
+ }
11
+ ],
12
+ 43114: []
13
+ };