@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/dist/index.mjs CHANGED
@@ -1986,7 +1986,7 @@ var Dubhe = class {
1986
1986
  (moudlevalue) => {
1987
1987
  const data = moudlevalue;
1988
1988
  const moduleName = data.name;
1989
- const objMoudleId = `${packageId}::${moduleName}`;
1989
+ const objMoudleId = `${this.packageId}::${moduleName}`;
1990
1990
  if (data.enums) {
1991
1991
  Object.entries(data.enums).forEach(([enumName, enumType]) => {
1992
1992
  const objectId = `${objMoudleId}::${enumName}`;
@@ -2060,7 +2060,7 @@ var Dubhe = class {
2060
2060
  }
2061
2061
  }
2062
2062
  this.contractFactory = new SuiContractFactory({
2063
- packageId,
2063
+ packageId: this.packageId,
2064
2064
  metadata
2065
2065
  });
2066
2066
  }