suidouble 1.15.1-2 → 1.15.1
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 +1 -8
- package/package.json +1 -1
package/lib/SuiMaster.js
CHANGED
|
@@ -162,13 +162,6 @@ 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
|
-
/**
|
|
172
165
|
|
|
173
166
|
/**
|
|
174
167
|
* Storage storing all objects interacted by this suiMaster
|
|
@@ -413,7 +406,7 @@ export default class SuiMaster extends SuiCommonMethods {
|
|
|
413
406
|
}
|
|
414
407
|
|
|
415
408
|
async fetchTransactions(params = {}) {
|
|
416
|
-
|
|
409
|
+
const filter = {};
|
|
417
410
|
if (params.fromAddress) {
|
|
418
411
|
filter.FromAddress = params.fromAddress;
|
|
419
412
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "suidouble",
|
|
3
|
-
"version": "1.15.1
|
|
3
|
+
"version": "1.15.1",
|
|
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",
|