@typus/typus-sdk 1.1.48 → 1.1.50

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.
@@ -171,7 +171,7 @@ export interface DepositShare {
171
171
  inactiveSubVaultUserShare: string;
172
172
  warmupSubVaultUserShare: string;
173
173
  premiumSubVaultUserShare: string;
174
- performanceFeeSubVaultUserShare: string;
174
+ incentiveShare: string;
175
175
  }
176
176
  export declare function getDepositShares(provider: SuiClient, typusFrameworkPackageId: string, packageId: string, registry: string, receipts: string[], sender?: string): Promise<{
177
177
  [key: string]: DepositShare;
@@ -437,7 +437,7 @@ function getDepositShares(provider, typusFrameworkPackageId, packageId, registry
437
437
  var inactiveSubVaultUserShare = reader.read64();
438
438
  var warmupSubVaultUserShare = reader.read64();
439
439
  var premiumSubVaultUserShare = reader.read64();
440
- var performanceFeeSubVaultUserShare = reader.read64();
440
+ var incentiveShare = reader.read64();
441
441
  result[index] = {
442
442
  index: index,
443
443
  activeSubVaultUserShare: activeSubVaultUserShare,
@@ -445,7 +445,7 @@ function getDepositShares(provider, typusFrameworkPackageId, packageId, registry
445
445
  inactiveSubVaultUserShare: inactiveSubVaultUserShare,
446
446
  warmupSubVaultUserShare: warmupSubVaultUserShare,
447
447
  premiumSubVaultUserShare: premiumSubVaultUserShare,
448
- performanceFeeSubVaultUserShare: performanceFeeSubVaultUserShare,
448
+ incentiveShare: incentiveShare,
449
449
  };
450
450
  });
451
451
  // @ts-ignore
package/package.json CHANGED
@@ -2,11 +2,11 @@
2
2
  "name": "@typus/typus-sdk",
3
3
  "author": "Typus",
4
4
  "description": "typus sdk",
5
- "version": "1.1.48",
5
+ "version": "1.1.50",
6
6
  "dependencies": {
7
7
  "@mysten/bcs": "^0.7.3",
8
- "@mysten/kiosk": "0.7.11",
9
- "@mysten/sui.js": "^0.47.0",
8
+ "@mysten/kiosk": "0.7.12",
9
+ "@mysten/sui.js": "^0.48.0",
10
10
  "@types/node": "^20.5.7",
11
11
  "bignumber.js": "^9.1.1",
12
12
  "bs58": "^5.0.0",