Pages:
Author

Topic: [coinb.in] Open Source, Multi Signature, HD Wallet, SegWit/Bech32 and more! - page 8. (Read 74774 times)

full member
Activity: 518
Merit: 100
Hi there! Using this service too and see today - my balance is 0.00. Blockchain shown real amount. What's problem?
Hm. Maybe weak conection? Try to use your private keys in other wallet (for example in bither).
newbie
Activity: 1
Merit: 0
Hi there! Using this service too and see today - my balance is 0.00. Blockchain shown real amount. What's problem?
full member
Activity: 518
Merit: 100
This wallet is easy and secure. Strongly recommended Cool
legendary
Activity: 3416
Merit: 1912
The Concierge of Crypto
Question: Bitcoin Core allows addmultisigaddress nrequired ["key",...] ... where each key is a Bitcoin address or hex-encoded public key.

What's the difference or concern or problem or whatever reason for using a Bitcoin address and the hex-encoded public key?

I'll take a guess: you can't add using the Bitcoin address if you don't already have the private key in your wallet?
staff
Activity: 4214
Merit: 1203
I support freedom of choice
@OutCast3k
Will you also add the support for CSV?
hero member
Activity: 630
Merit: 767
BTC⇆⚡⇄BTC
Yes. Thanks for telling me that.

Now it's correct.

Cheers!
hero member
Activity: 859
Merit: 1004
BTC OG and designer of the BitcoinMarket.com logo
Is there a testnet version available somewhere ?
This forked version implemented it:

https://ttutdxh-nubits.github.io
Edit: You missed typed the full URL https://ttutdxh-nubits.github.io/cointoolkit

But thanks for putting me on the right track Wink

Bitcoin Testnet version does not seem to work, it's not recognizing my pub keys when i submit them to create a multisig address.
hero member
Activity: 630
Merit: 767
BTC⇆⚡⇄BTC
hero member
Activity: 859
Merit: 1004
BTC OG and designer of the BitcoinMarket.com logo
Is there a testnet version available somewhere ?
staff
Activity: 4214
Merit: 1203
I support freedom of choice
@OutCast3k
Can you add an easy way to cut the fee from the sending amount, instead of the local balance.

If I send 0.1 BTC to someone with 0.00001 fee, and he asks a faster transaction, I should be able to easily change the sending amount, example: 0.0999 BTC and 0.0001 fee.

He is the one that need a faster tx, not me, so he is he one that need to pay for it.
member
Activity: 98
Merit: 10
https://keybase.io/serge_v
Can I add a multisignature address to bitcoin core? Can I then add the private keys (assuming I have them of course) and do a spend using that wallet?

To add a 2-of-3 MustiSig address to bitcoin core you will need to execute in client console the following command (in your example):

Code:
addmultisigaddress 2 '["03d6a0edc630c29f649500d592091039d7f3c942ec07bb7ebdabfe5727c58964fd","0305143caa81bc0fec9237f594939d0ceb667cb78e451264e8d2a677648a871aeb","0306c73d2aea0a492e268dd1b3ed1ba1bbdc54c1d4a3a46d9d74fe81f3e6a301af"]'

Result:

Code:
3NUEUQspbf9LK3mRN13pLNyzeEK4Ep1HRC

In order to spend the funds from the MultiSig address you will need to import 2 of 3 private keys that correspond to these public keys:

Code:
importprivkey KwyKy7C7f8pHw1GizvWhLpE6GB13ZcfNJoX98MHiwwz1x77MksQq

Code:
importprivkey Kyw4KDi8Lre2WhpTJt8p8gfTEkpSfqVv8dv3bJ75cmuyvFHQ7HBy
legendary
Activity: 3416
Merit: 1912
The Concierge of Crypto
Mr. OutCast3k,

I have a question, but it is more of a general question that is just indirectly related to coinb.in.

Can I add a multisignature address to bitcoin core? Can I then add the private keys (assuming I have them of course) and do a spend using that wallet?

For example, I create a 2-of-3 address. Let's make a more concrete example and I'll use your page to do it:

I first generate 3 regular addresses, public keys, and private keys:

