@instadapp/interop-x 0.0.0-dev.59f2858 → 0.0.0-dev.59f84ce

Sign up to get free protection for your applications and to get access to all the features.
Files changed (92) hide show
  1. package/bin/interop-x +1 -1
  2. package/dist/package.json +73 -0
  3. package/dist/{abi → src/abi}/erc20.json +0 -0
  4. package/dist/{abi → src/abi}/gnosisSafe.json +0 -0
  5. package/dist/{abi → src/abi}/index.js +2 -4
  6. package/dist/src/abi/interopXContract.json +391 -0
  7. package/dist/src/alias.js +10 -0
  8. package/dist/{api → src/api}/index.js +6 -3
  9. package/dist/{config → src/config}/index.js +11 -1
  10. package/dist/{constants → src/constants}/addresses.js +3 -11
  11. package/dist/{constants → src/constants}/index.js +0 -0
  12. package/dist/{constants → src/constants}/tokens.js +0 -0
  13. package/dist/{db → src/db}/index.js +0 -0
  14. package/dist/{db → src/db}/models/index.js +0 -0
  15. package/dist/{db → src/db}/models/transaction.js +27 -7
  16. package/dist/{db → src/db}/sequelize.js +0 -0
  17. package/dist/src/gnosis/actions/index.js +9 -0
  18. package/dist/src/gnosis/actions/withdraw/index.js +41 -0
  19. package/dist/src/gnosis/index.js +20 -0
  20. package/dist/src/index.js +117 -0
  21. package/dist/{logger → src/logger}/index.js +0 -0
  22. package/dist/{net → src/net}/index.js +0 -0
  23. package/dist/{net → src/net}/peer/index.js +8 -3
  24. package/dist/{net → src/net}/pool/index.js +32 -9
  25. package/dist/{net → src/net}/protocol/dial/BaseDialProtocol.js +0 -0
  26. package/dist/{net → src/net}/protocol/dial/SignatureDialProtocol.js +17 -12
  27. package/dist/src/net/protocol/dial/TransactionStatusDialProtocol.js +30 -0
  28. package/dist/{net → src/net}/protocol/index.js +51 -1
  29. package/dist/src/tasks/AutoUpdateTask.js +70 -0
  30. package/dist/{tasks → src/tasks}/BaseTask.js +12 -4
  31. package/dist/src/tasks/InteropXContract/ProcessBridgeRequestEvents.js +146 -0
  32. package/dist/src/tasks/InteropXContract/SyncBridgeRequestEvents.js +78 -0
  33. package/dist/src/tasks/Transactions/SyncTransactionStatusTask.js +55 -0
  34. package/dist/src/tasks/index.js +33 -0
  35. package/dist/{typechain → src/typechain}/Erc20.js +0 -0
  36. package/dist/{typechain → src/typechain}/GnosisSafe.js +0 -0
  37. package/dist/{typechain/InteropBridgeToken.js → src/typechain/InteropXContract.js} +0 -0
  38. package/dist/{typechain → src/typechain}/common.js +0 -0
  39. package/dist/{typechain → src/typechain}/factories/Erc20__factory.js +0 -0
  40. package/dist/{typechain → src/typechain}/factories/GnosisSafe__factory.js +0 -0
  41. package/dist/src/typechain/factories/InteropXContract__factory.js +526 -0
  42. package/dist/src/typechain/factories/index.js +12 -0
  43. package/dist/{typechain → src/typechain}/index.js +3 -5
  44. package/dist/{types.js → src/types.js} +0 -0
  45. package/dist/src/utils/index.js +168 -0
  46. package/package.json +10 -6
  47. package/patches/@ethersproject+properties+5.6.0.patch +13 -0
  48. package/src/abi/index.ts +2 -4
  49. package/src/abi/interopXContract.json +391 -0
  50. package/src/alias.ts +6 -0
  51. package/src/api/index.ts +5 -2
  52. package/src/config/index.ts +11 -1
  53. package/src/constants/addresses.ts +3 -11
  54. package/src/db/models/transaction.ts +61 -19
  55. package/src/gnosis/actions/index.ts +5 -0
  56. package/src/gnosis/actions/withdraw/index.ts +56 -0
  57. package/src/gnosis/index.ts +19 -0
  58. package/src/index.ts +95 -24
  59. package/src/net/peer/index.ts +9 -7
  60. package/src/net/pool/index.ts +41 -11
  61. package/src/net/protocol/dial/SignatureDialProtocol.ts +19 -13
  62. package/src/net/protocol/dial/TransactionStatusDialProtocol.ts +33 -0
  63. package/src/net/protocol/index.ts +67 -1
  64. package/src/tasks/AutoUpdateTask.ts +82 -0
  65. package/src/tasks/BaseTask.ts +14 -4
  66. package/src/tasks/InteropXContract/ProcessBridgeRequestEvents.ts +208 -0
  67. package/src/tasks/InteropXContract/SyncBridgeRequestEvents.ts +116 -0
  68. package/src/tasks/Transactions/SyncTransactionStatusTask.ts +67 -0
  69. package/src/tasks/index.ts +16 -4
  70. package/src/typechain/InteropXContract.ts +524 -0
  71. package/src/typechain/factories/InteropXContract__factory.ts +533 -0
  72. package/src/typechain/factories/index.ts +1 -2
  73. package/src/typechain/index.ts +2 -4
  74. package/src/utils/index.ts +118 -7
  75. package/tsconfig.json +7 -2
  76. package/dist/abi/interopBridgeToken.json +0 -286
  77. package/dist/abi/interopXGateway.json +0 -184
  78. package/dist/index.js +0 -66
  79. package/dist/tasks/InteropXGateway/SyncDepositEvents.js +0 -66
  80. package/dist/tasks/index.js +0 -27
  81. package/dist/typechain/InteropXGateway.js +0 -2
  82. package/dist/typechain/factories/InteropBridgeToken__factory.js +0 -459
  83. package/dist/typechain/factories/InteropXGateway__factory.js +0 -265
  84. package/dist/typechain/factories/index.js +0 -14
  85. package/dist/utils/index.js +0 -101
  86. package/src/abi/interopBridgeToken.json +0 -286
  87. package/src/abi/interopXGateway.json +0 -184
  88. package/src/tasks/InteropXGateway/SyncDepositEvents.ts +0 -111
  89. package/src/typechain/InteropBridgeToken.ts +0 -686
  90. package/src/typechain/InteropXGateway.ts +0 -407
  91. package/src/typechain/factories/InteropBridgeToken__factory.ts +0 -466
  92. package/src/typechain/factories/InteropXGateway__factory.ts +0 -272
