File tree Expand file tree Collapse file tree 3 files changed +628
-626
lines changed
Expand file tree Collapse file tree 3 files changed +628
-626
lines changed Original file line number Diff line number Diff line change 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" ,
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 },
Original file line number Diff line number Diff 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 ) ) ;
You can’t perform that action at this time.
0 commit comments