suidouble 1.15.1-1 → 1.15.1-2
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/lib/SuiMaster.js +7 -0
- package/package.json +1 -1
package/lib/SuiMaster.js
CHANGED
|
@@ -162,6 +162,13 @@ export default class SuiMaster extends SuiCommonMethods {
|
|
|
162
162
|
get SuiEvent() {
|
|
163
163
|
return SuiEvent;
|
|
164
164
|
}
|
|
165
|
+
/**
|
|
166
|
+
* Referencing it here to get rid of circullar dependency. So you can always call SuiPaginatedResponse contructor if you have instance of SuiMaster
|
|
167
|
+
*/
|
|
168
|
+
get SuiPaginatedResponse() {
|
|
169
|
+
return SuiPaginatedResponse;
|
|
170
|
+
}
|
|
171
|
+
/**
|
|
165
172
|
|
|
166
173
|
/**
|
|
167
174
|
* Storage storing all objects interacted by this suiMaster
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "suidouble",
|
|
3
|
-
"version": "1.15.1-
|
|
3
|
+
"version": "1.15.1-2",
|
|
4
4
|
"description": "Set of provider, package and object classes for javascript representation of Sui Move smart contracts. Use same code for publishing, upgrading, integration testing, interaction with smart contracts and integration in browser web3 dapps",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|