package/bin/interop-x CHANGED
@@ -1,2 +1,2 @@
1
1
  #!/usr/bin/env node
2
- require('../dist/index')
2
+ require('../dist/src/index')
@@ -0,0 +1,73 @@
1
+ {
2
+ "name": "@instadapp/interop-x",
3
+ "version": "0.0.0-dev.59f84ce",
4
+ "license": "MIT",
5
+ "main": "dist/index.js",
6
+ "engines": {
7
+ "node": ">=16",
8
+ "yarn": "^1.22.0"
9
+ },
10
+ "scripts": {
11
+ "start": "yarn build && node bin/interop-x",
12
+ "build": "yarn generate-abi-types && export GIT_REF=$(git rev-parse --short HEAD) && rimraf ./dist && tsc -p tsconfig.json && replace-in-file '@GIT_SHORT_HASH@' $GIT_REF ./dist/**/*.js",
13
+ "dev": "yarn generate-abi-types && NODE_ENV=development nodemon",
14
+ "generate-abi-types": "rimraf src/typechain && typechain --target=ethers-v5 'src/abi/*.json' --out-dir 'src/typechain'",
15
+ "prepublishOnly": "yarn build",
16
+ "postinstall": "patch-package"
17
+ },
18
+ "nodemonConfig": {
19
+ "watch": [
20
+ "src"
21
+ ],
22
+ "ext": "ts",
23
+ "exec": "./node_modules/.bin/ts-node --files -r tsconfig-paths/register ./src/index.ts"
24
+ },
25
+ "dependencies": {
26
+ "@achingbrain/libp2p-gossipsub": "^0.12.2",
27
+ "@fastify/cors": "^7.0.0",
28
+ "await-spawn": "^4.0.2",
29
+ "axios": "^0.27.1",
30
+ "axios-retry": "^3.2.4",
31
+ "chalk": "4.1.2",
32
+ "dotenv": "^16.0.0",
33
+ "ethereumjs-util": "^7.1.4",
34
+ "ethers": "^5.6.4",
35
+ "ethers-multisend": "^2.1.1",
36
+ "expand-home-dir": "^0.0.3",
37
+ "fastify": "^3.28.0",
38
+ "fs-extra": "^10.1.0",
39
+ "libp2p": "^0.36.2",
40
+ "libp2p-bootstrap": "^0.14.0",
41
+ "libp2p-kad-dht": "^0.28.6",
42
+ "libp2p-mdns": "^0.18.0",
43
+ "libp2p-mplex": "^0.10.7",
44
+ "libp2p-noise": "^4.0.0",
45
+ "libp2p-pubsub-peer-discovery": "^4.0.0",
46
+ "libp2p-tcp": "^0.17.2",
47
+ "libp2p-websockets": "^0.16.2",
48
+ "luxon": "^2.3.2",
49
+ "module-alias": "^2.2.2",
50
+ "patch-package": "^6.4.7",
51
+ "postinstall-postinstall": "^2.1.0",
52
+ "sequelize": "6.18.0",
53
+ "sqlite3": "^5.0.5",
54
+ "waait": "^1.0.5"
55
+ },
56
+ "bin": {
57
+ "interop-x": "bin/interop-x",
58
+ "interopx": "bin/interop-x"
59
+ },
60
+ "devDependencies": {
61
+ "@typechain/ethers-v5": "^10.0.0",
62
+ "@types/bn.js": "^5.1.0",
63
+ "@types/fs-extra": "^9.0.13",
64
+ "@types/node": "^17.0.17",
65
+ "nodemon": "^2.0.15",
66
+ "replace-in-file": "^6.3.2",
67
+ "rimraf": "^3.0.2",
68
+ "ts-node": "^10.5.0",
69
+ "tsconfig-paths": "^3.12.0",
70
+ "typechain": "^8.0.0",
71
+ "typescript": "^4.5.5"
72
+ }
73
+ }
File without changes
File without changes
@@ -5,11 +5,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  const gnosisSafe_json_1 = __importDefault(require("./gnosisSafe.json"));
7
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"));
8
+ const interopXContract_json_1 = __importDefault(require("./interopXContract.json"));
10
9
  exports.default = {
11
10
  gnosisSafe: gnosisSafe_json_1.default,
12
11
  erc20: erc20_json_1.default,
13
- interopXGateway: interopXGateway_json_1.default,
14
- interopBridgeToken: interopBridgeToken_json_1.default,
12
+ interopXContract: interopXContract_json_1.default,
15
13
  };
