Author

Topic: Why does new bitstamp address begin with 3 (Read 1899 times)

hero member
Activity: 672
Merit: 501
February 04, 2015, 08:24:57 AM
#18
Any way of making a multisig address using electrum? or bitaddress?

With the Electrum 2.0, you can create and control a multisig wallet easily.
For details: https://github.com/spesmilo/electrum/blob/master/RELEASE-NOTES and https://electrum.orain.org/wiki/Multisig_Wallets

Thanks. How about greenaddress? Is it safe, can user control their keys there?
member
Activity: 60
Merit: 10
February 04, 2015, 06:27:51 AM
#17
Any way of making a multisig address using electrum? or bitaddress?

With the Electrum 2.0, you can create and control a multisig wallet easily.
For details: https://github.com/spesmilo/electrum/blob/master/RELEASE-NOTES and https://electrum.orain.org/wiki/Multisig_Wallets

Or Bitcoin Armory. Bitcoin Armory Website / Lockbox Tuto
hero member
Activity: 896
Merit: 1000
February 04, 2015, 04:22:28 AM
#16
Any way of making a multisig address using electrum? or bitaddress?

With the Electrum 2.0, you can create and control a multisig wallet easily.
For details: https://github.com/spesmilo/electrum/blob/master/RELEASE-NOTES and https://electrum.orain.org/wiki/Multisig_Wallets
hero member
Activity: 672
Merit: 501
February 03, 2015, 11:45:18 PM
#15
Any way of making a multisig address using electrum? or bitaddress?
legendary
Activity: 2198
Merit: 1049
February 03, 2015, 06:48:02 PM
#14
I wonder how it provide extra security over normal P2PKH ? Because, previously it required one private key to be online, now two will be online. But, to run a hot wallet, it has to be online at the end of the day. How come it provides complete security apart from adding an extra lock which can also be stolen like the previous ?
Before:
1 key at Bitstamp server
Now:
1 key at Bitstamp server + 1 key at BitGo server.(+1 key at Bitstamp backup to ensure receipt of funds if BitGo closes. But this key is offline)
So now hackers need to have access to bitstamp and bitgo...

Well... I understand that 2 keys are on 2 server (I am not considering the third as it is not required to sign a Tx, if the first 2 are available). Now, how things work for a withdrawal ? Withdrawal request hits the Bitstamp server, it signs with its own private key and notifies the BitGo server to sign with its private key. In this scenario, if Bistamp server is compromised, it would not be difficult for the attacker to notify BitGo with its private key. So, how come the outcome is different as it was before ? The central point of operation is still the Bitstamp server, is not it ?
legendary
Activity: 1400
Merit: 1000
January 30, 2015, 12:50:42 PM
#13
I wonder how it provide extra security over normal P2PKH ? Because, previously it required one private key to be online, now two will be online. But, to run a hot wallet, it has to be online at the end of the day. How come it provides complete security apart from adding an extra lock which can also be stolen like the previous ?
Before:
1 key at Bitstamp server
Now:
1 key at Bitstamp server + 1 key at BitGo server.(+1 key at Bitstamp backup to ensure receipt of funds if BitGo closes. But this key is offline)
So now hackers need to have access to bitstamp and bitgo...
legendary
Activity: 2198
Merit: 1049
January 30, 2015, 12:30:14 PM
#12
Bitstamp seems to be making use of BitGo now, saw this quote on the home page of BitGo:

BitGo is the only company in the industry we trust to secure our hot wallet. The integration was very straightforward, and now I can sleep better at night knowing that my customers’ holdings are secured with BitGo. - Nejc Kodrič, CEO Bitstamp

BitGo addresses are multi-signature and starts with a 3.

I wonder how it provide extra security over normal P2PKH ? Because, previously it required one private key to be online, now two will be online. But, to run a hot wallet, it has to be online at the end of the day. How come it provides complete security apart from adding an extra lock which can also be stolen like the previous ?
sr. member
Activity: 336
Merit: 250
January 30, 2015, 02:48:11 AM
#11
Bitstamp seems to be making use of BitGo now, saw this quote on the home page of BitGo:

BitGo is the only company in the industry we trust to secure our hot wallet. The integration was very straightforward, and now I can sleep better at night knowing that my customers’ holdings are secured with BitGo. - Nejc Kodrič, CEO Bitstamp

BitGo addresses are multi-signature and starts with a 3.
hero member
Activity: 658
Merit: 500
January 29, 2015, 11:07:02 AM
#10
Yes, its multi-sig addr.
After so many hacks and steals, 3xxxxx addresses are more commonly occuring now.
It is said top 3 btc addresses with biggest balance now starts with 3.

legendary
Activity: 3388
Merit: 4615
January 29, 2015, 10:11:47 AM
#9
Bitcoin addresses beginning with 3 are a multisignature address. This type of addresses is used by the service in a 2-of-3 configuration. It takes two signatures to transfer bitcoins.
- snip -

