Sign

Sign a multisig transaction

Start a multisig signature, or add a signature to a partially completed multisig signature object.

POSThttps://algo.nownodes.io/v1/multisig/sign
Authorization
Body
partial_multisigobject

MultisigSig is the structure that holds multiple Subsigs

public_keyarray of integer (uint8)
signerDigest represents a 32-byte value holding the 256-bit Hash digest.
transactionstring (byte)
wallet_handle_tokenstring
wallet_passwordstring
Response

Response to POST /v1/multisig/sign

Body
errorboolean
messagestring
multisigstring (byte)
Request
const response = await fetch('https://algo.nownodes.io/v1/multisig/sign', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({}),
});
const data = await response.json();
Response
{
  "error": false,
  "message": "text",
  "multisig": "Ynl0ZXM="
}