@typus/typus-sdk 1.0.120 → 1.0.121

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.
@@ -181,14 +181,14 @@ function getBatchClaimHarvestTx(gasBudget, packageId, registry, additional_confi
181
181
  tx.moveCall({
182
182
  target: "".concat(packageId, "::typus_dov_single::claim"),
183
183
  typeArguments: request.typeArguments,
184
- arguments: [tx.pure(registry), tx.pure(additional_config_registry), tx.pure(request.index)],
184
+ arguments: [tx.object(registry), tx.object(additional_config_registry), tx.pure(request.index)],
185
185
  });
186
186
  });
187
187
  harvestRequests.forEach(function (request) {
188
188
  tx.moveCall({
189
189
  target: "".concat(packageId, "::typus_dov_single::harvest"),
190
190
  typeArguments: request.typeArguments,
191
- arguments: [tx.pure(registry), tx.pure(additional_config_registry), tx.pure(request.index)],
191
+ arguments: [tx.object(registry), tx.object(additional_config_registry), tx.pure(request.index)],
192
192
  });
193
193
  });
194
194
  tx.setGasBudget(gasBudget);
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@typus/typus-sdk",
3
3
  "author": "Typus",
4
4
  "description": "typus sdk",
5
- "version": "1.0.120",
5
+ "version": "1.0.121",
6
6
  "dependencies": {
7
7
  "@mysten/bcs": "^0.7.3",
8
8
  "@mysten/kiosk": "^0.3.3",