@0xobelisk/sui-client 1.1.2 → 1.1.4
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/dubhe.d.ts +6 -6
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/dist/libs/suiIndexerClient/index.d.ts +8 -8
- package/package.json +1 -1
- package/src/dubhe.ts +8 -8
- package/src/libs/suiIndexerClient/index.ts +10 -10
package/dist/index.mjs
CHANGED
|
@@ -1126,8 +1126,8 @@ var SuiIndexerClient = class {
|
|
|
1126
1126
|
$first: Int,
|
|
1127
1127
|
$after: String,
|
|
1128
1128
|
$name: String,
|
|
1129
|
-
$key1:
|
|
1130
|
-
$key2:
|
|
1129
|
+
$key1: JSON,
|
|
1130
|
+
$key2: JSON,
|
|
1131
1131
|
$is_removed: Boolean,
|
|
1132
1132
|
$last_update_checkpoint: String,
|
|
1133
1133
|
$last_update_digest: String,
|
|
@@ -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
|
}
|