File tree Expand file tree Collapse file tree 3 files changed +89
-89
lines changed Expand file tree Collapse file tree 3 files changed +89
-89
lines changed Original file line number Diff line number Diff line change 93
93
]
94
94
},
95
95
"dependencies" : {
96
- "@lifi/types" : " ^11.0.0-beta.3 " ,
96
+ "@lifi/types" : " ^11.0.0-beta.4 " ,
97
97
"@solana/wallet-adapter-base" : " ^0.9.23" ,
98
98
"@solana/web3.js" : " ^1.89.1" ,
99
99
"eth-rpc-errors" : " ^4.0.3" ,
100
- "viem" : " ^2.1.1 "
100
+ "viem" : " ^2.4.0 "
101
101
},
102
102
"devDependencies" : {
103
103
"@commitlint/cli" : " ^18.4.4" ,
106
106
"@types/ws" : " ^8.5.10" ,
107
107
"@typescript-eslint/eslint-plugin" : " ^6.19.0" ,
108
108
"@typescript-eslint/parser" : " ^6.19.0" ,
109
- "@vitest/coverage-v8" : " ^1.2.0 " ,
109
+ "@vitest/coverage-v8" : " ^1.2.1 " ,
110
110
"bs58" : " ^5.0.0" ,
111
111
"eslint" : " ^8.56.0" ,
112
112
"eslint-config-prettier" : " ^9.1.0" ,
116
116
"husky" : " ^8.0.3" ,
117
117
"lint-staged" : " ^15.2.0" ,
118
118
"madge" : " ^6.1.0" ,
119
- "msw" : " ^2.1.0 " ,
119
+ "msw" : " ^2.1.2 " ,
120
120
"pinst" : " ^3.0.0" ,
121
- "prettier" : " ^3.2.2 " ,
121
+ "prettier" : " ^3.2.4 " ,
122
122
"standard-version" : " ^9.5.0" ,
123
123
"ts-node" : " ^10.9.2" ,
124
124
"typescript" : " ^5.3.3" ,
125
- "vitest" : " ^1.2.0 "
125
+ "vitest" : " ^1.2.1 "
126
126
},
127
127
"packageManager" :
" [email protected] " ,
128
128
"publishConfig" : {
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ export async function waitForReceivingTransaction(
66
66
status = await TRANSACTION_HASH_OBSERVERS [ txHash ]
67
67
}
68
68
69
- if ( ! status . receiving ) {
69
+ if ( ! ( ' receiving' in status ) ) {
70
70
throw new ServerError ( "Status doesn't contain receiving information." )
71
71
}
72
72
You can’t perform that action at this time.
0 commit comments