haedal-vault-sdk 2.2.0 → 2.2.1

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/dist/index.d.ts CHANGED
@@ -983,6 +983,12 @@ declare class VaultsModuleV2 implements IModule {
983
983
  * @returns The list of pools.
984
984
  */
985
985
  getAssignPoolList(poolIds: string[]): Promise<VaultPool[]>;
986
+ getVaultsAggregatedDataByIds(vaultIds: string[]): Promise<{
987
+ v1: Pool[];
988
+ v2: VaultPool[];
989
+ clmmPoolMap: Record<string, Pool$1>;
990
+ dlmmPoolMap: Record<string, DlmmPool>;
991
+ }>;
986
992
  geMarketList(vaultIds: string[]): Promise<Record<string, VaultMarket[]>>;
987
993
  getMarketPositionList(positionTableId: string): Promise<(DLMMMarketPosition | CLMMMarketPosition)[]>;
988
994
  buildDlmmCollectRewardPayload(options: CollectRewardOptionsV2, tx: Transaction): void;