Sign a Partially Signed rawtransaction with bitcoinjs-lib

0

I was trying to figure out how to use the bitcoinjs-lib. I was thinking if I could sign a partially signed raw transaction in bitcoijs-lib.

For example - If I have a hex String whose input1 is unsigned but rest of the inputs are all signed, can i Sign this raw transaction using bitcoinjs-lib?

shubham saxena

Posted 2019-08-13T08:38:34.593

Reputation: 69

Sure, see https://github.com/bitcoinjs/bitcoinjs-lib/issues/1011. Give it a try and post your code if you need help.

JBaczuk 2019-08-13T12:59:40.790

@JBaczuk Oh by partially signed I meant, Given a hex raw transaction which has been partially signed by one party, i.e one party signs over its inputs and then sends the partially signed raw transaction, can the other party now take the hex raw transaction, and then sign over the remaining inputs?shubham saxena 2019-08-19T06:34:01.237

No answers