Hello there, I am having troubles in proving the ownership of a multisignature address I own (I can send funds and everything from it).
I generated the addresses through a seed (it looks like it is a 2fa seed type, and I have a copy of it).
I've used
https://chainquery.com/bitcoin-api/decodescript to decode the set of addresses associated with the multisignature address.
{
"result": {
"asm": "2 034996b456e8a742e4144231e2737841ddd6a61d6a064e2bf10a9501fe4f670bbc 03b3311cb449f05fa6d80d969ae698f289af45298625d31e925f1b2185ccd43874 03d2fc8e9bd197b4a5e1b6fcc15492a87be89ef98897bc2ebcbbe7070cada7df55 3 OP_CHECKMULTISIG",
"reqSigs": 2,
"type": "multisig",
"addresses": [
"1MgJG1Lan1f5gz9S1MZFfL7AmkKjCyDjcP",
"1KjUMwz1GAXRzzQMEjUEJEbqsHR5TkQjDV",
"1PFZvwoszumZi6cYqYjJxAJbY7nRhP6q8H"
],
"p2sh": "3Gg6jdT85BeWTmy2nJ7J7cKBHohx96fYxS"
},
"error": null,
"id": null
}
So the recipient addresses are:
1MgJG1Lan1f5gz9S1MZFfL7AmkKjCyDjcP",
1KjUMwz1GAXRzzQMEjUEJEbqsHR5TkQjDV
1PFZvwoszumZi6cYqYjJxAJbY7nRhP6q8HHowever, If I try to use the command getprivatekeys through electrum terminal it says that none of this set of addresses are on the addresses list.
The only thing I can do is to dump the private key of the multisig address and import it into an electrum simple wallet type. It works and adds me only one address of the three.
So I have only one private key and I need one more to prove the ownership of the multisig address.
Any hint to how to get one of the other private keys?
Thank you in advance, I will throw a tip to anyone able to make me manage how to do it.
Cheers