@instadapp/interop-x 0.0.0-dev.de23e71 → 0.0.0-dev.e33810b

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.
Files changed (69) hide show
  1. package/dist/package.json +13 -12
  2. package/dist/src/abi/index.js +2 -4
  3. package/dist/src/abi/interopXContract.json +454 -0
  4. package/dist/src/constants/addresses.js +3 -3
  5. package/dist/src/constants/index.js +0 -1
  6. package/dist/src/constants/tokens.js +31 -1
  7. package/dist/src/db/models/transaction.js +19 -11
  8. package/dist/src/gnosis/actions/index.js +0 -2
  9. package/dist/src/gnosis/actions/withdraw/index.js +55 -0
  10. package/dist/src/gnosis/index.js +4 -4
  11. package/dist/src/index.js +4 -2
  12. package/dist/src/net/protocol/dial/SignatureDialProtocol.js +6 -2
  13. package/dist/src/tasks/{InteropBridge/ProcessWithdrawEvents.js → InteropXContract/ProcessBridgeRequestEvents.js} +42 -52
  14. package/dist/src/tasks/InteropXContract/SyncBridgeRequestEvents.js +78 -0
  15. package/dist/src/tasks/InteropXContract/SyncBridgeRequestSentEvents.js +90 -0
  16. package/dist/src/tasks/index.js +13 -30
  17. package/dist/src/typechain/{InteropBridgeToken.js → InteropXContract.js} +0 -0
  18. package/dist/src/typechain/factories/InteropXContract__factory.js +635 -0
  19. package/dist/src/typechain/factories/index.js +3 -5
  20. package/dist/src/typechain/index.js +3 -5
  21. package/dist/src/utils/index.js +37 -8
  22. package/package.json +13 -12
  23. package/src/abi/index.ts +2 -4
  24. package/src/abi/interopXContract.json +454 -0
  25. package/src/constants/addresses.ts +3 -3
  26. package/src/constants/index.ts +0 -1
  27. package/src/constants/tokens.ts +32 -2
  28. package/src/db/models/transaction.ts +58 -27
  29. package/src/gnosis/actions/index.ts +0 -2
  30. package/src/gnosis/actions/withdraw/index.ts +77 -0
  31. package/src/gnosis/index.ts +5 -5
  32. package/src/index.ts +3 -1
  33. package/src/net/protocol/dial/SignatureDialProtocol.ts +6 -2
  34. package/src/tasks/{InteropBridge/ProcessWithdrawEvents.ts → InteropXContract/ProcessBridgeRequestEvents.ts} +66 -99
  35. package/src/tasks/InteropXContract/SyncBridgeRequestEvents.ts +115 -0
  36. package/src/tasks/InteropXContract/SyncBridgeRequestSentEvents.ts +121 -0
  37. package/src/tasks/index.ts +15 -37
  38. package/src/typechain/InteropXContract.ts +680 -0
  39. package/src/typechain/factories/InteropXContract__factory.ts +642 -0
  40. package/src/typechain/factories/index.ts +1 -2
  41. package/src/typechain/index.ts +2 -4
  42. package/src/utils/index.ts +78 -8
  43. package/dist/src/abi/interopBridgeToken.json +0 -298
  44. package/dist/src/abi/interopXGateway.json +0 -184
  45. package/dist/src/constants/itokens.js +0 -13
  46. package/dist/src/gnosis/actions/deposit.js +0 -48
  47. package/dist/src/gnosis/actions/withdraw.js +0 -50
  48. package/dist/src/tasks/InteropBridge/SyncBurnEvents.js +0 -71
  49. package/dist/src/tasks/InteropBridge/SyncMintEvents.js +0 -67
  50. package/dist/src/tasks/InteropXGateway/ProcessDepositEvents.js +0 -164
  51. package/dist/src/tasks/InteropXGateway/SyncDepositEvents.js +0 -74
  52. package/dist/src/tasks/InteropXGateway/SyncWithdrawtEvents.js +0 -72
  53. package/dist/src/typechain/InteropXGateway.js +0 -2
  54. package/dist/src/typechain/factories/InteropBridgeToken__factory.js +0 -471
  55. package/dist/src/typechain/factories/InteropXGateway__factory.js +0 -265
  56. package/src/abi/interopBridgeToken.json +0 -298
  57. package/src/abi/interopXGateway.json +0 -184
  58. package/src/constants/itokens.ts +0 -10
  59. package/src/gnosis/actions/deposit.ts +0 -63
  60. package/src/gnosis/actions/withdraw.ts +0 -67
  61. package/src/tasks/InteropBridge/SyncBurnEvents.ts +0 -119
  62. package/src/tasks/InteropBridge/SyncMintEvents.ts +0 -99
  63. package/src/tasks/InteropXGateway/ProcessDepositEvents.ts +0 -260
  64. package/src/tasks/InteropXGateway/SyncDepositEvents.ts +0 -124
  65. package/src/tasks/InteropXGateway/SyncWithdrawtEvents.ts +0 -105
  66. package/src/typechain/InteropBridgeToken.ts +0 -692
  67. package/src/typechain/InteropXGateway.ts +0 -407
  68. package/src/typechain/factories/InteropBridgeToken__factory.ts +0 -478
  69. package/src/typechain/factories/InteropXGateway__factory.ts +0 -272
@@ -6,6 +6,9 @@ import axiosRetry from "axios-retry";
6
6
  import { addresses } from '@/constants';
7
7
  import { ChainId } from '@/types'