@@ -0,0 +1,391 @@
1
+ [
2
+ {
3
+ "anonymous": false,
4
+ "inputs": [
5
+ {
6
+ "indexed": true,
7
+ "internalType": "address",
8
+ "name": "bridger",
9
+ "type": "address"
10
+ },
11
+ {
12
+ "components": [
13
+ {
14
+ "components": [
15
+ {
16
+ "internalType": "address",
17
+ "name": "sourceToken",
18
+ "type": "address"
19
+ },
20
+ {
21
+ "internalType": "address",
22
+ "name": "targetToken",
23
+ "type": "address"
24
+ },
25
+ { "internalType": "uint256", "name": "amount", "type": "uint256" }
26
+ ],
27
+ "internalType": "struct InteropXContractBeta.TokenInfo[]",
28
+ "name": "supply",
29
+ "type": "tuple[]"
30
+ },
31
+ {
32
+ "components": [
33
+ {
34
+ "internalType": "address",
35
+ "name": "sourceToken",
36
+ "type": "address"
37
+ },
38
+ {
39
+ "internalType": "address",
40
+ "name": "targetToken",
41
+ "type": "address"
42
+ },
43
+ { "internalType": "uint256", "name": "amount", "type": "uint256" }
44
+ ],
45
+ "internalType": "struct InteropXContractBeta.TokenInfo[]",
46
+ "name": "withdraw",
47
+ "type": "tuple[]"
48
+ }
49
+ ],
50
+ "indexed": false,
51
+ "internalType": "struct InteropXContractBeta.Position",
52
+ "name": "position",
53
+ "type": "tuple"
54
+ },
55
+ {
56
+ "indexed": true,
57
+ "internalType": "uint32",
58
+ "name": "sourceChainId",
59
+ "type": "uint32"
60
+ },
61
+ {
62
+ "indexed": false,
63
+ "internalType": "uint32",
64
+ "name": "targetChainId",
65
+ "type": "uint32"
66
+ },
67
+ {
68
+ "indexed": true,
69
+ "internalType": "bytes32",
70
+ "name": "requestTransactionHash",
71
+ "type": "bytes32"
72
+ },
73
+ {
74
+ "indexed": false,
75
+ "internalType": "bytes",
76
+ "name": "metadata",
77
+ "type": "bytes"
78
+ }
79
+ ],
80
+ "name": "LogBridgeCommitted",
81
+ "type": "event"
82
+ },
83
+ {
84
+ "anonymous": false,
85
+ "inputs": [
86
+ {
87
+ "indexed": true,
88
+ "internalType": "address",
89
+ "name": "bridger",
90
+ "type": "address"
91
+ },
92
+ {
93
+ "components": [
94
+ {
95
+ "components": [
96
+ {
97
+ "internalType": "address",
98
+ "name": "sourceToken",
99
+ "type": "address"
100
+ },
101
+ {
102
+ "internalType": "address",
103
+ "name": "targetToken",
104
+ "type": "address"
105
+ },
106
+ { "internalType": "uint256", "name": "amount", "type": "uint256" }
107
+ ],
108
+ "internalType": "struct InteropXContractBeta.TokenInfo[]",
109
+ "name": "supply",
110
+ "type": "tuple[]"
111
+ },
112
+ {
113
+ "components": [
114
+ {
115
+ "internalType": "address",
116
+ "name": "sourceToken",
117
+ "type": "address"
118
+ },
119
+ {
120
+ "internalType": "address",
121
+ "name": "targetToken",
122
+ "type": "address"
123
+ },
124
+ { "internalType": "uint256", "name": "amount", "type": "uint256" }
125
+ ],
126
+ "internalType": "struct InteropXContractBeta.TokenInfo[]",
127
+ "name": "withdraw",
128
+ "type": "tuple[]"
129
+ }
130
+ ],
131
+ "indexed": false,
132
+ "internalType": "struct InteropXContractBeta.Position",
133
+ "name": "position",
134
+ "type": "tuple"
135
+ },
136
+ {
137
+ "indexed": false,
138
+ "internalType": "uint256",
139
+ "name": "sourceChainId",
140
+ "type": "uint256"
141
+ },
142
+ {
143
+ "indexed": true,
144
+ "internalType": "uint256",
145
+ "name": "targetChainId",
146
+ "type": "uint256"
147
+ },
148
+ {
149
+ "indexed": true,
150
+ "internalType": "bytes32",
151
+ "name": "requestTransactionHash",
152
+ "type": "bytes32"
153
+ },
154
+ {
155
+ "indexed": false,
156
+ "internalType": "bytes32",
157
+ "name": "targetCommittedTransactionHash",
158
+ "type": "bytes32"
159
+ },
160
+ {
161
+ "indexed": false,
162
+ "internalType": "bytes",
163
+ "name": "metadata",
164
+ "type": "bytes"
165
+ }
166
+ ],
167
+ "name": "LogBridgeCompleted",
168
+ "type": "event"
169
+ },
170
+ {
171
+ "anonymous": false,
172
+ "inputs": [
173
+ {
174
+ "indexed": true,
175
+ "internalType": "address",
176
+ "name": "bridger",
177
+ "type": "address"
178
+ },
179
+ {
180
+ "components": [
181
+ {
182
+ "components": [
183
+ {
184
+ "internalType": "address",
185
+ "name": "sourceToken",
186
+ "type": "address"
187
+ },
188
+ {
189
+ "internalType": "address",
190
+ "name": "targetToken",
191
+ "type": "address"
192
+ },
193
+ { "internalType": "uint256", "name": "amount", "type": "uint256" }
194
+ ],
195
+ "internalType": "struct InteropXContractBeta.TokenInfo[]",
196
+ "name": "supply",
197
+ "type": "tuple[]"
198
+ },
199
+ {
200
+ "components": [
201
+ {
202
+ "internalType": "address",
203
+ "name": "sourceToken",
204
+ "type": "address"
205
+ },
206
+ {
207
+ "internalType": "address",
208
+ "name": "targetToken",
209
+ "type": "address"
210
+ },
211
+ { "internalType": "uint256", "name": "amount", "type": "uint256" }
212
+ ],
213
+ "internalType": "struct InteropXContractBeta.TokenInfo[]",
214
+ "name": "withdraw",
215
+ "type": "tuple[]"
216
+ }
217
+ ],
218
+ "indexed": false,
219
+ "internalType": "struct InteropXContractBeta.Position",
220
+ "name": "position",
221
+ "type": "tuple"
222
+ },
223
+ {
224
+ "indexed": false,
225
+ "internalType": "uint256",
226
+ "name": "sourceChainId",
227
+ "type": "uint256"
228
+ },
229
+ {
230
+ "indexed": true,
231
+ "internalType": "uint256",
232
+ "name": "targetChainId",
233
+ "type": "uint256"
234
+ },
235
+ {
236
+ "indexed": false,
237
+ "internalType": "bytes",
238
+ "name": "metadata",
239
+ "type": "bytes"
240
+ }
241
+ ],
242
+ "name": "LogBridgeRequest",
243
+ "type": "event"
244
+ },
245
+ {
246
+ "anonymous": false,
247
+ "inputs": [
248
+ {
249
+ "indexed": true,
250
+ "internalType": "address",
251
+ "name": "bridger",
252
+ "type": "address"
253
+ },
254
+ {
255
+ "components": [
256
+ {
257
+ "components": [
258
+ {
259
+ "internalType": "address",
260
+ "name": "sourceToken",
261
+ "type": "address"
262
+ },
263
+ {
264
+ "internalType": "address",
265
+ "name": "targetToken",
266
+ "type": "address"
267
+ },
268
+ { "internalType": "uint256", "name": "amount", "type": "uint256" }
269
+ ],
270
+ "internalType": "struct InteropXContractBeta.TokenInfo[]",
271
+ "name": "supply",
272
+ "type": "tuple[]"
273
+ },
274
+ {
275
+ "components": [
276
+ {
277
+ "internalType": "address",
278
+ "name": "sourceToken",
279
+ "type": "address"
280
+ },
281
+ {
282
+ "internalType": "address",
283
+ "name": "targetToken",
284
+ "type": "address"
285
+ },
286
+ { "internalType": "uint256", "name": "amount", "type": "uint256" }
287
+ ],
288
+ "internalType": "struct InteropXContractBeta.TokenInfo[]",
289
+ "name": "withdraw",
290
+ "type": "tuple[]"
291
+ }
292
+ ],
293
+ "indexed": false,
294
+ "internalType": "struct InteropXContractBeta.Position",
295
+ "name": "position",
296
+ "type": "tuple"
297
+ },
298
+ {
299
+ "indexed": false,
300
+ "internalType": "uint32",
301
+ "name": "sourceChainId",
302
+ "type": "uint32"
303
+ },
304
+ {
305
+ "indexed": true,
306
+ "internalType": "uint32",
307
+ "name": "targetChainId",
308
+ "type": "uint32"
309
+ },
310
+ {
311
+ "indexed": true,
312
+ "internalType": "bytes32",
313
+ "name": "requestTransactionHash",
314
+ "type": "bytes32"
315
+ },
316
+ {
317
+ "indexed": false,
318
+ "internalType": "bytes",
319
+ "name": "metadata",
320
+ "type": "bytes"
321
+ }
322
+ ],
323
+ "name": "LogBridgeRequestSent",
324
+ "type": "event"
325
+ },
326
+ {
327
+ "inputs": [],
328
+ "name": "_vnonce",
329
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
330
+ "stateMutability": "view",
331
+ "type": "function"
332
+ },
333
+ {
334
+ "inputs": [
335
+ { "internalType": "address", "name": "to_", "type": "address" },
336
+ { "internalType": "address", "name": "sourceToken_", "type": "address" },
337
+ { "internalType": "address", "name": "targetToken_", "type": "address" },
338
+ { "internalType": "uint256", "name": "amount_", "type": "uint256" },
339
+ { "internalType": "uint32", "name": "targetChainId_", "type": "uint32" },
340
+ {
341
+ "internalType": "bytes32",
342
+ "name": "transactionHash_",
343
+ "type": "bytes32"
344
+ },
345
+ { "internalType": "bytes", "name": "metadata_", "type": "bytes" }
346
+ ],
347
+ "name": "completeBridge",
348
+ "outputs": [],
349
+ "stateMutability": "nonpayable",
350
+ "type": "function"
351
+ },
352
+ {
353
+ "inputs": [
354
+ { "internalType": "address", "name": "sourceToken_", "type": "address" },
355
+ { "internalType": "address", "name": "targetToken_", "type": "address" },
356
+ { "internalType": "uint256", "name": "amount_", "type": "uint256" },
357
+ { "internalType": "uint32", "name": "targetChainId_", "type": "uint32" },
358
+ { "internalType": "bytes", "name": "metadata_", "type": "bytes" }
359
+ ],
360
+ "name": "requestWithdraw",
361
+ "outputs": [],
362
+ "stateMutability": "nonpayable",
363
+ "type": "function"
364
+ },
365
+ {
366
+ "inputs": [{ "internalType": "address", "name": "", "type": "address" }],
367
+ "name": "whitelistedMapping",
368
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
369
+ "stateMutability": "view",
370
+ "type": "function"
371
+ },
372
+ {
373
+ "inputs": [
374
+ { "internalType": "address", "name": "user_", "type": "address" },
375
+ { "internalType": "address", "name": "sourceToken_", "type": "address" },
376
+ { "internalType": "address", "name": "targetToken_", "type": "address" },
377
+ { "internalType": "uint256", "name": "amount_", "type": "uint256" },
378
+ { "internalType": "uint32", "name": "chainId_", "type": "uint32" },
379
+ {
380
+ "internalType": "bytes32",
381
+ "name": "transactionHash_",
382
+ "type": "bytes32"
383
+ },
384
+ { "internalType": "bytes", "name": "metadata_", "type": "bytes" }
385
+ ],
386
+ "name": "withdrawRequested",
387
+ "outputs": [],
388
+ "stateMutability": "nonpayable",
389
+ "type": "function"
390
+ }
391
+ ]
@@ -0,0 +1,10 @@
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 module_alias_1 = __importDefault(require("module-alias"));
7
+ module_alias_1.default.addAliases({
8
+ "@": __dirname,
9
+ });
10
+ (0, module_alias_1.default)();
@@ -5,12 +5,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.startApiServer = void 0;
7
7
  const fastify_1 = __importDefault(require("fastify"));
