@scallop-io/sui-scallop-sdk 2.0.13-merge-split-ve-sca-alpha.4 → 2.0.13-merge-split-ve-sca-alpha.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scallop-io/sui-scallop-sdk",
3
- "version": "2.0.13-merge-split-ve-sca-alpha.4",
3
+ "version": "2.0.13-merge-split-ve-sca-alpha.5",
4
4
  "description": "Typescript sdk for interacting with Scallop contract on SUI",
5
5
  "keywords": [
6
6
  "sui",
@@ -176,13 +176,15 @@ const generateBorrowIncentiveNormalMethod: GenerateBorrowIncentiveNormalMethod =
176
176
  deactivateBoost: (obligation, veScaKey) => {
177
177
  builder.moveCall(
178
178
  txBlock,
179
- `${borrowIncentiveIds.borrowIncentivePkg}::user::deactivate_boost`,
179
+ `${borrowIncentiveIds.borrowIncentivePkg}::user::deactivate_boost_v2`,
180
180
  [
181
181
  borrowIncentiveIds.config,
182
182
  borrowIncentiveIds.incentivePools,
183
183
  borrowIncentiveIds.incentiveAccounts,
184
184
  obligation,
185
185
  veScaKey,
186
+ builder.address.get('vesca.subsTable'),
187
+ builder.address.get('vesca.subsWhitelist'),
186
188
  clockObjectRef,
187
189
  ]
188
190
  );