Bitcoin Forum

Bitcoin => Project Development => Topic started by: fbueller on January 22, 2014, 02:29:00 PM



Title: Simple multisig signing program
Post by: fbueller on January 22, 2014, 02:29:00 PM
I've been dismayed by the lack of support for multisig at this point in the clients. What would it take for someone to write a program that parses a user supplied transaction hex, along with n public keys, and one single private key, and statelessly signs the transaction? No need to parse the blockchain, and you would need to supply no more than you would when executing 'signrawtransaction' in bitcoind.



Title: Re: Simple multisig signing program
Post by: fbueller on January 30, 2014, 05:00:22 PM
It appears https://coinb.in/multisig can be used for exactly this purpose! Happy days.


Title: Re: Simple multisig signing program
Post by: mswiggs on February 09, 2014, 04:11:56 PM
You may also want to checkout this tutorial My First Multisignature Transaction. (https://github.com/micheal-swiggs/brollet/blob/master/docs/README.md) This guides anyone that wants to try out Brollet's Multisignature capability.

The tutorial helps you create a 3 out of 3 multisig transaction.

 :)


Title: Re: Simple multisig signing program
Post by: fbueller on February 19, 2014, 03:29:11 PM
You may also want to checkout this tutorial My First Multisignature Transaction. (https://github.com/micheal-swiggs/brollet/blob/master/docs/README.md) This guides anyone that wants to try out Brollet's Multisignature capability.

The tutorial helps you create a 3 out of 3 multisig transaction.

 :)

Awesome! Thanks for posting, I'll give this a try later on.