wallet/multisig/createSigningCommitment
Creates the siging commitment for a participant of a multisig wallet. The participant is committing to participate in the transaction signing process for the multisig account. The next step involves aggregating all of these commitments and create a signing package using the RPC wallet/multisig/createSigningPackage.
Request
{
  account?: string
  unsignedTransaction: string
  signers: Array<{ identity: string }>
}
Response
{
  commitment: string
}
Note: the identity for the
accountparameter (or the default account if no account is specified) is automatically included in the list of signer identities.