Skip to content

Commit 7c1f223

Browse files
committed
fix: bump sdk
1 parent c9cf0dd commit 7c1f223

File tree

3 files changed

+628
-626
lines changed

3 files changed

+628
-626
lines changed

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,21 @@
1616
"test": "vitest"
1717
},
1818
"dependencies": {
19-
"node-pty": "^1.0.0",
19+
"node-pty": "^1.1.0",
2020
"oblivious-set": "^2.0.0",
2121
"pino-pretty": "^13.1.3"
2222
},
2323
"devDependencies": {
24-
"@aws-sdk/client-s3": "^3.955.0",
24+
"@aws-sdk/client-s3": "^3.956.0",
2525
"@biomejs/biome": "^2.3.10",
2626
"@commander-js/extra-typings": "^14.0.0",
2727
"@commitlint/cli": "^20.2.0",
2828
"@commitlint/config-conventional": "^20.2.0",
2929
"@gearbox-protocol/biome-config": "^1.0.16",
30-
"@gearbox-protocol/cli-utils": "^5.64.1",
30+
"@gearbox-protocol/cli-utils": "^5.64.2",
3131
"@gearbox-protocol/liquidator-contracts": "^1.36.0-experimental.67",
3232
"@gearbox-protocol/liquidator-v2-contracts": "^2.4.0",
33-
"@gearbox-protocol/sdk": "12.0.0",
33+
"@gearbox-protocol/sdk": "12.3.0",
3434
"@gearbox-protocol/types": "^1.14.8",
3535
"@types/node": "^25.0.3",
3636
"@uniswap/sdk-core": "^7.10.0",
@@ -45,11 +45,11 @@
4545
"husky": "^9.1.7",
4646
"lint-staged": "^16.2.7",
4747
"nanoid": "^5.1.6",
48-
"node-pty": "^1.0.0",
48+
"node-pty": "^1.1.0",
4949
"pino": "^10.1.0",
5050
"tsx": "4.21.0",
5151
"typescript": "^5.9.3",
52-
"viem": "^2.43.2",
52+
"viem": "^2.43.3",
5353
"vitest": "^4.0.16",
5454
"zod": "^4.2.1"
5555
},

src/utils/createTransport.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ export function createTransport(
1414
notifier: INotifier,
1515
): Transport {
1616
return createRevolverTransport(config, {
17-
timeout: config.optimistic ? 240_000 : 10_000,
18-
retryCount: config.optimistic ? 3 : undefined,
17+
defaultHTTPOptions: {
18+
timeout: config.optimistic ? 240_000 : 10_000,
19+
retryCount: config.optimistic ? 3 : undefined,
20+
},
1921
logger: logger?.child?.({ name: "transport" }),
2022
onRotateSuccess: (oldT, newT, reason) => {
2123
notifier.notify(new ProviderRotationSuccessMessage(oldT, newT, reason));

0 commit comments

Comments
 (0)