@@ -63,8 +63,8 @@ export class MaticPosBridge implements BridgeNative, BridgeERC20, BridgeERC1155,
63
63
connect ( networks : NetworkConfig [ ] ) : MaticPosBridge {
64
64
this . maticNet = networks . find ( ( n ) => n . chainId === this . conf . maticId )
65
65
this . parentNet = networks . find ( ( n ) => n . chainId === this . conf . parentId )
66
- this . maticClient = new ethers . providers . JsonRpcProvider ( this . maticNet . rpcUrl )
67
- this . parentClient = new ethers . providers . JsonRpcProvider ( this . parentNet . rpcUrl )
66
+ this . maticClient = new ethers . providers . JsonRpcProvider ( this . maticNet ! . rpcUrl )
67
+ this . parentClient = new ethers . providers . JsonRpcProvider ( this . parentNet ! . rpcUrl )
68
68
return this
69
69
}
70
70
@@ -120,14 +120,16 @@ export class MaticPosBridge implements BridgeNative, BridgeERC20, BridgeERC1155,
120
120
// Check if token has child mapped
121
121
if ( this . isDeposit ( from , to ) ) {
122
122
const child = await safeSolve ( rootChain . rootToChildToken ( token ) , ethers . constants . AddressZero )
123
- return child && child !== ethers . constants . AddressZero
123
+ return ! ! child && child !== ethers . constants . AddressZero
124
124
}
125
125
126
126
// Check if token has root mapped
127
127
if ( this . isWithdraw ( from , to ) ) {
128
128
const root = await safeSolve ( rootChain . childToRootToken ( token ) , ethers . constants . AddressZero )
129
- return root && root !== ethers . constants . AddressZero
129
+ return ! ! root && root !== ethers . constants . AddressZero
130
130
}
131
+
132
+ return false
131
133
}
132
134
133
135
async getMoves ( wallet : string , from : providers . BlockTag = 0 , to : providers . BlockTag = "latest" ) : Promise < Move [ ] > {
@@ -165,11 +167,11 @@ export class MaticPosBridge implements BridgeNative, BridgeERC20, BridgeERC1155,
165
167
} ]
166
168
}
167
169
168
- return undefined
170
+ return [ ]
169
171
}
170
172
171
- completeNative ( _from : NetworkConfig , _to : NetworkConfig , _txHash : string , _wallet : string ) : Promise < providers . TransactionRequest [ ] > {
172
- return undefined
173
+ async completeNative ( _from : NetworkConfig , _to : NetworkConfig , _txHash : string , _wallet : string ) : Promise < providers . TransactionRequest [ ] > {
174
+ return [ ]
173
175
}
174
176
175
177
async _depositsNative ( wallet : string , from : providers . BlockTag , to : providers . BlockTag ) : Promise < MoveNative [ ] > {
@@ -190,15 +192,15 @@ export class MaticPosBridge implements BridgeNative, BridgeERC20, BridgeERC1155,
190
192
191
193
return Promise . all ( candidates . map ( async ( cand ) => {
192
194
const stateSyncId = await this . getStateSyncId ( cand . transactionHash , cand . logIndex + 1 )
193
- const isPending = stateSyncId . gte ( await lastStateId )
195
+ const isPending = stateSyncId ! . gte ( await lastStateId )
194
196
195
197
return {
196
198
...cand ,
197
199
completeTx : undefined ,
198
200
isCompleted : ! isPending ,
199
201
isPending : isPending ,
200
- fromChainId : this . parentNet . chainId ,
201
- toChainId : this . maticNet . chainId ,
202
+ fromChainId : this . parentNet ! . chainId ,
203
+ toChainId : this . maticNet ! . chainId ,
202
204
amount : ethers . utils . defaultAbiCoder . decode ( [ 'uint256' ] , cand . data ) [ 0 ]
203
205
}
204
206
} ) )
@@ -212,7 +214,7 @@ export class MaticPosBridge implements BridgeNative, BridgeERC20, BridgeERC1155,
212
214
return this . isMapped ( from , to , token )
213
215
}
214
216
215
- async estimateERC20 ( from : NetworkConfig , to : NetworkConfig , token : string ) : Promise < MoveEstimate > {
217
+ async estimateERC20 ( from : NetworkConfig , to : NetworkConfig , token : string ) : Promise < MoveEstimate | undefined > {
216
218
if ( this . isDeposit ( from , to ) ) {
217
219
return {
218
220
crossTime : MaticPosBridge . POS_TIME_DEPOSIT ,
@@ -233,7 +235,7 @@ export class MaticPosBridge implements BridgeNative, BridgeERC20, BridgeERC1155,
233
235
async moveERC20 ( from : NetworkConfig , to : NetworkConfig , token : string , dest : string , amount : BigNumberish ) : Promise < providers . TransactionRequest [ ] > {
234
236
if ( this . isMaticToken ( token ) ) {
235
237
// Matic token must use the plasma bridge
236
- return undefined
238
+ return [ ]
237
239
}
238
240
239
241
if ( this . isDeposit ( from , to ) ) {
@@ -259,7 +261,7 @@ export class MaticPosBridge implements BridgeNative, BridgeERC20, BridgeERC1155,
259
261
} ]
260
262
}
261
263
262
- return undefined
264
+ return [ ]
263
265
}
264
266
265
267
async completeERC20 ( _from : NetworkConfig , _to : NetworkConfig , txHash : string , wallet : string ) : Promise < providers . TransactionRequest [ ] > {
@@ -286,14 +288,14 @@ export class MaticPosBridge implements BridgeNative, BridgeERC20, BridgeERC1155,
286
288
287
289
return Promise . all ( candidates . map ( async ( cand ) => {
288
290
const stateSyncId = await this . getStateSyncId ( cand . transactionHash , cand . logIndex + 2 )
289
- const isPending = stateSyncId . gte ( await lastStateId )
291
+ const isPending = stateSyncId ! . gte ( await lastStateId )
290
292
return {
291
293
...cand ,
292
294
completeTx : undefined ,
293
295
isCompleted : ! isPending ,
294
296
isPending : isPending ,
295
- fromChainId : this . parentNet . chainId ,
296
- toChainId : this . maticNet . chainId ,
297
+ fromChainId : this . parentNet ! . chainId ,
298
+ toChainId : this . maticNet ! . chainId ,
297
299
token : ethers . utils . defaultAbiCoder . decode ( [ 'address' ] , cand . topics [ 3 ] ) [ 0 ] ,
298
300
amount : ethers . utils . defaultAbiCoder . decode ( [ 'uint256' ] , cand . data ) [ 0 ]
299
301
}
@@ -315,15 +317,15 @@ export class MaticPosBridge implements BridgeNative, BridgeERC20, BridgeERC1155,
315
317
316
318
return Promise . all ( candidates . map ( async ( cand ) => {
317
319
const isCompleted = await safeSolve ( this . posClient . isERC20ExitProcessed ( cand . transactionHash ) , false )
318
- const completeTx = ! isCompleted ? safeSolve ( this . completeERC20 ( this . maticNet , this . parentNet , cand . transactionHash , wallet ) , undefined ) : undefined
320
+ const completeTx = ! isCompleted ? safeSolve ( this . completeERC20 ( this . maticNet ! , this . parentNet ! , cand . transactionHash , wallet ) , undefined ) : undefined
319
321
320
322
return {
321
323
...cand ,
322
324
completeTx : await completeTx ,
323
325
isCompleted : await isCompleted ,
324
326
isPending : ! isCompleted && ! ( await completeTx ) ,
325
- fromChainId : this . maticNet . chainId ,
326
- toChainId : this . parentNet . chainId ,
327
+ fromChainId : this . maticNet ! . chainId ,
328
+ toChainId : this . parentNet ! . chainId ,
327
329
token : cand . address ,
328
330
amount : ethers . utils . defaultAbiCoder . decode ( [ 'uint256' ] , cand . data ) [ 0 ]
329
331
}
@@ -338,7 +340,7 @@ export class MaticPosBridge implements BridgeNative, BridgeERC20, BridgeERC1155,
338
340
return this . isMapped ( from , to , token )
339
341
}
340
342
341
- async estimateERC1155 ( from : NetworkConfig , to : NetworkConfig , token : string , ids : BigNumberish [ ] ) : Promise < MoveEstimate > {
343
+ async estimateERC1155 ( from : NetworkConfig , to : NetworkConfig , token : string , ids : BigNumberish [ ] ) : Promise < MoveEstimate | undefined > {
342
344
if ( this . isDeposit ( from , to ) ) {
343
345
return {
344
346
crossTime : MaticPosBridge . POS_TIME_DEPOSIT ,
@@ -384,7 +386,7 @@ export class MaticPosBridge implements BridgeNative, BridgeERC20, BridgeERC1155,
384
386
} ]
385
387
}
386
388
387
- return undefined
389
+ return [ ]
388
390
}
389
391
390
392
async completeERC1155 ( from : NetworkConfig , to : NetworkConfig , txHash : string , wallet : string ) : Promise < ethers . providers . TransactionRequest [ ] > {
@@ -411,15 +413,15 @@ export class MaticPosBridge implements BridgeNative, BridgeERC20, BridgeERC1155,
411
413
412
414
return Promise . all ( candidates . map ( async ( cand ) => {
413
415
const stateSyncId = await this . getStateSyncId ( cand . transactionHash , cand . logIndex + 2 )
414
- const isPending = stateSyncId . gte ( await lastStateId )
416
+ const isPending = stateSyncId ! . gte ( await lastStateId )
415
417
const decodedData = ethers . utils . defaultAbiCoder . decode ( [ 'uint256[]' , 'uint256[]' ] , cand . data )
416
418
return {
417
419
...cand ,
418
420
completeTx : undefined ,
419
421
isCompleted : ! isPending ,
420
422
isPending : isPending ,
421
- fromChainId : this . parentNet . chainId ,
422
- toChainId : this . maticNet . chainId ,
423
+ fromChainId : this . parentNet ! . chainId ,
424
+ toChainId : this . maticNet ! . chainId ,
423
425
token : ethers . utils . defaultAbiCoder . decode ( [ 'address' ] , cand . topics [ 3 ] ) [ 0 ] ,
424
426
ids : decodedData [ 0 ] ,
425
427
amounts : decodedData [ 1 ]
@@ -435,24 +437,24 @@ export class MaticPosBridge implements BridgeNative, BridgeERC20, BridgeERC1155,
435
437
toBlock : to ,
436
438
topics : [
437
439
MaticPosBridge . TRANSFER_ERC1155_TOPIC ,
438
- undefined ,
440
+ '' ,
439
441
ethers . utils . defaultAbiCoder . encode ( [ 'address' ] , [ wallet ] ) ,
440
442
ethers . utils . defaultAbiCoder . encode ( [ 'address' ] , [ ethers . constants . AddressZero ] )
441
443
]
442
444
} )
443
445
444
446
return Promise . all ( candidates . map ( async ( cand ) => {
445
447
const isCompleted = await safeSolve ( this . posClient . isBatchERC1155ExitProcessed ( cand . transactionHash ) , false )
446
- const completeTx = ! isCompleted ? safeSolve ( this . completeERC1155 ( this . maticNet , this . parentNet , cand . transactionHash , wallet ) , undefined ) : undefined
448
+ const completeTx = ! isCompleted ? safeSolve ( this . completeERC1155 ( this . maticNet ! , this . parentNet ! , cand . transactionHash , wallet ) , undefined ) : undefined
447
449
const decodedData = ethers . utils . defaultAbiCoder . decode ( [ 'uint256[]' , 'uint256[]' ] , cand . data )
448
450
449
451
return {
450
452
...cand ,
451
453
completeTx : await completeTx ,
452
454
isCompleted : isCompleted ,
453
455
isPending : ! isCompleted && ! ( await completeTx ) ,
454
- fromChainId : this . maticNet . chainId ,
455
- toChainId : this . parentNet . chainId ,
456
+ fromChainId : this . maticNet ! . chainId ,
457
+ toChainId : this . parentNet ! . chainId ,
456
458
token : cand . address ,
457
459
amount : ethers . utils . defaultAbiCoder . decode ( [ 'uint256' ] , cand . data ) [ 0 ] ,
458
460
ids : decodedData [ 0 ] ,
0 commit comments