@instadapp/interop-x 0.0.0-dev.14afa72 → 0.0.0-dev.1f933be
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/package.json +2 -2
- package/dist/src/abi/index.js +2 -4
- package/dist/src/abi/interopXContract.json +391 -0
- package/dist/src/alias.js +10 -0
- package/dist/src/constants/addresses.js +3 -3
- package/dist/src/constants/index.js +0 -1
- package/dist/src/db/models/transaction.js +19 -9
- package/dist/src/gnosis/actions/index.js +0 -2
- package/dist/src/gnosis/actions/withdraw/index.js +41 -0
- package/dist/src/gnosis/index.js +1 -1
- package/dist/src/index.js +7 -19
- package/dist/src/net/protocol/dial/SignatureDialProtocol.js +4 -0
- package/dist/src/net/protocol/dial/TransactionStatusDialProtocol.js +2 -0
- package/dist/src/net/protocol/index.js +11 -1
- package/dist/src/tasks/{InteropBridge/ProcessWithdrawEvents.js → InteropXContract/ProcessBridgeRequestEvents.js} +32 -47
- package/dist/src/tasks/InteropXContract/SyncBridgeRequestEvents.js +78 -0
- package/dist/src/tasks/Transactions/SyncTransactionStatusTask.js +2 -0
- package/dist/src/tasks/index.js +10 -30
- package/dist/src/typechain/{InteropBridgeToken.js → InteropXContract.js} +0 -0
- package/dist/src/typechain/factories/InteropXContract__factory.js +526 -0
- package/dist/src/typechain/factories/index.js +3 -5
- package/dist/src/typechain/index.js +3 -5
- package/dist/src/utils/index.js +14 -3
- package/package.json +2 -2
- package/src/abi/index.ts +2 -4
- package/src/abi/interopXContract.json +391 -0
- package/src/alias.ts +6 -0
- package/src/constants/addresses.ts +3 -3
- package/src/constants/index.ts +0 -1
- package/src/db/models/transaction.ts +49 -21
- package/src/gnosis/actions/index.ts +0 -2
- package/src/gnosis/actions/withdraw/index.ts +56 -0
- package/src/gnosis/index.ts +2 -2
- package/src/index.ts +6 -18
- package/src/net/protocol/dial/SignatureDialProtocol.ts +4 -0
- package/src/net/protocol/dial/TransactionStatusDialProtocol.ts +3 -1
- package/src/net/protocol/index.ts +13 -3
- package/src/tasks/{InteropBridge/ProcessWithdrawEvents.ts → InteropXContract/ProcessBridgeRequestEvents.ts} +58 -96
- package/src/tasks/InteropXContract/SyncBridgeRequestEvents.ts +116 -0
- package/src/tasks/Transactions/SyncTransactionStatusTask.ts +2 -0
- package/src/tasks/index.ts +12 -39
- package/src/typechain/InteropXContract.ts +524 -0
- package/src/typechain/factories/InteropXContract__factory.ts +533 -0
- package/src/typechain/factories/index.ts +1 -2
- package/src/typechain/index.ts +2 -4
- package/src/utils/index.ts +45 -3
- package/tsconfig.json +7 -2
- package/dist/src/abi/interopBridgeToken.json +0 -298
- package/dist/src/abi/interopXGateway.json +0 -184
- package/dist/src/constants/itokens.js +0 -13
- package/dist/src/gnosis/actions/deposit.js +0 -48
- package/dist/src/gnosis/actions/withdraw.js +0 -50
- package/dist/src/tasks/InteropBridge/SyncBurnEvents.js +0 -71
- package/dist/src/tasks/InteropBridge/SyncMintEvents.js +0 -67
- package/dist/src/tasks/InteropXGateway/ProcessDepositEvents.js +0 -164
- package/dist/src/tasks/InteropXGateway/SyncDepositEvents.js +0 -74
- package/dist/src/tasks/InteropXGateway/SyncWithdrawtEvents.js +0 -72
- package/dist/src/typechain/InteropXGateway.js +0 -2
- package/dist/src/typechain/factories/InteropBridgeToken__factory.js +0 -471
- package/dist/src/typechain/factories/InteropXGateway__factory.js +0 -265
- package/src/abi/interopBridgeToken.json +0 -298
- package/src/abi/interopXGateway.json +0 -184
- package/src/constants/itokens.ts +0 -10
- package/src/gnosis/actions/deposit.ts +0 -63
- package/src/gnosis/actions/withdraw.ts +0 -67
- package/src/tasks/InteropBridge/SyncBurnEvents.ts +0 -119
- package/src/tasks/InteropBridge/SyncMintEvents.ts +0 -99
- package/src/tasks/InteropXGateway/ProcessDepositEvents.ts +0 -260
- package/src/tasks/InteropXGateway/SyncDepositEvents.ts +0 -124
- package/src/tasks/InteropXGateway/SyncWithdrawtEvents.ts +0 -105
- package/src/typechain/InteropBridgeToken.ts +0 -692
- package/src/typechain/InteropXGateway.ts +0 -407
- package/src/typechain/factories/InteropBridgeToken__factory.ts +0 -478
- package/src/typechain/factories/InteropXGateway__factory.ts +0 -272
@@ -1,298 +0,0 @@
|
|
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
|
-
]
|
@@ -1,184 +0,0 @@
|
|
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
|
-
]
|
@@ -1,13 +0,0 @@
|
|
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
|
-
};
|
@@ -1,48 +0,0 @@
|
|
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 abi_1 = __importDefault(require("@/abi"));
|
7
|
-
const config_1 = __importDefault(require("@/config"));
|
8
|
-
const constants_1 = require("@/constants");
|
9
|
-
const utils_1 = require("@/utils");
|
10
|
-
const ethers_1 = require("ethers");
|
11
|
-
const ethers_multisend_1 = require("ethers-multisend");
|
12
|
-
async function default_1(transaction, type) {
|
13
|
-
const transactions = [];
|
14
|
-
const logs = [];
|
15
|
-
if (transaction.sourceStatus === 'pending') {
|
16
|
-
throw Error('Cannot build data for pending deposit transaction');
|
17
|
-
}
|
18
|
-
if (!transaction.submitEvent) {
|
19
|
-
throw Error('Cannot build data for transaction without submitEvent');
|
20
|
-
}
|
21
|
-
const token = constants_1.tokens[transaction.sourceChainId].find(token => token.address.toLowerCase() === transaction.submitEvent.token.toLowerCase());
|
22
|
-
if (!token) {
|
23
|
-
throw Error(`Unsupported token ${transaction.submitEvent.token}`);
|
24
|
-
}
|
25
|
-
const itoken = constants_1.itokens[transaction.targetChainId].find(t => t.symbol.toLowerCase() === token.symbol.toLowerCase());
|
26
|
-
if (!itoken) {
|
27
|
-
throw Error(`Unsupported itoken ${token.symbol}`);
|
28
|
-
}
|
29
|
-
const targetChainProvider = new ethers_1.ethers.providers.JsonRpcProvider((0, utils_1.getRpcProviderUrl)(transaction.targetChainId));
|
30
|
-
const targetWallet = new ethers_1.ethers.Wallet(config_1.default.privateKey, targetChainProvider);
|
31
|
-
const interopBridgeContract = (0, utils_1.getContract)(itoken.address, abi_1.default.interopBridgeToken, targetWallet);
|
32
|
-
const { data } = await interopBridgeContract.populateTransaction.mint(transaction.submitEvent.user, ethers_1.ethers.BigNumber.from(transaction.submitEvent.amount.toString()), ethers_1.ethers.BigNumber.from(transaction.submitEvent.sourceChainId.toString()), transaction.submitTransactionHash);
|
33
|
-
transactions.push({
|
34
|
-
to: itoken.address,
|
35
|
-
data: data,
|
36
|
-
value: '0',
|
37
|
-
operation: ethers_multisend_1.OperationType.Call,
|
38
|
-
});
|
39
|
-
logs.push({
|
40
|
-
type: 'mint',
|
41
|
-
message: `Minted ${transaction.submitEvent.amount / 10 ** token.decimals} ${token.symbol} to ${transaction.submitEvent.user}`,
|
42
|
-
});
|
43
|
-
return {
|
44
|
-
transactions,
|
45
|
-
logs,
|
46
|
-
};
|
47
|
-
}
|
48
|
-
exports.default = default_1;
|
@@ -1,50 +0,0 @@
|
|
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 abi_1 = __importDefault(require("@/abi"));
|
7
|
-
const config_1 = __importDefault(require("@/config"));
|
8
|
-
const constants_1 = require("@/constants");
|
9
|
-
const utils_1 = require("@/utils");
|
10
|
-
const ethers_1 = require("ethers");
|
11
|
-
const ethers_multisend_1 = require("ethers-multisend");
|
12
|
-
async function default_1(transaction, type) {
|
13
|
-
const transactions = [];
|
14
|
-
const logs = [];
|
15
|
-
if (transaction.action !== 'withdraw') {
|
16
|
-
throw new Error(`Invalid action: ${transaction.action}`);
|
17
|
-
}
|
18
|
-
if (transaction.action === 'withdraw' && transaction.sourceStatus === 'pending') {
|
19
|
-
throw Error('Cannot build data for pending withdraw transaction');
|
20
|
-
}
|
21
|
-
if (!transaction.submitEvent) {
|
22
|
-
throw Error('Cannot build data for transaction without submitEvent');
|
23
|
-
}
|
24
|
-
const { to, amount, sourceChainId, targetChainId, itoken: itokenAddress } = transaction.submitEvent;
|
25
|
-
const itoken = constants_1.itokens[sourceChainId].find(token => token.address.toLowerCase() === itokenAddress.toLowerCase());
|
26
|
-
if (!itoken) {
|
27
|
-
throw Error(`Unsupported itoken ${itokenAddress}`);
|
28
|
-
}
|
29
|
-
const token = constants_1.tokens[targetChainId].find(t => t.symbol.toLowerCase() === itoken.symbol.toLowerCase());
|
30
|
-
if (!token) {
|
31
|
-
throw Error(`Unsupported token ${itoken.symbol}`);
|
32
|
-
}
|
33
|
-
const targetChainProvider = new ethers_1.ethers.providers.JsonRpcProvider((0, utils_1.getRpcProviderUrl)(targetChainId));
|
34
|
-
const targetWallet = new ethers_1.ethers.Wallet(config_1.default.privateKey, targetChainProvider);
|
35
|
-
const gatewayAddress = constants_1.addresses[targetChainId].interopXGateway;
|
36
|
-
const interopBridgeContract = (0, utils_1.getContract)(gatewayAddress, abi_1.default.interopXGateway, targetWallet);
|
37
|
-
const { data } = await interopBridgeContract.populateTransaction.systemWithdraw(ethers_1.ethers.BigNumber.from(amount.toString()), to, token.address, ethers_1.ethers.BigNumber.from(sourceChainId.toString()), transaction.submitTransactionHash);
|
38
|
-
transactions.push({
|
39
|
-
to: gatewayAddress,
|
40
|
-
data: data,
|
41
|
-
value: '0',
|
42
|
-
operation: ethers_multisend_1.OperationType.Call,
|
43
|
-
});
|
44
|
-
logs.push({
|
45
|
-
type: 'transfer',
|
46
|
-
message: `Transfer ${amount / 10 ** token.decimals} ${token.symbol} to ${to}`,
|
47
|
-
});
|
48
|
-
return { transactions, logs };
|
49
|
-
}
|
50
|
-
exports.default = default_1;
|
@@ -1,71 +0,0 @@
|
|
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 BaseTask_1 = require("../BaseTask");
|
7
|
-
const logger_1 = __importDefault(require("@/logger"));
|
8
|
-
const ethers_1 = require("ethers");
|
9
|
-
const abi_1 = __importDefault(require("@/abi"));
|
10
|
-
const db_1 = require("@/db");
|
11
|
-
const utils_1 = require("@/utils");
|
12
|
-
const config_1 = __importDefault(require("@/config"));
|
13
|
-
class SyncBurnEvents extends BaseTask_1.BaseTask {
|
14
|
-
constructor({ chainId, itokenAddress }) {
|
15
|
-
super({
|
16
|
-
logger: new logger_1.default("InteropBridgeToken::SyncBurnEvents"),
|
17
|
-
});
|
18
|
-
this.chainId = chainId;
|
19
|
-
this.itokenAddress = itokenAddress;
|
20
|
-
}
|
21
|
-
async pollHandler() {
|
22
|
-
const currentBlock = await this.provider.getBlockNumber();
|
23
|
-
const events = await this.contract.queryFilter(this.contract.filters.Burn(), currentBlock - 2000, currentBlock);
|
24
|
-
let processedEvents = 0;
|
25
|
-
for (const event of events) {
|
26
|
-
try {
|
27
|
-
if (!event.args) {
|
28
|
-
continue;
|
29
|
-
}
|
30
|
-
const { to, amount, sourceChainId, targetChainId } = event.args;
|
31
|
-
const uniqueIdentifier = {
|
32
|
-
action: 'withdraw',
|
33
|
-
submitTransactionHash: event.transactionHash,
|
34
|
-
sourceChainId: sourceChainId,
|
35
|
-
targetChainId: targetChainId,
|
36
|
-
};
|
37
|
-
if (await db_1.Transaction.findOne({ where: uniqueIdentifier })) {
|
38
|
-
continue;
|
39
|
-
}
|
40
|
-
const tx = await event.getTransaction();
|
41
|
-
await db_1.Transaction.create(Object.assign(Object.assign({}, uniqueIdentifier), { transactionHash: (0, utils_1.generateInteropTransactionHash)(uniqueIdentifier), from: tx.from, to, submitTransactionHash: event.transactionHash, submitBlockNumber: event.blockNumber,
|
42
|
-
// submit & source are the same
|
43
|
-
sourceTransactionHash: event.transactionHash, sourceBlockNumber: event.blockNumber, sourceStatus: "success", targetStatus: "uninitialised", submitEvent: {
|
44
|
-
to,
|
45
|
-
amount: amount.toString(),
|
46
|
-
itoken: this.itokenAddress,
|
47
|
-
sourceChainId: sourceChainId,
|
48
|
-
targetChainId: targetChainId,
|
49
|
-
}, sourceEvent: {
|
50
|
-
to,
|
51
|
-
amount: amount.toString(),
|
52
|
-
itoken: this.itokenAddress,
|
53
|
-
sourceChainId: sourceChainId,
|
54
|
-
targetChainId: targetChainId,
|
55
|
-
}, status: "pending" }));
|
56
|
-
this.logger.info(`Withdraw queued: ${event.transactionHash} ${event.blockNumber}`);
|
57
|
-
}
|
58
|
-
catch (error) {
|
59
|
-
this.logger.error(error);
|
60
|
-
}
|
61
|
-
}
|
62
|
-
if (processedEvents > 0)
|
63
|
-
this.logger.info(`${processedEvents} events processed`);
|
64
|
-
}
|
65
|
-
async start() {
|
66
|
-
this.provider = new ethers_1.ethers.providers.JsonRpcProvider((0, utils_1.getRpcProviderUrl)(this.chainId));
|
67
|
-
this.contract = (0, utils_1.getContract)(this.itokenAddress, abi_1.default.interopBridgeToken, new ethers_1.ethers.Wallet(config_1.default.privateKey, this.provider));
|
68
|
-
await super.start();
|
69
|
-
}
|
70
|
-
}
|
71
|
-
exports.default = SyncBurnEvents;
|