8
- const fastify_cors_1 = __importDefault(require("fastify-cors"));
8
+ const cors_1 = __importDefault(require("@fastify/cors"));
9
9
  const logger_1 = __importDefault(require("@/logger"));
10
10
  const db_1 = require("@/db");
11
11
  const logger = new logger_1.default("RPC");
12
12
  const server = (0, fastify_1.default)({ logger: false });
13
- server.register(fastify_cors_1.default, {});
13
+ server.register(cors_1.default, {});
14
14
  server.get('/', async () => 'Interop X API');
15
15
  const startApiServer = async () => {
16
16
  const HOST = process.env.API_HOST || '0.0.0.0';
@@ -20,13 +20,16 @@ const startApiServer = async () => {
20
20
  return await db_1.Transaction.findAndCountAll({
21
21
  limit: 20,
22
22
  offset: 0,
23
+ order: [
24
+ ['createdAt', 'DESC']
25
+ ]
23
26
  });
24
27
  });
25
28
  await server.listen(PORT, HOST);
26
29
  logger.log(`RPC Server listening at http://${HOST}:${PORT}`);
27
30
  }
28
31
  catch (err) {
29
- logger.error(err);
32
+ logger.error(err.message);
30
33
  process.exit(1);
31
34
  }
32
35
  };
