@credenza3/contracts-lib-sui 0.2.8 → 0.2.9

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.
@@ -9300,7 +9300,7 @@ var CredenzaSuiClient = class {
9300
9300
  }
9301
9301
  tx.setSenderIfNotSet(this.options.signer.toSuiAddress());
9302
9302
  if ("getGasOwner" in this.options.signer) {
9303
- tx.setGasOwner(this.options.signer.getGasOwner());
9303
+ tx.setGasOwner(await this.options.signer.getGasOwner());
9304
9304
  }
9305
9305
  const txBytes = await tx.build({ client: this.suiGrpcClient });
9306
9306
  return await this.options.signer.signTransaction(txBytes);