1P6xdHExqRusJ8hM4vpTjuDnum4Crxoxb8
03d6a0edc630c29f649500d592091039d7f3c942ec07bb7ebdabfe5727c58964fd
KwyKy7C7f8pHw1GizvWhLpE6GB13ZcfNJoX98MHiwwz1x77MksQq

1Eom4fsSnmka311BbJrmUjyY29tsQcrTyD
0305143caa81bc0fec9237f594939d0ceb667cb78e451264e8d2a677648a871aeb
Kyw4KDi8Lre2WhpTJt8p8gfTEkpSfqVv8dv3bJ75cmuyvFHQ7HBy

1Ceidy7FSL8Vzrqg5SfzUpEqDwmPB9Drfo
0306c73d2aea0a492e268dd1b3ed1ba1bbdc54c1d4a3a46d9d74fe81f3e6a301af
KxbsQxm5Q8pGXPs8AWP7Lt1SkzFrvgZr2EdKpB9WTFCkC4cdnK3V

Then I input the above public keys in that order (and order seems to affect the result) and come up with the following:

Address
3NUEUQspbf9LK3mRN13pLNyzeEK4Ep1HRC

Redeem Script
522103d6a0edc630c29f649500d592091039d7f3c942ec07bb7ebdabfe5727c58964fd210305143 caa81bc0fec9237f594939d0ceb667cb78e451264e8d2a677648a871aeb210306c73d2aea0a492e 268dd1b3ed1ba1bbdc54c1d4a3a46d9d74fe81f3e6a301af53ae

Does bitcoin core (currently version 0.12.1) not work if I import the 3 private keys? Or it won't know what to do? That then leaves me with the option of using your site.

Actually, I'm looking for a way to do this with thousands of addresses (all of them multi-sig). The big wallet guys and exchanges have already done this, but I don't know if their code is open (I haven't checked.) Ideally, there would be 2 or 3 different physical machines with 2 cold offline airgapped, but for testing purposes it will be just one.
legendary
Activity: 1102
Merit: 1014
hero member
Activity: 714
Merit: 601
Replace by fee (RBF) has been added to coinb.in you can find it under the advanced tab, on the new transaction page.

Enjoy people!
hero member
Activity: 859
Merit: 1004
BTC OG and designer of the BitcoinMarket.com logo
I would love to see message signing and verifying added. Since brainwallet shut down, there really is no good web tool to use
You can try http://coinig.com which is a web based service.
member
Activity: 108
Merit: 10
Why can't i set custom transaction fees when creating  a transaction?
Why can't i spend just small amount from input? Not all of it?
legendary
Activity: 1630
Merit: 1000
I would love to see message signing and verifying added. Since brainwallet shut down, there really is no good web tool to use
Maybe the tools presented here may be of some use:

https://bitcointalksearch.org/topic/how-to-sign-a-message-990345
That's a very comprehensive link. Since starsoccer9 mentioned Brainwallet, I'll post this which was lightly modified from the brainwallet code.

https://github.com/ReinProject/bitcoin-signature-tool and see it in action at http://reinproject.org/bitcoin-signature-tool/

Thanks that is very useful.
legendary
Activity: 1102
Merit: 1014
I would love to see message signing and verifying added. Since brainwallet shut down, there really is no good web tool to use
Maybe the tools presented here may be of some use:

https://bitcointalksearch.org/topic/how-to-sign-a-message-990345
That's a very comprehensive link. Since starsoccer9 mentioned Brainwallet, I'll post this which was lightly modified from the brainwallet code.

https://github.com/ReinProject/bitcoin-signature-tool and see it in action at http://reinproject.org/bitcoin-signature-tool/
hero member
Activity: 630
Merit: 767
BTC⇆⚡⇄BTC
I would love to see message signing and verifying added. Since brainwallet shut down, there really is no good web tool to use
Maybe the tools presented here may be of some use:

https://bitcointalksearch.org/topic/how-to-sign-a-message-990345
legendary
Activity: 1630
Merit: 1000
I would love to see message signing and verifying added. Since brainwallet shut down, there really is no good web tool to use
Pages:
Jump to: