@@ -114,7 +114,7 @@ const recipient: ChainAddress = {
114
114
115
115
describe ( 'TokenBridge Tests' , ( ) => {
116
116
const p = new EvmPlatform ( network , configs ) ;
117
- let tb : TokenBridge < typeof network , 'Evm' , EvmChains > ;
117
+ let tb : TokenBridge < typeof network , EvmChains > ;
118
118
119
119
test ( 'Create TokenBridge' , async ( ) => {
120
120
const rpc = p . getRpc ( 'Ethereum' ) ;
@@ -220,9 +220,9 @@ describe('TokenBridge Tests', () => {
220
220
expect ( allTxns ) . toHaveLength ( 1 ) ;
221
221
const [ attestTx ] = allTxns ;
222
222
expect ( attestTx ) . toBeTruthy ( ) ;
223
- expect ( attestTx . chain ) . toEqual ( chain ) ;
223
+ expect ( attestTx ! . chain ) . toEqual ( chain ) ;
224
224
225
- const { transaction } = attestTx ;
225
+ const { transaction } = attestTx ! ;
226
226
expect ( transaction . chainId ) . toEqual (
227
227
nativeChainIds . networkChainToNativeChainId . get ( network , chain ) ,
228
228
) ;
@@ -254,9 +254,9 @@ describe('TokenBridge Tests', () => {
254
254
expect ( allTxns ) . toHaveLength ( 1 ) ;
255
255
const [ attestTx ] = allTxns ;
256
256
expect ( attestTx ) . toBeTruthy ( ) ;
257
- expect ( attestTx . chain ) . toEqual ( chain ) ;
257
+ expect ( attestTx ! . chain ) . toEqual ( chain ) ;
258
258
259
- const { transaction } = attestTx ;
259
+ const { transaction } = attestTx ! ;
260
260
expect ( transaction . chainId ) . toEqual (
261
261
nativeChainIds . networkChainToNativeChainId . get ( network , chain ) ,
262
262
) ;
@@ -284,9 +284,9 @@ describe('TokenBridge Tests', () => {
284
284
285
285
const [ xferTx ] = allTxns ;
286
286
expect ( xferTx ) . toBeTruthy ( ) ;
287
- expect ( xferTx . chain ) . toEqual ( chain ) ;
287
+ expect ( xferTx ! . chain ) . toEqual ( chain ) ;
288
288
289
- const { transaction } = xferTx ;
289
+ const { transaction } = xferTx ! ;
290
290
expect ( transaction . chainId ) . toEqual (
291
291
nativeChainIds . networkChainToNativeChainId . get ( network , chain ) ,
292
292
) ;
@@ -310,12 +310,12 @@ describe('TokenBridge Tests', () => {
310
310
311
311
const [ approveTx , xferTx ] = allTxns ;
312
312
expect ( approveTx ) . toBeTruthy ( ) ;
313
- const { transaction : approveTransaction } = approveTx ;
313
+ const { transaction : approveTransaction } = approveTx ! ;
314
314
expect ( approveTransaction . to ) . toEqual ( realWrappedAddress . toString ( ) ) ;
315
315
316
316
expect ( xferTx ) . toBeTruthy ( ) ;
317
- expect ( xferTx . chain ) . toEqual ( chain ) ;
318
- const { transaction : xferTransaction } = xferTx ;
317
+ expect ( xferTx ! . chain ) . toEqual ( chain ) ;
318
+ const { transaction : xferTransaction } = xferTx ! ;
319
319
expect ( xferTransaction . to ) . toEqual ( tbAddress . toString ( ) ) ;
320
320
expect ( xferTransaction . chainId ) . toEqual (
321
321
nativeChainIds . networkChainToNativeChainId . get ( network , chain ) ,
0 commit comments