suidouble 1.15.1-1 → 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.
Files changed (2) hide show
  1. package/lib/SuiMaster.js +1 -1
  2. package/package.json +1 -1
package/lib/SuiMaster.js CHANGED
@@ -406,7 +406,7 @@ export default class SuiMaster extends SuiCommonMethods {
406
406
  }
407
407
 
408
408
  async fetchTransactions(params = {}) {
409
- let filter = {};
409
+ const filter = {};
410
410
  if (params.fromAddress) {
411
411
  filter.FromAddress = params.fromAddress;
412
412
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "suidouble",
3
- "version": "1.15.1-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",