@magmaprotocol/magma-clmm-sdk 0.5.106 → 0.5.107

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
@@ -1855,6 +1855,8 @@ type AlmmPositionInfo = {
1855
1855
  rewards: AlmmEventEarnedRewards;
1856
1856
  fees: AlmmEventEarnedFees;
1857
1857
  contractPool: AlmmPoolInfo | undefined;
1858
+ coin_type_a: string;
1859
+ coin_type_b: string;
1858
1860
  };
1859
1861
  type MintByStrategyParams = {
1860
1862
  pair: string;
package/dist/index.js CHANGED
@@ -11439,7 +11439,9 @@ var AlmmModule = class {
11439
11439
  liquidity: positionLiquidity,
11440
11440
  rewards: positionRewards || { position_id: item.pos_object_id, reward: [], amount: [] },
11441
11441
  fees: positionFees,
11442
- contractPool: pool
11442
+ contractPool: pool,
11443
+ coin_type_a: pool?.coin_a || "",
11444
+ coin_type_b: pool?.coin_b || ""
11443
11445
  });
11444
11446
  }
11445
11447
  return out;