Transferring units from Multisig address

+1 vote
I have two nodes. I created a multisig using 1 Public Key each from each node. I then imported the multisig address in both the node. Then I transferred 100 Unit of Asset 1 to this address. This was successfully done.

Now I want to transfer out 30 Units from this multisig address to a new address.

How do I do this? What commands shall I use to achieve this?

I'm using a Windows Machine.
asked Jan 16, 2017 by rahulkumargr

1 Answer

0 votes

There are various ways but the easiest is to use the createrawsendfrom API with the multisig address in the from-address parameter. You can pass sign for the last parameter and the first node will sign as much as it can. Then take the output, pass to signrawtransaction on the second node, and then sendrawtransaction with the result.

answered Jan 16, 2017 by MultiChain
...