You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to sign a transaction, I get the transaction did not have exactly one node ID set (similar to hiero-ledger/hiero-sdk-js#2168)
Expected behvior:
the call should returned a signed frozen transaction
Steps to Reproduce:
// TestNetconstclient=newHashConnect(LedgerId.TESTNET,PROJECT_ID,appMetadata,true)// events are setup as described in the quickstart section// https://www.npmjs.com/package/hashconnect#quick-startconstmyAccount=AccountId.fromString('0.0.7483514')constsigner=awaitclient.getSigner(myAccount)constt=awaitnewTransferTransaction().addHbarTransfer('0.0.7483514',-1).addHbarTransfer('0.0.3719159',1).freezeWithSigner(signer)constres=awaitt.signWithSigner(signer)// ERROR: Uncaught transaction did not have exactly one node ID set
The text was updated successfully, but these errors were encountered:
Description
When trying to sign a transaction, I get the
transaction did not have exactly one node ID set
(similar to hiero-ledger/hiero-sdk-js#2168)Expected behvior:
the call should returned a signed frozen transaction
Steps to Reproduce:
The text was updated successfully, but these errors were encountered: