@typus/typus-sdk 1.0.68 → 1.0.69

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.
@@ -65,7 +65,7 @@ export declare function getCompoundTx(gasBudget: number, packageId: string, type
65
65
  )
66
66
  @param typeArguments [Deposit Vault Token]
67
67
  */
68
- export declare function getUnsubscribeTx(gasBudget: number, packageId: string, typeArguments: string[], registry: string, index: string, share?: string): Promise<TransactionBlock>;
68
+ export declare function getUnsubscribeTx(gasBudget: number, packageId: string, typeArguments: string[], registry: string, additional_config_registry: string, index: string, share?: string): Promise<TransactionBlock>;
69
69
  /**
70
70
  public(friend) entry fun new_bid<D_TOKEN, B_TOKEN, O_TOKEN>(
71
71
  registry: &mut Registry,
@@ -222,7 +222,7 @@ exports.getCompoundTx = getCompoundTx;
222
222
  )
223
223
  @param typeArguments [Deposit Vault Token]
224
224
  */
225
- function getUnsubscribeTx(gasBudget, packageId, typeArguments, registry, index, share) {
225
+ function getUnsubscribeTx(gasBudget, packageId, typeArguments, registry, additional_config_registry, index, share) {
226
226
  return __awaiter(this, void 0, void 0, function () {
227
227
  var tx;
228
228
  return __generator(this, function (_a) {
@@ -230,7 +230,7 @@ function getUnsubscribeTx(gasBudget, packageId, typeArguments, registry, index,
230
230
  tx.moveCall({
231
231
  target: "".concat(packageId, "::typus_dov_single::unsubscribe"),
232
232
  typeArguments: typeArguments,
233
- arguments: [tx.pure(registry), tx.pure(index), tx.pure(share ? [share] : [])],
233
+ arguments: [tx.pure(registry), tx.pure(additional_config_registry), tx.pure(index), tx.pure(share ? [share] : [])],
234
234
  });
235
235
  tx.setGasBudget(gasBudget);
236
236
  return [2 /*return*/, tx];
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.68",
5
+ "version": "1.0.69",
6
6
  "dependencies": {
7
7
  "@mysten/bcs": "^0.7.3",
8
8
  "@mysten/sui.js": "^0.37.1",