@hashgraphonline/standards-sdk 0.0.25 → 0.0.26

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.
@@ -31744,9 +31744,10 @@ class HCS11Client {
31744
31744
  if (!this.auth.signer) {
31745
31745
  throw new Error("No valid authentication method provided");
31746
31746
  }
31747
- const result = await this.auth.signer.signTransaction(transaction);
31748
- const response = await result.execute(this.client);
31749
- const receipt = await response.getReceipt(this.client);
31747
+ const signer = this.auth.signer;
31748
+ const result = await transaction.signWithSigner(signer);
31749
+ const response = await result.executeWithSigner(signer);
31750
+ const receipt = await response.getReceiptWithSigner(signer);
31750
31751
  if (receipt.status !== Status.Success) {
31751
31752
  return {
31752
31753
  success: false,