@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/dist/index.mjs CHANGED
@@ -12450,7 +12450,7 @@ var SuiContractClientBase = class {
12450
12450
  this.moduleName = contractInfo.moduleName;
12451
12451
  this.distributorId = contractInfo.distributorId;
12452
12452
  this.wallet = contractInfo.walletClient;
12453
- this.client = new SuiClient({ network: this.chainId, url: getFullnodeUrl2(this.chainId) });
12453
+ this.client = new SuiClient({ network: this.chainId, url: contractInfo.chainRpc || getFullnodeUrl2(this.chainId) });
12454
12454
  }
12455
12455
  async signAndExecute(tx) {
12456
12456
  if (!this.wallet) {