Blackbank multisig - any way to complete order?

Just before BB went down i made an order using multisig escrow

I have no idea if the vendor ever saw the order, is there any way we can complete the deal if I can find a way to contact the vendor?

This was my first multisig transaction, so i'm not particularly wise to how it all works.


Comments


[1 Points] hksupport:

Yes, if you have either all three public keys (and your private key), or the redeem script (and your private key), and the vendor has his private key, you can absolutely complete the transaction.

Do you have the redeem script, or the three public keys? (Or does the vendor have them, that would work too. You both need to have them, but if he has them, he can send them to you and you can verify they're correct before doing anything.)

I can help guide you through it.


[1 Points] Aluminum_Foil_Hat:

5221039d8e5bde35764b074e7c2f01a758b1bdf1b0396b125df6f294d21314c272266d21020a8a229ce2a60a44958652b5dae5fc0aa77f63f971887d622cce1bdb4860e0d84104d84c67369754829fbb70328035ec61d24a6db0e64a6a686aaedf0c824112bdfd9c85a310ba1f95d9aa88411b40acaa1faf0235ee554bcab5461578584b0b07b553ae

Here's the breakdown of it:
52 -- Any two keys are required to sign
21 -- The length of the following public key (21 in hex is 33 bytes, which is 66 characters)
Then comes the first public key:

039d8e5bde35764b074e7c2f01a758b1bdf1b0396b125df6f294d21314c272266d

21 -- the length of the second public key

020a8a229ce2a60a44958652b5dae5fc0aa77f63f971887d622cce1bdb4860e0d8

41 -- the length of the 3rd key (0x41 in hex = 65 bytes, aka 130 characters)

04d84c67369754829fbb70328035ec61d24a6db0e64a6a686aaedf0c824112bdfd9c85a310ba1f95d9aa88411b40acaa1faf0235ee554bcab5461578584b0b07b5

then 53 -- The total number of keys that should have been provided is three. ae -- OP_CHECKMULTISIGVERIFY. The command that instructs miners and other nodes verifying the transaction to read the previous key list and signatures when the money is spent and verify that the signatures are good and the tx is valid.