Skip to content

Commit

Permalink
fix: bump sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
doomsower committed Dec 24, 2024
1 parent ae6241c commit 7eca058
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"test": "vitest"
},
"dependencies": {
"@gearbox-protocol/sdk": "3.0.0-vfour.137",
"@gearbox-protocol/sdk": "3.0.0-vfour.138",
"node-pty": "^1.0.0",
"pino-pretty": "^13.0.0"
},
Expand Down
4 changes: 3 additions & 1 deletion src/attachSDK.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ export default async function attachSDK(): Promise<CreditAccountsService> {
// logger.debug({ tag: "timing" }, `new block ts: ${formatTs(block)}`);
// },
// );
const service = new CreditAccountsService(sdk);
const service = new CreditAccountsService(sdk, {
batchSize: config.batchSize, // TODO: technically, this is different batch size, needs to be changed
});

return service;
}
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1601,10 +1601,10 @@
humanize-duration-ts "^2.1.1"
zod "^3.22.2"

"@gearbox-protocol/[email protected].137":
version "3.0.0-vfour.137"
resolved "https://registry.yarnpkg.com/@gearbox-protocol/sdk/-/sdk-3.0.0-vfour.137.tgz#2f896ec4c0b2a812d2688f25c8ea6feeaec2da97"
integrity sha512-GR7fKXdE8GKOBSuhLqYmyr7c/hrD2qeCZPoujO69A5AzgK8CxFHBbXqmntAJdz0y5QHz5934hOoc3g+y8n2iFA==
"@gearbox-protocol/[email protected].138":
version "3.0.0-vfour.138"
resolved "https://registry.yarnpkg.com/@gearbox-protocol/sdk/-/sdk-3.0.0-vfour.138.tgz#7922df1871972375234769a0b5fd62dbf79b46c5"
integrity sha512-Zgj384N58e/oqwR1CXV7LDWBLcw+iU2i2CXuhABqpwVyS6mXhAYIqG4/u3S9QA+0onAeugnOl/dZ7oLvfYyeaw==
dependencies:
"@gearbox-protocol/sdk-gov" "^2.33.1"
"@redstone-finance/evm-connector" "^0.7.3"
Expand Down

0 comments on commit 7eca058

Please sign in to comment.