@typus/typus-sdk 1.1.49 → 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
|
-
|
|
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
|
|
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
|
-
|
|
448
|
+
incentiveShare: incentiveShare,
|
|
449
449
|
};
|
|
450
450
|
});
|
|
451
451
|
// @ts-ignore
|