@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.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dubhe.ts +2 -2
package/package.json
CHANGED
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
|
}
|