I realize that my answer is probably more technical than the OP is ready to understand, but since this is the "Technical Support" board, I'd just like to mention that bitcoin addresses that start with a 3 are "Pay-to-script-hash" (P2SH).  One of the most common uses for a P2SH transaction is to implement an M-of-N multisig requirement (such as 2-of-3 or 3-of-5, etc).  However, it is possible to have an address that starts with a 3 that is not a 2-of-3 multisig (or M-of-N multisig).

Additionally, addresses that start with a 1 are "Pay-to-public-key-hash" (P2PKH).

Note that at the protocol level there are no "addresses" at all.  There are simply requirements that an output is encumbered with by way of a script that must be satisfied in order to use that output in the funding of a transaction.  "Addresses" are just a shorthand (and user friendly) way to indicate to the wallet what type of script to use (along with a checksum to allow the wallet to double-check your typing for mistakes).  The first 8 bits (first byte) of every address is a "version" number that tells the wallet software which type of script to use to build the transaction.

A byte of 0x00 indicates that the wallet should build a P2PKH transaction.  When converted to Base58Check notation, any leading 0x00 is converted to a 1.

A byte of 0x05 indicates that the wallet should build a P2SH transaction.  When converted to Base58Check notation, a leading 0x05 byte will result in an address that starts somewhere between '51' (for a script hash of 0x0000000000000000000000000000000000000000) and '5R' (for a script hash of 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF).
legendary
Activity: 1512
Merit: 1028
January 29, 2015, 08:40:36 AM
#8
Bitcoin addresses beginning with 3 are a multisignature address. This type of addresses is used by the service in a 2-of-3 configuration. It takes two signatures to transfer bitcoins. This illustration sort of illustrates their use by the service:


Bitstamp is open, now with multisig. Here's the interesting bit of a message from bitstamp's boss.

https://www.bitstamp.net/article/bitstamp-is-open-for-business-better-than-ever/

What’s new?

Our team has been working day and night to rebuild and restore security to the Bitstamp site so customers can resume transacting with us quickly, safely, and confidently. Bitstamp is now fully operational with a number of key improvements:

Multi-sig
* With the integration of BitGo multi-sig technology, Bitstamp is now the first and only major bitcoin exchange to incorporate the industry's best security practices available today.

A blurb from bitgo "the aforementioned multi-signature wallet that leverages both BIP16 and BIP32 standards found with hierarchical deterministic wallets; and a “2-of-3-key” configuration, whereby three keys are issued and any two can be used to sign a transaction. It ensures against loss or theft while allowing for relatively easy access."
legendary
Activity: 1400
Merit: 1000
January 29, 2015, 07:58:25 AM
#7
It's provided by several online Bitcoin wallets.
It's also provided by Bitcoin Core

I started using Bitcoin Core recently but never relized that at all . I believe it's not possible to do it simply , correct ? only possible by using some commands and using Debug window if I'am not wrong
Yes, now only RPC commands, debug window...
In the future, I'm sure will be GUI.
hero member
Activity: 644
Merit: 500
My goal is becaming a billionaire.
January 29, 2015, 07:08:18 AM
#6
It's provided by several online Bitcoin wallets.
It's also provided by Bitcoin Core

I started using Bitcoin Core recently but never relized that at all . I believe it's not possible to do it simply , correct ? only possible by using some commands and using Debug window if I'am not wrong
full member
Activity: 224
Merit: 100
January 29, 2015, 07:02:19 AM
#5
It's provided by several online Bitcoin wallets.
It's also provided by Bitcoin Core
Oh sorry, I don't know about that, I never using the Bitcoin Core till now Cheesy
legendary
Activity: 1400
Merit: 1000
January 29, 2015, 06:47:45 AM
#4
It's provided by several online Bitcoin wallets.
It's also provided by Bitcoin Core
full member
Activity: 224
Merit: 100
January 29, 2015, 06:10:07 AM
#3
I've never seen a bitcoin address begin with a 3.  Is that a legit address?
That's Multi-signature addresses.
Address with begin with 1 just have 1 private key, but an address begin with 3 have more than 1 private key.
It's provided by several online Bitcoin wallets.
hero member
Activity: 644
Merit: 500
My goal is becaming a billionaire.
January 29, 2015, 06:05:23 AM
#2
I've never seen a bitcoin address begin with a 3.  Is that a legit address?

It is a legit adress indeed , Bitcoin adresses can begin with either 1 or 3
you can have a lot more informations here on the Bitcoin Wiki : https://en.bitcoin.it/wiki/Address
Quote
A Bitcoin address, or simply address, is an identifier of 26-35 alphanumeric characters, beginning with the number 1 or 3, that represents a possible destination for a Bitcoin payment. Addresses can be generated at no cost by any user of Bitcoin. For example, using Bitcoin-Qt, one can click "New Address" and be assigned an address. It is also possible to get a Bitcoin address using an account at an exchange or online wallet service.

legendary
Activity: 1274
Merit: 1000
The Golden Rule Rules
January 29, 2015, 05:42:21 AM
#1
I've never seen a bitcoin address begin with a 3.  Is that a legit address?
Jump to: