@credenza3/contracts-lib-sui 0.2.7 → 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.
@@ -9188,7 +9188,7 @@ var CredenzaSuiClient = class {
9188
9188
  }
9189
9189
  tx.setSenderIfNotSet(this.options.signer.toSuiAddress());
9190
9190
  if ("getGasOwner" in this.options.signer) {
9191
- tx.setGasOwner(this.options.signer.getGasOwner());
9191
+ tx.setGasOwner(await this.options.signer.getGasOwner());
9192
9192
  }
9193
9193
  const txBytes = await tx.build({ client: this.suiGrpcClient });
9194
9194
  return await this.options.signer.signTransaction(txBytes);