@@ -1,15 +1,22 @@
1
1
  "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
2
5
  Object.defineProperty(exports, "__esModule", { value: true });
3
6
  const ethers_1 = require("ethers");
4
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"));
5
10
  class Config {
6
11
  constructor() {
7
12
  this.events = new types_1.EventBus();
8
- this.maxPeers = 10;
13
+ this.maxPeers = 20;
9
14
  this.privateKey = process.env.PRIVATE_KEY;
10
15
  this.staging = !!process.env.STAGING && process.env.STAGING === 'true';
16
+ this.autoUpdate = !!process.env.AUTO_UPDATE && process.env.AUTO_UPDATE === 'true';
11
17
  this.wallet = new ethers_1.Wallet(this.privateKey);
12
18
  this.leadNodeAddress = '0x910E413DBF3F6276Fe8213fF656726bDc142E08E';
19
+ this.baseConfigPath = (0, expand_home_dir_1.default)(`~/.interop-x`);
13
20
  }
14
21
  get publicAddress() {
15
22
  return this.wallet.address;
@@ -17,5 +24,8 @@ class Config {
17
24
  isLeadNode() {
18
25
  return ethers_1.ethers.utils.getAddress(this.leadNodeAddress) === ethers_1.ethers.utils.getAddress(this.wallet.address);
19
26
  }
27
+ isMaintenanceMode() {
28
+ return fs_extra_1.default.existsSync(this.baseConfigPath + '/maintenance');
29
+ }
20
30
  }
21
31
  exports.default = new Config();
@@ -5,24 +5,16 @@ exports.addresses = {
5
5
  1: {
6
6
  gnosisSafe: '0x811Bff6eF88dAAA0aD6438386B534A81cE3F160F',
7
7
  multisend: '0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761',
8
- interopXGateway: '',
9
- interopBridgeTokens: [],
8
+ interopXContract: '',
10
9
  },
11
10
  137: {
12
11
  gnosisSafe: '0x5635d2910e51da33d9DC0422c893CF4F28B69A25',
13
12
  multisend: '0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761',
14
- interopXGateway: '',
15
- interopBridgeTokens: [
16
- {
17
- address: '0x6c20F03598d5ABF729348E2868b0ff5e8A48aB1F',
18
- symbol: 'USDC',
19
- }
20
- ],
13
+ interopXContract: '0x2189741c8cAc1cf51570932817A7d6390646C80e',
21
14
  },
22
15
  43114: {
23
16
  gnosisSafe: '0x31d7a5194Fe60AC209Cf1Ce2d539C9A60662Ed6b',
24
17
  multisend: '0x998739BFdAAdde7C933B942a68053933098f9EDa',
25
- interopXGateway: '0x8D27758751BA488690974B6Ccfcda771D462945f',
26
- interopBridgeTokens: [],
18
+ interopXContract: '0x1867DF97Ec24bb0bbD4AD464F0Be9C6713422EAE',
27
19
  }
28
20
  };
File without changes
File without changes
File without changes
File without changes
@@ -12,18 +12,26 @@ Transaction.init({
12
12
  autoIncrement: true,
13
13
  primaryKey: true
14
14
  },
15
+ requestTransactionHash: sequelize_2.DataTypes.NUMBER,
16
+ requestBlockNumber: sequelize_2.DataTypes.NUMBER,
15
17
  transactionHash: sequelize_2.DataTypes.STRING,
16
18
  action: sequelize_2.DataTypes.STRING,
17
- from: sequelize_2.DataTypes.STRING,
18
- to: sequelize_2.DataTypes.STRING,
19
+ bridger: sequelize_2.DataTypes.STRING,
19
20
  sourceChainId: sequelize_2.DataTypes.NUMBER,
20
21
  sourceTransactionHash: sequelize_2.DataTypes.STRING,
21
22
  sourceBlockNumber: sequelize_2.DataTypes.NUMBER,
22
- sourceStatus: sequelize_2.DataTypes.STRING,
23
+ sourceStatus: {
24
+ type: sequelize_2.DataTypes.STRING,
25
+ defaultValue: 'uninitialised'
26
+ },
23
27
  sourceErrors: {
24
28
  type: sequelize_2.DataTypes.JSON,
25
29
  // defaultValue: [],
26
30
  },
31
+ sourceLogs: {
32
+ type: sequelize_2.DataTypes.JSON,
33
+ // defaultValue: [],
34
+ },
27
35
  sourceCreatedAt: {
28
36
  type: sequelize_2.DataTypes.DATE,
29
37
  defaultValue: Date.now()
@@ -32,16 +40,28 @@ Transaction.init({
32
40
  targetChainId: sequelize_2.DataTypes.NUMBER,
33
41
  targetTransactionHash: sequelize_2.DataTypes.STRING,
34
42
  targetBlockNumber: sequelize_2.DataTypes.NUMBER,
35
- targetStatus: sequelize_2.DataTypes.STRING,
43
+ targetStatus: {
44
+ type: sequelize_2.DataTypes.STRING,
45
+ defaultValue: 'uninitialised'
46
+ },
36
47
  targetErrors: {
37
48
  type: sequelize_2.DataTypes.JSON,
38
49
  // defaultValue: [],
39
50
  },
51
+ targetLogs: {
52
+ type: sequelize_2.DataTypes.JSON,
53
+ // defaultValue: [],
54
+ },
40
55
  targetCreatedAt: sequelize_2.DataTypes.DATE,
41
56
  targetDelayUntil: sequelize_2.DataTypes.DATE,
42
- submitEvent: sequelize_2.DataTypes.JSON,
43
- sourceEvent: sequelize_2.DataTypes.JSON,
44
- targetEvent: sequelize_2.DataTypes.JSON,
57
+ requestEvent: {
58
+ type: sequelize_2.DataTypes.JSON,
59
+ allowNull: false
60
+ },
61
+ requestSendEvent: sequelize_2.DataTypes.JSON,
62
+ committedEvent: sequelize_2.DataTypes.JSON,
63
+ completedEvent: sequelize_2.DataTypes.JSON,
64
+ position: sequelize_2.DataTypes.JSON,
45
65
  metadata: sequelize_2.DataTypes.JSON,
46
66
  status: {
47
67
  type: sequelize_2.DataTypes.STRING,
File without changes