@sign-global/tokentable-core 1.14.1 → 1.14.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @sign-global/tokentable-core
2
2
 
3
+ ## 1.14.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Sui: honor the `chainRpc` option instead of always using the public fullnode
8
+
3
9
  ## 1.14.1
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -12491,7 +12491,7 @@ var SuiContractClientBase = class {
12491
12491
  this.moduleName = contractInfo.moduleName;
12492
12492
  this.distributorId = contractInfo.distributorId;
12493
12493
  this.wallet = contractInfo.walletClient;
12494
- this.client = new import_client2.SuiClient({ network: this.chainId, url: (0, import_client2.getFullnodeUrl)(this.chainId) });
12494
+ this.client = new import_client2.SuiClient({ network: this.chainId, url: contractInfo.chainRpc || (0, import_client2.getFullnodeUrl)(this.chainId) });
12495
12495
  }
12496
12496
  async signAndExecute(tx) {
12497
12497
  if (!this.wallet) {