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
Appending signature to an existing SignedTransaction is a common operation for multisignature workflows.
The API should look like this:
import{Signer,appendTransactionSignature}from'@iroha2/client'import{datamodel}from'@iroha2/data-model'/** @type {datamodel.VersionedSignedTransaction} */lettxtx=appendTransactionSignature(tx,keypair)// or through `Signer`tx=newSigner(keypair).appendTransactionSignature(tx)
The text was updated successfully, but these errors were encountered:
Description
Appending signature to an existing
SignedTransaction
is a common operation for multisignature workflows.The API should look like this:
The text was updated successfully, but these errors were encountered: