@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.
|
|
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.
|
|
191
|
+
arguments: [tx.object(registry), tx.object(additional_config_registry), tx.pure(request.index)],
|
|
192
192
|
});
|
|
193
193
|
});
|
|
194
194
|
tx.setGasBudget(gasBudget);
|