Skip to content

Commit b4ceb97

Browse files
committed
chore: bump packages
1 parent 3a73545 commit b4ceb97

File tree

3 files changed

+89
-89
lines changed

3 files changed

+89
-89
lines changed

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,11 @@
9393
]
9494
},
9595
"dependencies": {
96-
"@lifi/types": "^11.0.0-beta.3",
96+
"@lifi/types": "^11.0.0-beta.4",
9797
"@solana/wallet-adapter-base": "^0.9.23",
9898
"@solana/web3.js": "^1.89.1",
9999
"eth-rpc-errors": "^4.0.3",
100-
"viem": "^2.1.1"
100+
"viem": "^2.4.0"
101101
},
102102
"devDependencies": {
103103
"@commitlint/cli": "^18.4.4",
@@ -106,7 +106,7 @@
106106
"@types/ws": "^8.5.10",
107107
"@typescript-eslint/eslint-plugin": "^6.19.0",
108108
"@typescript-eslint/parser": "^6.19.0",
109-
"@vitest/coverage-v8": "^1.2.0",
109+
"@vitest/coverage-v8": "^1.2.1",
110110
"bs58": "^5.0.0",
111111
"eslint": "^8.56.0",
112112
"eslint-config-prettier": "^9.1.0",
@@ -116,13 +116,13 @@
116116
"husky": "^8.0.3",
117117
"lint-staged": "^15.2.0",
118118
"madge": "^6.1.0",
119-
"msw": "^2.1.0",
119+
"msw": "^2.1.2",
120120
"pinst": "^3.0.0",
121-
"prettier": "^3.2.2",
121+
"prettier": "^3.2.4",
122122
"standard-version": "^9.5.0",
123123
"ts-node": "^10.9.2",
124124
"typescript": "^5.3.3",
125-
"vitest": "^1.2.0"
125+
"vitest": "^1.2.1"
126126
},
127127
"packageManager": "[email protected]",
128128
"publishConfig": {

src/core/waitForReceivingTransaction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export async function waitForReceivingTransaction(
6666
status = await TRANSACTION_HASH_OBSERVERS[txHash]
6767
}
6868

69-
if (!status.receiving) {
69+
if (!('receiving' in status)) {
7070
throw new ServerError("Status doesn't contain receiving information.")
7171
}
7272

0 commit comments

Comments
 (0)