8
8
  import { ethers } from 'ethers';
9
+ import { GnosisSafe } from '@/typechain';
10
+ import retry from 'async-retry'
11
+
9
12
  export const http = axios.create();
10
13
 
11
14
  axiosRetry(http, { retries: 3, retryDelay: axiosRetry.exponentialDelay });
@@ -130,15 +133,23 @@ export const asyncCallWithTimeout = async <T>(asyncPromise: Promise<T>, timeout:
130
133
  }
131
134
 
132
135
 
133
- export const generateInteropTransactionHash = (data: { action: string, submitTransactionHash: string, sourceChainId: string | number, targetChainId: string | number }) => {
134
- return ethers.utils.solidityKeccak256(['string', 'string', 'string', 'string'], [
135
- String(data.action),
136
- String(data.submitTransactionHash),
136
+ export const generateInteropTransactionHash = (data: { actionId: string, bridger: string, requestTransactionHash: string, sourceChainId: string | number, targetChainId: string | number }) => {
137
+ return ethers.utils.solidityKeccak256(['string', 'string', 'string', 'string', 'string'], [
138
+ String(data.actionId),
139
+ String(data.bridger),
140
+ String(data.requestTransactionHash),
137
141
  String(data.sourceChainId),
138
142
  String(data.targetChainId),
139
143
  ]);
140
144
  }
141
145
 
146
+
147
+ export class ContractError extends Error {
148
+ method: string;
149
+ address: string;
150
+ args: any[];
151
+ }
152
+
142
153
  export function getContract<TContract extends ethers.Contract>(address: string, contractInterface: ethers.ContractInterface | any, signerOrProvider?: ethers.Signer | ethers.providers.Provider) {
143
154
  if (!ethers.utils.getAddress(address) || address === ethers.constants.AddressZero) {
144
155
  throw Error(`Invalid 'address' parameter '${address}'.`)
@@ -162,11 +173,24 @@ export function getContract<TContract extends ethers.Contract>(address: string,
162
173
  const value = Reflect.get(target, prop, receiver);
163
174
 
164
175
  if (typeof value === 'function' && (contract.functions.hasOwnProperty(prop) || ['queryFilter'].includes(String(prop)))) {
176
+ let isConstant = false;
177
+
178
+ try {
179
+ isConstant = contract.interface.getFunction(String(prop)).constant
180
+ } catch (error) {
181
+ }
182
+
165
183
  return async (...args: any[]) => {
166
184
  try {
167
- return await value.bind(contract)(...args);
185
+ return await retry(async () => await value.bind(contract)(...args), { retries: isConstant ? 1 : 3 });
168
186
  } catch (error) {
169
- throw new Error(`Error calling "${String(prop)}" on "${address}": ${error.reason || error.message}`)
187
+ const err = new ContractError(`Error calling "${String(prop)}" on "${address}": ${error.reason || error.message}`)
188
+
189
+ err.method = String(prop)
190
+ err.address = address
191
+ err.args = [...args]
192
+
193
+ throw err
170
194
  }
171
195
  }
172
196
  }
@@ -182,9 +206,15 @@ export function getContract<TContract extends ethers.Contract>(address: string,
182
206
  if (typeof value === 'function') {
183
207
  return async (...args: any[]) => {
184
208
  try {
185
- return await value.bind(contract)(...args);
209
+ return await retry(async () => await value.bind(contract)(...args), { retries: parentProp === 'callStatic' ? 3 : 1 });
186
210
  } catch (error) {
187
- throw new Error(`Error calling "${String(prop)}" using "${parentProp}" on "${address}": ${error.reason || error.message}`)
211
+ const err = new ContractError(`Error calling "${String(prop)}" using "${parentProp}" on "${address}": ${error.reason || error.message}`)
212
+
213
+ err.method = String(prop)
214
+ err.address = address
215
+ err.args = [...args]
216
+
217
+ throw err
188
218
  }
189
219
  }
190
220
  }
@@ -195,4 +225,44 @@ export function getContract<TContract extends ethers.Contract>(address: string,
195
225
  return value;
196
226
  },
197
227
  });
228
+ }
229
+
230
+ export const generateGnosisTransaction = async (transactionData: any, safeContract: GnosisSafe) => {
231
+ console.log(transactionData);
232
+
233
+ let isExecuted = await safeContract.dataHashes(
234
+ await safeContract.getTransactionHash(
235
+ transactionData.to,
236
+ transactionData.value,
237
+ transactionData.data,
238
+ transactionData.operation,
239
+ transactionData.safeTxGas,
240
+ transactionData.baseGas,
241
+ transactionData.gasPrice,
242
+ transactionData.gasToken,
243
+ transactionData.refundReceiver,
244
+ transactionData.nonce
245
+ )
246
+ )
247
+
248
+ while (isExecuted == 1) {
249
+ transactionData.safeTxGas = ethers.BigNumber.from(String(transactionData.safeTxGas)).add(1).toString()
250
+
251
+ isExecuted = await safeContract.dataHashes(
252
+ await safeContract.getTransactionHash(
253
+ transactionData.to,
254
+ transactionData.value,
255
+ transactionData.data,
256
+ transactionData.operation,
257
+ transactionData.safeTxGas,
258
+ transactionData.baseGas,
259
+ transactionData.gasPrice,
260
+ transactionData.gasToken,
261
+ transactionData.refundReceiver,
262
+ transactionData.nonce
263
+ )
264
+ )
265
+ }
266
+
267
+ return transactionData
198
268
  }
@@ -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;