@0xobelisk/sui-client 1.1.2 → 1.1.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@0xobelisk/sui-client",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "Tookit for interacting with move eps framework",
5
5
  "keywords": [
6
6
  "sui",
package/src/dubhe.ts CHANGED
@@ -279,7 +279,7 @@ export class Dubhe {
279
279
  (moudlevalue) => {
280
280
  const data = moudlevalue as SuiMoveNormalizedModule;
281
281
  const moduleName = data.name;
282
- const objMoudleId = `${packageId}::${moduleName}`;
282
+ const objMoudleId = `${this.packageId}::${moduleName}`;
283
283
 
284
284
  if (data.enums) {
285
285
  Object.entries(data.enums).forEach(([enumName, enumType]) => {
@@ -374,7 +374,7 @@ export class Dubhe {
374
374
  }
375
375
  }
376
376
  this.contractFactory = new SuiContractFactory({
377
- packageId,
377
+ packageId: this.packageId,
378
378
  metadata,
379
379
  });
380
380
  }