@magmaprotocol/magma-clmm-sdk 0.5.118 → 0.5.120

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.mjs CHANGED
@@ -3365,7 +3365,7 @@ var _TransactionUtil = class {
3365
3365
  return tx;
3366
3366
  }
3367
3367
  static async buildAddLiquidityWithProtectionFixTokenForGas(sdk, allCoins, params, gasEstimateArg, tx, inputCoinA, inputCoinB) {
3368
- tx = await _TransactionUtil.buildAddLiquidityFixToken(sdk, allCoins, params, tx, inputCoinA, inputCoinB);
3368
+ tx = await _TransactionUtil.buildAddLiquidityWithProtectionFixToken(sdk, allCoins, params, tx, inputCoinA, inputCoinB);
3369
3369
  const { isAdjustCoinA } = findAdjustCoin(params);
3370
3370
  const suiAmount = isAdjustCoinA ? params.amount_a : params.amount_b;
3371
3371
  const newResult = await _TransactionUtil.adjustTransactionForGas(
@@ -5545,7 +5545,7 @@ var PoolModule = class {
5545
5545
  tx.object(CLOCK_ADDRESS)
5546
5546
  ];
5547
5547
  tx.moveCall({
5548
- target: `${integrate.published_at}::pool_creator_v2::create_pool_v2`,
5548
+ target: `${integrate.published_at}::pool_creator_v3::create_pool_v3`,
5549
5549
  typeArguments: [params.coinTypeA, params.coinTypeB],
5550
5550
  arguments: args
5551
5551
  });